From 2234d74d63edc488e6c02eb0f450f7122a1b4ec5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E6=B0=B4?= <1123993881@qq.com> Date: Sat, 20 Jan 2024 15:32:06 +0800 Subject: [PATCH] refactor: rewrite all base rotations. --- DefaultRotations/Healer/AST_Default.cs | 2 +- RotationSolver.Basic/Actions/ActionFactory.cs | 9 + .../Actions/BaseAction_ActionInfo.cs | 12 +- .../Actions/BaseAction_BasicInfo.cs | 38 +- .../Actions/BaseAction_Target.cs | 4 +- RotationSolver.Basic/Actions/IBaseAction.cs | 14 +- RotationSolver.Basic/DataCenter.cs | 2 +- RotationSolver.Basic/Helpers/StatusHelper.cs | 2 +- .../Rotations/Basic/AST_Base.cs | 402 - .../Rotations/Basic/AstrologianRotation.cs | 116 + .../Rotations/Basic/BLM_Base.cs | 1110 +- .../Rotations/Basic/BLU_Base.cs | 2188 +- .../Rotations/Basic/BRD_Base.cs | 774 +- .../Rotations/Basic/DNC_Base.cs | 936 +- .../Rotations/Basic/DRG_Base.cs | 684 +- .../Rotations/Basic/DRK_Base.cs | 700 +- .../Rotations/Basic/GNB_Base.cs | 686 +- .../Rotations/Basic/MCH_Base.cs | 624 +- .../Rotations/Basic/MNK_Base.cs | 672 +- .../Rotations/Basic/NIN_Base.cs | 930 +- .../Rotations/Basic/PLD_Base.cs | 692 +- .../Rotations/Basic/RDM_Base.cs | 694 +- .../Rotations/Basic/RPR_Base.cs | 814 +- .../Rotations/Basic/SAM_Base.cs | 794 +- .../Rotations/Basic/SCH_Base.cs | 660 +- .../Rotations/Basic/SGE_Base.cs | 736 +- .../Rotations/Basic/SMN_Base.cs | 1134 +- .../Rotations/Basic/WAR_Base.cs | 736 +- .../Rotations/Basic/WHM_Base.cs | 734 +- .../Rotations/CustomRotation_Ability.cs | 2 +- .../Rotations/CustomRotation_Actions.cs | 1112 +- RotationSolver.Basic/Traits/BaseTrait.cs | 1 - .../{ => Actions}/ActionCategoryGetter.cs | 9 +- .../Getters/Actions/ActionFactoryGetter.cs | 26 + .../Getters/Actions/ActionGetter.cs | 20 + .../ActionGetterBase.cs} | 35 +- .../Getters/Actions/ActionRotationGetter.cs | 30 + .../Getters/RotationGetter.cs | 50 + .../Getters/TraitRotationGetter.cs | 66 + RotationSolver.GameData/Program.cs | 13 +- .../RotationSolver.GameData.csproj | 1 + RotationSolver.GameData/Util.cs | 2 + .../Properties/Resources.Designer.cs | 80 +- .../Properties/Resources.resx | 28871 ++++++++++++++-- .../RotationSolver.SourceGenerators.csproj | 1 + .../StaticCodeGenerator.cs | 33 +- 46 files changed, 34235 insertions(+), 13016 deletions(-) create mode 100644 RotationSolver.Basic/Actions/ActionFactory.cs delete mode 100644 RotationSolver.Basic/Rotations/Basic/AST_Base.cs create mode 100644 RotationSolver.Basic/Rotations/Basic/AstrologianRotation.cs rename RotationSolver.GameData/Getters/{ => Actions}/ActionCategoryGetter.cs (80%) create mode 100644 RotationSolver.GameData/Getters/Actions/ActionFactoryGetter.cs create mode 100644 RotationSolver.GameData/Getters/Actions/ActionGetter.cs rename RotationSolver.GameData/Getters/{ActionGetter.cs => Actions/ActionGetterBase.cs} (60%) create mode 100644 RotationSolver.GameData/Getters/Actions/ActionRotationGetter.cs create mode 100644 RotationSolver.GameData/Getters/RotationGetter.cs create mode 100644 RotationSolver.GameData/Getters/TraitRotationGetter.cs diff --git a/DefaultRotations/Healer/AST_Default.cs b/DefaultRotations/Healer/AST_Default.cs index 5323b1489..baf29c66c 100644 --- a/DefaultRotations/Healer/AST_Default.cs +++ b/DefaultRotations/Healer/AST_Default.cs @@ -2,7 +2,7 @@ namespace DefaultRotations.Healer; [RotationDesc(ActionID.Divination)] [SourceCode(Path = "main/DefaultRotations/Healer/AST_Default.cs")] -public sealed class AST_Default : AST_Base +public sealed class AST_Default : AstrologianRotation { public override CombatType Type => CombatType.PvE; diff --git a/RotationSolver.Basic/Actions/ActionFactory.cs b/RotationSolver.Basic/Actions/ActionFactory.cs new file mode 100644 index 000000000..336cfce7e --- /dev/null +++ b/RotationSolver.Basic/Actions/ActionFactory.cs @@ -0,0 +1,9 @@ +namespace RotationSolver.Basic.Actions; + +/// +/// For some actions that may be used among different jobs. +/// +partial class ActionFactory +{ +} + diff --git a/RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs b/RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs index 19eea6b99..6fe94d44d 100644 --- a/RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs +++ b/RotationSolver.Basic/Actions/BaseAction_ActionInfo.cs @@ -10,8 +10,8 @@ public partial class BaseAction internal static readonly uint[] ActionsNoNeedCasting = [ 5, - (uint)ActionID.PowerfulShot, - (uint)ActionID.BlastCharge, + (uint)ActionID.PowerfulShot_PvP, + (uint)ActionID.BlastCharge_PvP, ]; /// /// The user set heal ratio. @@ -35,7 +35,7 @@ public float AutoHealRatio /// /// The effect range of the action. /// - public float EffectRange => (ActionID)ID == ActionID.LiturgyOfTheBell ? 20 : _action?.EffectRange ?? 0; + public float EffectRange => (ActionID)ID == ActionID.LiturgyOfTheBell_PvE ? 20 : _action?.EffectRange ?? 0; internal ActionID[] ComboIdsNot { private get; init; } = null; internal ActionID[] ComboIds { private get; init; } = null; @@ -43,17 +43,17 @@ public float AutoHealRatio /// /// Status that this action provides. /// - public StatusID[] StatusProvide { get; init; } = null; + public StatusID[] StatusProvide { get; set; } = null; /// /// Status that this action needs. /// - public virtual StatusID[] StatusNeed { get; init; } = null; + public virtual StatusID[] StatusNeed { get; set; } = null; /// /// Some check that this action needs. /// - public Func ActionCheck { get; init; } = null; + public Func ActionCheck { get; set; } = null; private bool WillCooldown { diff --git a/RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs b/RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs index f6042595b..75c8dbb3d 100644 --- a/RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs +++ b/RotationSolver.Basic/Actions/BaseAction_BasicInfo.cs @@ -17,12 +17,27 @@ public partial class BaseAction : IBaseAction /// protected readonly Action _action; - readonly ActionOption _option; + ActionOption _option; + + /// + /// + /// + public ActionOption Option + { + get => _option; + set + { + value &= ~(ActionOption.GeneralGCD | ActionOption.RealGCD); + if (_action.IsGeneralGCD()) value |= ActionOption.GeneralGCD; + if (_action.IsRealGCD()) value |= ActionOption.RealGCD; + _option = value; + } + } /// /// Is a heal action. /// - public bool IsHeal => _option.HasFlag(ActionOption.HealFlag); + public bool IsHeal => Option.HasFlag(ActionOption.HealFlag); /// /// Is a friendly action. @@ -33,32 +48,32 @@ public bool IsFriendly { if (_action.CanTargetFriendly) return true; if (_action.CanTargetHostile) return false; - return _option.HasFlag(ActionOption.Friendly); + return Option.HasFlag(ActionOption.Friendly); } } /// /// Is effect of time. /// - public bool IsEot => _option.HasFlag(ActionOption.Eot); + public bool IsEot => Option.HasFlag(ActionOption.Eot); /// /// Should end special window after used it. /// - public bool ShouldEndSpecial => _option.HasFlag(ActionOption.EndSpecial); + public bool ShouldEndSpecial => Option.HasFlag(ActionOption.EndSpecial); /// /// Has a normal gcd action. /// - public bool IsGeneralGCD => _option.HasFlag(ActionOption.GeneralGCD); + public bool IsGeneralGCD => Option.HasFlag(ActionOption.GeneralGCD); /// /// Is a real gcd action, that makes gcd work. /// - public bool IsRealGCD => _option.HasFlag(ActionOption.RealGCD); + public bool IsRealGCD => Option.HasFlag(ActionOption.RealGCD); /// - public bool IsDutyAction => _option.HasFlag(ActionOption.DutyAction); + public bool IsDutyAction => Option.HasFlag(ActionOption.DutyAction); /// /// Is a pvp action. @@ -238,12 +253,7 @@ public virtual unsafe uint MPNeed public BaseAction(ActionID actionID, ActionOption option = ActionOption.None) { _action = Service.GetSheet().GetRow((uint)actionID); - - option &= ~(ActionOption.GeneralGCD | ActionOption.RealGCD); - if (_action.IsGeneralGCD()) option |= ActionOption.GeneralGCD; - if (_action.IsRealGCD()) option |= ActionOption.RealGCD; - _option = option; - + Option = option; CoolDownGroup = _action.GetCoolDownGroup(); } diff --git a/RotationSolver.Basic/Actions/BaseAction_Target.cs b/RotationSolver.Basic/Actions/BaseAction_Target.cs index d5fba84f7..55ef6c5bf 100644 --- a/RotationSolver.Basic/Actions/BaseAction_Target.cs +++ b/RotationSolver.Basic/Actions/BaseAction_Target.cs @@ -78,7 +78,7 @@ public Func, bool, BattleChara> ChoiceTarget if (_choiceTarget != null) return _choiceTarget; return IsFriendly ? TargetFilter.DefaultChooseFriend : TargetFilter.DefaultFindHostile; } - init => _choiceTarget = value; + set => _choiceTarget = value; } /// @@ -89,7 +89,7 @@ public Func, bool, BattleChara> ChoiceTarget /// /// What status this action could put to the target. /// - public StatusID[] TargetStatus { get; init; } = null; + public StatusID[] TargetStatus { get; set; } = null; internal static bool TankDefenseSelf(BattleChara _, bool mustUse) { diff --git a/RotationSolver.Basic/Actions/IBaseAction.cs b/RotationSolver.Basic/Actions/IBaseAction.cs index 7f01d7d6a..176295542 100644 --- a/RotationSolver.Basic/Actions/IBaseAction.cs +++ b/RotationSolver.Basic/Actions/IBaseAction.cs @@ -5,6 +5,10 @@ /// public interface IBaseAction : IAction { + /// + /// + /// + ActionOption Option { get; set; } /// /// Is in the mistake actions. /// @@ -52,23 +56,23 @@ public interface IBaseAction : IAction /// /// If player has these statuses from player self, this action will not used. /// - StatusID[] StatusProvide { get; } + StatusID[] StatusProvide { get; set; } /// /// If player doesn't have these statuses from player self, this action will not used. /// - StatusID[] StatusNeed { get; } + StatusID[] StatusNeed { get; set; } /// /// Check for this action, but not for the rotation. It is some additional conditions for this action. /// Input data is the target for this action. /// - Func ActionCheck { get; } + Func ActionCheck { get; set; } /// /// The way to choice the target. /// - Func, bool, BattleChara> ChoiceTarget { get; } + Func, bool, BattleChara> ChoiceTarget { get; set; } /// /// Is a GCD action. @@ -177,7 +181,7 @@ public interface IBaseAction : IAction /// /// If target has these statuses from player self, this aciton will not used. /// - StatusID[] TargetStatus { get; } + StatusID[] TargetStatus { get; set; } /// /// Action using position. diff --git a/RotationSolver.Basic/DataCenter.cs b/RotationSolver.Basic/DataCenter.cs index f9b1c81a8..71c57df41 100644 --- a/RotationSolver.Basic/DataCenter.cs +++ b/RotationSolver.Basic/DataCenter.cs @@ -308,7 +308,7 @@ public static void SetSpecialType(SpecialCommandType specialType) public static bool CanProvoke { get; set; } = false; - public static uint[] TreasureCharas { get; internal set; } = Array.Empty(); + public static uint[] TreasureCharas { get; internal set; } = []; public static bool HasHostilesInRange => NumberOfHostilesInRange > 0; public static bool HasHostilesInMaxRange => NumberOfHostilesInMaxRange > 0; public static int NumberOfHostilesInRange { get; internal set; } diff --git a/RotationSolver.Basic/Helpers/StatusHelper.cs b/RotationSolver.Basic/Helpers/StatusHelper.cs index 6455e6fc6..e50e03d95 100644 --- a/RotationSolver.Basic/Helpers/StatusHelper.cs +++ b/RotationSolver.Basic/Helpers/StatusHelper.cs @@ -41,7 +41,7 @@ internal record Burst2MinsInfo(StatusID Status, bool IsOnHostile, byte Level, pa internal static Burst2MinsInfo[] Burst2Mins { get; } = [ - new (StatusID.Divination, false, AST_Base.Divination.Level, Job.AST), + new (StatusID.Divination, false, AstrologianRotation.Divination.Level, Job.AST), new (StatusID.ChainStratagem, true, SCH_Base.ChainStratagem.Level, Job.SCH), new (StatusID.Brotherhood, false, MNK_Base.Brotherhood.Level, Job.MNK), new (StatusID.BattleLitany, false, DRG_Base.BattleLitany.Level, Job.DRG), diff --git a/RotationSolver.Basic/Rotations/Basic/AST_Base.cs b/RotationSolver.Basic/Rotations/Basic/AST_Base.cs deleted file mode 100644 index 2aea8eeeb..000000000 --- a/RotationSolver.Basic/Rotations/Basic/AST_Base.cs +++ /dev/null @@ -1,402 +0,0 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// Astrologian -/// -public abstract class AST_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Mind; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.AST }; - - static ASTGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - protected static CardType DrawnCard => JobGauge.DrawnCard; - - /// - /// - /// - protected static CardType DrawnCrownCard => JobGauge.DrawnCrownCard; - - /// - /// - /// - protected static SealType[] Seals => JobGauge.Seals; - - #region Attack - /// - /// - /// - public static IBaseAction Malefic { get; } = new BaseAction(ActionID.Malefic); - - /// - /// - /// - public static IBaseAction Combust { get; } = new BaseAction(ActionID.Combust, ActionOption.Dot) - { - TargetStatus = - [ - StatusID.Combust, - StatusID.CombustIi, - StatusID.CombustIii, - StatusID.CombustIii_2041, - ], - }; - - /// - /// - /// - public static IBaseAction Gravity { get; } = new BaseAction(ActionID.Gravity); - #endregion - - #region Heal Single - private sealed protected override IBaseAction Raise => Ascend; - - /// - /// - /// - public static IBaseAction Ascend { get; } = new BaseAction(ActionID.Ascend, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Benefic { get; } = new BaseAction(ActionID.Benefic, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Benefic2 { get; } = new BaseAction(ActionID.BeneficIi, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction AspectedBenefic { get; } = new BaseAction(ActionID.AspectedBenefic, ActionOption.Hot) - { - TargetStatus = new StatusID[] { StatusID.AspectedBenefic }, - }; - - /// - /// - /// - public static IBaseAction EssentialDignity { get; } = new BaseAction(ActionID.EssentialDignity, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Synastry { get; } = new BaseAction(ActionID.Synastry, ActionOption.Heal); - #endregion - - #region Heal Area - /// - /// - /// - public static IBaseAction Helios { get; } = new BaseAction(ActionID.Helios, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction AspectedHelios { get; } = new BaseAction(ActionID.AspectedHelios, ActionOption.Hot) - { - ActionCheck = (b, m) => !IsLastGCD(ActionID.AspectedHelios), - StatusProvide = new StatusID[] { StatusID.AspectedHelios }, - }; - - /// - /// - /// - public static IBaseAction CelestialOpposition { get; } = new BaseAction(ActionID.CelestialOpposition, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction EarthlyStar { get; } = new BaseAction(ActionID.EarthlyStar, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Horoscope { get; } = new BaseAction(ActionID.Horoscope, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Macrocosmos { get; } = new BaseAction(ActionID.Macrocosmos, ActionOption.Heal) - { - StatusProvide = new StatusID[] { StatusID.Macrocosmos } - }; - #endregion - - #region Defense Single - /// - /// - /// - public static IBaseAction CelestialIntersection { get; } = new BaseAction(ActionID.CelestialIntersection, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - TargetStatus = new StatusID[] { StatusID.Intersection }, - }; - - /// - /// - /// - public static IBaseAction Exaltation { get; } = new BaseAction(ActionID.Exaltation, ActionOption.Heal) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - TargetStatus = new StatusID[] { StatusID.Exaltation }, - }; - #endregion - - #region Defense Area - /// - /// - /// - public static IBaseAction CollectiveUnconscious { get; } = new BaseAction(ActionID.CollectiveUnconscious, ActionOption.Defense) - { - StatusProvide = new StatusID[] { StatusID.CollectiveUnconscious }, - }; - - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Lightspeed { get; } = new BaseAction(ActionID.Lightspeed) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction NeutralSect { get; } = new BaseAction(ActionID.NeutralSect, ActionOption.Heal) - { - ActionCheck = (b, m) => IsLongerThan(15), - }; - - /// - /// - /// - public static IBaseAction Astrodyne { get; } = new BaseAction(ActionID.Astrodyne, ActionOption.UseResources) - { - ActionCheck = (b, m) => !Seals.Contains(SealType.NONE) && IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Divination { get; } = new BaseAction(ActionID.Divination, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Draw { get; } = new BaseAction(ActionID.Draw) - { - ActionCheck = (b, m) => DrawnCard == CardType.NONE, - }; - - /// - /// - /// - public static IBaseAction Redraw { get; } = new BaseAction(ActionID.Redraw) - { - StatusNeed = new[] { StatusID.ClarifyingDraw }, - ActionCheck = (b, m) => DrawnCard != CardType.NONE && Seals.Contains(GetCardSeal(DrawnCard)) - && !Astrodyne.ActionCheck(b, m), - }; - - /// - /// - /// - public static IBaseAction MinorArcana { get; } = new BaseAction(ActionID.MinorArcana) - { - ActionCheck = (b, m) => InCombat, - }; - - static IBaseAction Balance { get; } = new BaseAction(ActionID.TheBalance) - { - ChoiceTarget = TargetFilter.ASTMeleeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.BALANCE, - }; - - static IBaseAction Arrow { get; } = new BaseAction(ActionID.TheArrow) - { - ChoiceTarget = TargetFilter.ASTMeleeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.ARROW, - }; - - static IBaseAction Spear { get; } = new BaseAction(ActionID.TheSpear) - { - ChoiceTarget = TargetFilter.ASTMeleeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.SPEAR, - }; - - static IBaseAction Bole { get; } = new BaseAction(ActionID.TheBole) - { - ChoiceTarget = TargetFilter.ASTRangeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.BOLE, - }; - - static IBaseAction Ewer { get; } = new BaseAction(ActionID.TheEwer) - { - ChoiceTarget = TargetFilter.ASTRangeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.EWER, - - }; - - static IBaseAction Spire { get; } = new BaseAction(ActionID.TheSpire) - { - ChoiceTarget = TargetFilter.ASTRangeTarget, - ActionCheck = (b, m) => DrawnCard == CardType.SPIRE, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(122); - - /// - /// - /// - public static IBaseTrait EnhancedBenefic { get; } = new BaseTrait(124); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(125); - - /// - /// - /// - public static IBaseTrait CombustMastery { get; } = new BaseTrait(186); - - /// - /// - /// - public static IBaseTrait MaleficMastery { get; } = new BaseTrait(187); - - /// - /// - /// - public static IBaseTrait MaleficMastery2 { get; } = new BaseTrait(188); - - /// - /// - /// - public static IBaseTrait HyperLightspeed { get; } = new BaseTrait(189); - - /// - /// - /// - public static IBaseTrait CombustMastery2 { get; } = new BaseTrait(314); - - /// - /// - /// - public static IBaseTrait MaleficMastery3 { get; } = new BaseTrait(315); - - /// - /// - /// - public static IBaseTrait EnhancedEssentialDignity { get; } = new BaseTrait(316); - - /// - /// - /// - public static IBaseTrait EnhancedDraw { get; } = new BaseTrait(495); - - /// - /// - /// - public static IBaseTrait EnhancedDraw2 { get; } = new BaseTrait(496); - - /// - /// - /// - public static IBaseTrait MaleficMastery4 { get; } = new BaseTrait(497); - - /// - /// - /// - public static IBaseTrait GravityMastery { get; } = new BaseTrait(498); - - /// - /// - /// - public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(499); - - /// - /// - /// - public static IBaseTrait EnhancedCelestialIntersection { get; } = new BaseTrait(500); - - #endregion - - private protected override IBaseAction LimitBreak => AstralStasis; - - /// - /// LB - /// - public static IBaseAction AstralStasis { get; } = new BaseAction(ActionID.AstralStasis, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - protected static bool PlayCard(out IAction act) - { - act = null; - if (!Seals.Contains(SealType.NONE)) return false; - - if (Balance.CanUse(out act, CanUseOption.OnLastAbility)) return true; - if (Arrow.CanUse(out act, CanUseOption.OnLastAbility)) return true; - if (Spear.CanUse(out act, CanUseOption.OnLastAbility)) return true; - if (Bole.CanUse(out act, CanUseOption.OnLastAbility)) return true; - if (Ewer.CanUse(out act, CanUseOption.OnLastAbility)) return true; - if (Spire.CanUse(out act, CanUseOption.OnLastAbility)) return true; - - return false; - } - - static SealType GetCardSeal(CardType card) - { - return card switch - { - CardType.BALANCE or CardType.BOLE => SealType.SUN, - CardType.ARROW or CardType.EWER => SealType.MOON, - CardType.SPEAR or CardType.SPIRE => SealType.CELESTIAL, - _ => SealType.NONE, - }; - } - - /// - /// - /// - public override void DisplayStatus() - { - ImGui.Text($"Card: {DrawnCard} : {GetCardSeal(DrawnCard)}"); - ImGui.Text(string.Join(", ", Seals.Select(i => i.ToString()))); - ImGui.Text($"Redraw: {Redraw.ActionCheck(null, false)}"); - } -} diff --git a/RotationSolver.Basic/Rotations/Basic/AstrologianRotation.cs b/RotationSolver.Basic/Rotations/Basic/AstrologianRotation.cs new file mode 100644 index 000000000..b2c5a419b --- /dev/null +++ b/RotationSolver.Basic/Rotations/Basic/AstrologianRotation.cs @@ -0,0 +1,116 @@ +namespace RotationSolver.Basic.Rotations.Basic; + + +partial class AstrologianRotation +{ + /// + /// + /// + public override MedicineType MedicineType => MedicineType.Mind; + + /// + /// + /// + protected static CardType DrawnCard => JobGauge.DrawnCard; + /// + /// + /// + protected static CardType DrawnCrownCard => JobGauge.DrawnCrownCard; + + /// + /// + /// + protected static SealType[] Seals => JobGauge.Seals; + + private sealed protected override IBaseAction Raise => Ascend_PvE; + private protected override IBaseAction LimitBreak => AstralStasis_PvE; + + public AstrologianRotation() + { + Combust_PvE.Option = ActionOption.Dot; + Combust_PvE.TargetStatus = + [ + StatusID.Combust, + StatusID.CombustIi, + StatusID.CombustIii, + StatusID.CombustIii_2041, + ]; + + Benefic_PvE.Option = Helios_PvE.Option = ActionOption.Hot; + + CelestialIntersection_PvE.Option = Exaltation_PvE.Option + = CollectiveUnconscious_PvE.Option = ActionOption.Defense; + + CelestialIntersection_PvE.ChoiceTarget = Exaltation_PvE.ChoiceTarget = TargetFilter.FindAttackedTarget; + + CelestialIntersection_PvE.TargetStatus = [StatusID.Intersection]; + Exaltation_PvE.TargetStatus = [StatusID.Exaltation]; + CollectiveUnconscious_PvE.StatusProvide = [StatusID.CollectiveUnconscious]; + + Lightspeed_PvE.ActionCheck = Divination_PvE.ActionCheck = (b, m) => IsLongerThan(10); + NeutralSect_PvE.ActionCheck = (b, m) => IsLongerThan(15); + + Astrodyne_PvE.Option = ActionOption.UseResources; + Astrodyne_PvE.ActionCheck = (b, m) => !Seals.Contains(SealType.NONE) + && IsLongerThan(10); + + Draw_PvE.ActionCheck = (b, m) => DrawnCard == CardType.NONE; + Redraw_PvE.ActionCheck = (b, m) => DrawnCard != CardType.NONE && Seals.Contains(GetCardSeal(DrawnCard)) + && !Astrodyne_PvE.ActionCheck(b, m); + + MinorArcana_PvE.ActionCheck = (b, m) => InCombat; + + TheBalance_PvE.ChoiceTarget = TheArrow_PvE.ChoiceTarget = TheSpear_PvE.ChoiceTarget = TargetFilter.ASTMeleeTarget; + TheBole_PvE.ChoiceTarget = TheEwer_PvE.ChoiceTarget = TheSpire_PvE.ChoiceTarget = TargetFilter.ASTRangeTarget; + + TheBalance_PvE.ActionCheck = (b, m) => DrawnCard == CardType.BALANCE; + TheArrow_PvE.ActionCheck = (b, m) => DrawnCard == CardType.ARROW; + TheSpear_PvE.ActionCheck = (b, m) => DrawnCard == CardType.SPEAR; + TheBole_PvE.ActionCheck = (b, m) => DrawnCard == CardType.BOLE; + TheEwer_PvE.ActionCheck = (b, m) => DrawnCard == CardType.EWER; + TheSpire_PvE.ActionCheck = (b, m) => DrawnCard == CardType.SPIRE; + + AstralStasis_PvE.ActionCheck = (b, m) => LimitBreakLevel == 3; + } + + /// + /// + /// + /// + /// + protected bool PlayCard(out IAction act) + { + act = null; + if (!Seals.Contains(SealType.NONE)) return false; + + if (TheBalance_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + if (TheArrow_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + if (TheSpear_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + if (TheBole_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + if (TheEwer_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + if (TheSpire_PvE.CanUse(out act, CanUseOption.OnLastAbility)) return true; + + return false; + } + + static SealType GetCardSeal(CardType card) + { + return card switch + { + CardType.BALANCE or CardType.BOLE => SealType.SUN, + CardType.ARROW or CardType.EWER => SealType.MOON, + CardType.SPEAR or CardType.SPIRE => SealType.CELESTIAL, + _ => SealType.NONE, + }; + } + + /// + /// + /// + public override void DisplayStatus() + { + ImGui.Text($"Card: {DrawnCard} : {GetCardSeal(DrawnCard)}"); + ImGui.Text(string.Join(", ", Seals.Select(i => i.ToString()))); + ImGui.Text($"Redraw: {Redraw_PvE.ActionCheck(null, false)}"); + } +} diff --git a/RotationSolver.Basic/Rotations/Basic/BLM_Base.cs b/RotationSolver.Basic/Rotations/Basic/BLM_Base.cs index 9fe592db4..66972c1c5 100644 --- a/RotationSolver.Basic/Rotations/Basic/BLM_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/BLM_Base.cs @@ -1,556 +1,556 @@ -using Dalamud.Game.ClientState.Objects.SubKinds; -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The Black Mage -/// -public abstract partial class BLM_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Intelligence; - - /// - /// - /// - public sealed override Job[] Jobs => new Job[] { Job.BLM, Job.THM }; - - #region Job Gauge - static BLMGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte UmbralIceStacks => JobGauge.UmbralIceStacks; - - /// - /// - /// - public static byte AstralFireStacks => JobGauge.AstralFireStacks; - - /// - /// - /// - public static byte PolyglotStacks => JobGauge.PolyglotStacks; - - /// - /// - /// - public static byte UmbralHearts => JobGauge.UmbralHearts; - - /// - /// - /// - public static bool IsParadoxActive => JobGauge.IsParadoxActive; - - /// - /// - /// - public static bool InUmbralIce => JobGauge.InUmbralIce; - - /// - /// - /// - public static bool InAstralFire => JobGauge.InAstralFire; - - /// - /// - /// - public static bool IsEnochianActive => JobGauge.IsEnochianActive; - - /// - /// - /// - public static bool IsPolyglotStacksMaxed => Xenoglossy.EnoughLevel ? PolyglotStacks == 2 : PolyglotStacks == 1; - - static float EnochianTimeRaw => JobGauge.EnochianTimer / 1000f; - - /// - /// - /// - public static float EnochianTime => EnochianTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool EnchinaEndAfter(float time) => EnochianTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool EnchinaEndAfterGCD(uint gcdCount = 0, float offset = 0) - => EnchinaEndAfter(GCDTime(gcdCount, offset)); - - static float ElementTimeRaw => JobGauge.ElementTimeRemaining / 1000f; - - /// - /// - /// - protected static float ElementTime => ElementTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool ElementTimeEndAfter(float time) => ElementTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool ElementTimeEndAfterGCD(uint gctCount = 0, float offset = 0) - => ElementTimeEndAfter(GCDTime(gctCount, offset)); - - - #endregion - /// - /// - /// - protected static bool HasFire => Player.HasStatus(true, StatusID.Firestarter); - - /// - /// - /// - protected static bool HasThunder => Player.HasStatus(true, StatusID.Thundercloud); - - /// - /// The thunder action for the MP check. - /// - public class ThunderAction : BaseAction - { - /// - /// Changed the mp. - /// - public override uint MPNeed => HasThunder ? 0 : base.MPNeed; - - internal ThunderAction(ActionID actionID) - : base(actionID) - { - } - } - - /// - /// The fire3 action for the mp check. - /// - public class Fire3Action : BaseAction - { - /// - /// Changed the mp. - /// - public override uint MPNeed => HasFire ? 0 : base.MPNeed; - - internal Fire3Action(ActionID actionID) - : base(actionID) - { - } - } - - /// - /// The action that needs element time. - /// - public class ElementAction : BaseAction - { - internal ElementAction(ActionID actionID) : base(actionID) - { - } - - /// - /// Can this action be used. - /// - /// - /// - /// - /// - /// - public override bool CanUse(out IAction act, CanUseOption option = CanUseOption.None, byte aoeCount = 0, byte gcdCountForAbility = 0) - { - if (ElementTimeEndAfter(CastTime - 0.1f)) - { - act = null; - return false; - } - return base.CanUse(out act, option, gcdCountForAbility); - } - } - - #region Attack Single - /// - /// - /// - public static IBaseAction Fire { get; } = new BaseAction(ActionID.Fire); - - /// - /// - /// - public static IBaseAction Fire3 { get; } = new Fire3Action(ActionID.FireIii) - { - ActionCheck = (b, m) => !IsLastGCD(ActionID.FireIii), - }; - - /// - /// - /// - public static IBaseAction Fire4 { get; } = new ElementAction(ActionID.FireIv) - { - ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Fire4.CastTime), - }; - - /// - /// - /// - public static IBaseAction Despair { get; } = new ElementAction(ActionID.Despair) - { - ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Despair.CastTime), - }; - - /// - /// - /// - public static IBaseAction Blizzard { get; } = new BaseAction(ActionID.Blizzard); - - /// - /// - /// - public static IBaseAction Blizzard3 { get; } = new BaseAction(ActionID.BlizzardIv) - { - ActionCheck = (b, m) => !IsLastGCD(ActionID.BlizzardIv), - }; - - /// - /// - /// - public static IBaseAction Blizzard4 { get; } = new ElementAction(ActionID.BlizzardIv) - { - ActionCheck = (b, m) => InUmbralIce && !ElementTimeEndAfter(Blizzard4.CastTime), - }; - - /// - /// - /// - public static IBaseAction Thunder { get; } = new ThunderAction(ActionID.Thunder); - - /// - /// - /// - public static IBaseAction Xenoglossy { get; } = new BaseAction(ActionID.Xenoglossy, ActionOption.UseResources) - { - ActionCheck = (b, m) => PolyglotStacks > 0 - }; - - /// - /// - /// - public static IBaseAction Paradox { get; } = new BaseAction(ActionID.Paradox) - { - ActionCheck = (b, m) => IsParadoxActive, - }; - - /// - /// - /// - public static IBaseAction Scathe { get; } = new BaseAction(ActionID.Scathe); - #endregion - - #region Attack Area - /// - /// - /// - public static IBaseAction Fire2 { get; } = new BaseAction(ActionID.FireIi); - - /// - /// - /// - public static IBaseAction Flare { get; } = new ElementAction(ActionID.Flare) - { - ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Flare.CastTime), - }; - - /// - /// - /// - public static IBaseAction Blizzard2 { get; } = new BaseAction(ActionID.BlizzardIi); - - /// - /// - /// - public static IBaseAction Freeze { get; } = new ElementAction(ActionID.Freeze); - - /// - /// - /// - public static IBaseAction Thunder2 { get; } = new ThunderAction(ActionID.ThunderIi); - - /// - /// - /// - public static IBaseAction Foul { get; } = new BaseAction(ActionID.Foul, ActionOption.UseResources) - { - ActionCheck = Xenoglossy.ActionCheck, - }; - #endregion - - #region Support - /// - /// - /// - public static IBaseAction AetherialManipulation { get; } = new BaseAction(ActionID.AetherialManipulation, ActionOption.Friendly | ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - /// - /// - /// - public static IBaseAction Amplifier { get; } = new BaseAction(ActionID.Amplifier) - { - ActionCheck = (b, m) => !EnchinaEndAfter(10) && PolyglotStacks < 2 - }; - - /// - /// - /// - public static IBaseAction Manaward { get; } = new BaseAction(ActionID.Manaward, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Manafont { get; } = new BaseAction(ActionID.Manafont) - { - ActionCheck = (b, m) => Player.CurrentMp <= 7000, - }; - - /// - /// - /// - public static IBaseAction LeyLines { get; } = new BaseAction(ActionID.LeyLines, ActionOption.Buff | ActionOption.EndSpecial) - { - StatusProvide = new[] { StatusID.LeyLines, }, - ActionCheck = (b, m) => IsLongerThan(15), - }; - - /// - /// - /// - public static IBaseAction BetweenTheLines { get; } = new BaseAction(ActionID.BetweenTheLines, ActionOption.Buff | ActionOption.EndSpecial) - { - StatusNeed = LeyLines.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction SharpCast { get; } = new BaseAction(ActionID.Sharpcast) - { - StatusProvide = new[] { StatusID.Sharpcast }, - ActionCheck = (b, m) => HasHostilesInRange, - }; - - /// - /// - /// - public static IBaseAction TripleCast { get; } = new BaseAction(ActionID.Triplecast) - { - StatusProvide = Swiftcast.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Transpose { get; } = new BaseAction(ActionID.Transpose) - { - ActionCheck = (b, m) => DataCenter.ActionRemain <= ElementTimeRaw, - }; - - /// - /// - /// - public static IBaseAction UmbralSoul { get; } = new BaseAction(ActionID.UmbralSoul) - { - ActionCheck = (b, m) => JobGauge.InUmbralIce && Transpose.ActionCheck(b, m) - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(29); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(31); - - /// - /// - /// - public static IBaseTrait Firestarter { get; } = new BaseTrait(32); - - /// - /// - /// - public static IBaseTrait Thundercloud { get; } = new BaseTrait(33); - - /// - /// - /// - public static IBaseTrait ThunderMastery { get; } = new BaseTrait(171); - - /// - /// - /// - public static IBaseTrait ThunderMastery2 { get; } = new BaseTrait(172); - - /// - /// - /// - public static IBaseTrait EnhancedEnochian { get; } = new BaseTrait(174); - - /// - /// - /// - public static IBaseTrait EnhancedFreeze { get; } = new BaseTrait(295); - - /// - /// - /// - public static IBaseTrait AspectMastery { get; } = new BaseTrait(296); - - /// - /// - /// - public static IBaseTrait EnhancedPolyglot { get; } = new BaseTrait(297); - - /// - /// - /// - public static IBaseTrait EnhancedSharpcast { get; } = new BaseTrait(321); - - /// - /// - /// - public static IBaseTrait EnhancedEnochian2 { get; } = new BaseTrait(322); - - /// - /// - /// - public static IBaseTrait AspectMastery2 { get; } = new BaseTrait(458); - - /// - /// - /// - public static IBaseTrait AspectMastery3 { get; } = new BaseTrait(459); - - /// - /// - /// - public static IBaseTrait Enochian { get; } = new BaseTrait(460); - - /// - /// - /// - public static IBaseTrait EnhancedFoul { get; } = new BaseTrait(461); - - /// - /// - /// - public static IBaseTrait AspectMastery4 { get; } = new BaseTrait(462); - - /// - /// - /// - public static IBaseTrait EnhancedManafont { get; } = new BaseTrait(463); - - /// - /// - /// - public static IBaseTrait EnhancedSharpcast2 { get; } = new BaseTrait(464); - - /// - /// - /// - public static IBaseTrait AspectMastery5 { get; } = new BaseTrait(465); - - /// - /// - /// - public static IBaseTrait EnhancedEnochian3 { get; } = new BaseTrait(509); - - #endregion +//using Dalamud.Game.ClientState.Objects.SubKinds; +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The Black Mage +///// +//public abstract partial class BLM_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Intelligence; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new Job[] { Job.BLM, Job.THM }; + +// #region Job Gauge +// static BLMGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte UmbralIceStacks => JobGauge.UmbralIceStacks; + +// /// +// /// +// /// +// public static byte AstralFireStacks => JobGauge.AstralFireStacks; + +// /// +// /// +// /// +// public static byte PolyglotStacks => JobGauge.PolyglotStacks; + +// /// +// /// +// /// +// public static byte UmbralHearts => JobGauge.UmbralHearts; + +// /// +// /// +// /// +// public static bool IsParadoxActive => JobGauge.IsParadoxActive; + +// /// +// /// +// /// +// public static bool InUmbralIce => JobGauge.InUmbralIce; + +// /// +// /// +// /// +// public static bool InAstralFire => JobGauge.InAstralFire; + +// /// +// /// +// /// +// public static bool IsEnochianActive => JobGauge.IsEnochianActive; + +// /// +// /// +// /// +// public static bool IsPolyglotStacksMaxed => Xenoglossy.EnoughLevel ? PolyglotStacks == 2 : PolyglotStacks == 1; + +// static float EnochianTimeRaw => JobGauge.EnochianTimer / 1000f; + +// /// +// /// +// /// +// public static float EnochianTime => EnochianTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool EnchinaEndAfter(float time) => EnochianTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool EnchinaEndAfterGCD(uint gcdCount = 0, float offset = 0) +// => EnchinaEndAfter(GCDTime(gcdCount, offset)); + +// static float ElementTimeRaw => JobGauge.ElementTimeRemaining / 1000f; + +// /// +// /// +// /// +// protected static float ElementTime => ElementTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool ElementTimeEndAfter(float time) => ElementTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool ElementTimeEndAfterGCD(uint gctCount = 0, float offset = 0) +// => ElementTimeEndAfter(GCDTime(gctCount, offset)); + + +// #endregion +// /// +// /// +// /// +// protected static bool HasFire => Player.HasStatus(true, StatusID.Firestarter); + +// /// +// /// +// /// +// protected static bool HasThunder => Player.HasStatus(true, StatusID.Thundercloud); + +// /// +// /// The thunder action for the MP check. +// /// +// public class ThunderAction : BaseAction +// { +// /// +// /// Changed the mp. +// /// +// public override uint MPNeed => HasThunder ? 0 : base.MPNeed; + +// internal ThunderAction(ActionID actionID) +// : base(actionID) +// { +// } +// } + +// /// +// /// The fire3 action for the mp check. +// /// +// public class Fire3Action : BaseAction +// { +// /// +// /// Changed the mp. +// /// +// public override uint MPNeed => HasFire ? 0 : base.MPNeed; + +// internal Fire3Action(ActionID actionID) +// : base(actionID) +// { +// } +// } + +// /// +// /// The action that needs element time. +// /// +// public class ElementAction : BaseAction +// { +// internal ElementAction(ActionID actionID) : base(actionID) +// { +// } + +// /// +// /// Can this action be used. +// /// +// /// +// /// +// /// +// /// +// /// +// public override bool CanUse(out IAction act, CanUseOption option = CanUseOption.None, byte aoeCount = 0, byte gcdCountForAbility = 0) +// { +// if (ElementTimeEndAfter(CastTime - 0.1f)) +// { +// act = null; +// return false; +// } +// return base.CanUse(out act, option, gcdCountForAbility); +// } +// } + +// #region Attack Single +// /// +// /// +// /// +// public static IBaseAction Fire { get; } = new BaseAction(ActionID.Fire); + +// /// +// /// +// /// +// public static IBaseAction Fire3 { get; } = new Fire3Action(ActionID.FireIii) +// { +// ActionCheck = (b, m) => !IsLastGCD(ActionID.FireIii), +// }; + +// /// +// /// +// /// +// public static IBaseAction Fire4 { get; } = new ElementAction(ActionID.FireIv) +// { +// ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Fire4.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction Despair { get; } = new ElementAction(ActionID.Despair) +// { +// ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Despair.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction Blizzard { get; } = new BaseAction(ActionID.Blizzard); + +// /// +// /// +// /// +// public static IBaseAction Blizzard3 { get; } = new BaseAction(ActionID.BlizzardIv) +// { +// ActionCheck = (b, m) => !IsLastGCD(ActionID.BlizzardIv), +// }; + +// /// +// /// +// /// +// public static IBaseAction Blizzard4 { get; } = new ElementAction(ActionID.BlizzardIv) +// { +// ActionCheck = (b, m) => InUmbralIce && !ElementTimeEndAfter(Blizzard4.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction Thunder { get; } = new ThunderAction(ActionID.Thunder); + +// /// +// /// +// /// +// public static IBaseAction Xenoglossy { get; } = new BaseAction(ActionID.Xenoglossy, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => PolyglotStacks > 0 +// }; + +// /// +// /// +// /// +// public static IBaseAction Paradox { get; } = new BaseAction(ActionID.Paradox) +// { +// ActionCheck = (b, m) => IsParadoxActive, +// }; + +// /// +// /// +// /// +// public static IBaseAction Scathe { get; } = new BaseAction(ActionID.Scathe); +// #endregion + +// #region Attack Area +// /// +// /// +// /// +// public static IBaseAction Fire2 { get; } = new BaseAction(ActionID.FireIi); + +// /// +// /// +// /// +// public static IBaseAction Flare { get; } = new ElementAction(ActionID.Flare) +// { +// ActionCheck = (b, m) => InAstralFire && !ElementTimeEndAfter(Flare.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction Blizzard2 { get; } = new BaseAction(ActionID.BlizzardIi); + +// /// +// /// +// /// +// public static IBaseAction Freeze { get; } = new ElementAction(ActionID.Freeze); + +// /// +// /// +// /// +// public static IBaseAction Thunder2 { get; } = new ThunderAction(ActionID.ThunderIi); + +// /// +// /// +// /// +// public static IBaseAction Foul { get; } = new BaseAction(ActionID.Foul, ActionOption.UseResources) +// { +// ActionCheck = Xenoglossy.ActionCheck, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction AetherialManipulation { get; } = new BaseAction(ActionID.AetherialManipulation, ActionOption.Friendly | ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// /// +// /// +// /// +// public static IBaseAction Amplifier { get; } = new BaseAction(ActionID.Amplifier) +// { +// ActionCheck = (b, m) => !EnchinaEndAfter(10) && PolyglotStacks < 2 +// }; + +// /// +// /// +// /// +// public static IBaseAction Manaward { get; } = new BaseAction(ActionID.Manaward, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Manafont { get; } = new BaseAction(ActionID.Manafont) +// { +// ActionCheck = (b, m) => Player.CurrentMp <= 7000, +// }; + +// /// +// /// +// /// +// public static IBaseAction LeyLines { get; } = new BaseAction(ActionID.LeyLines, ActionOption.Buff | ActionOption.EndSpecial) +// { +// StatusProvide = new[] { StatusID.LeyLines, }, +// ActionCheck = (b, m) => IsLongerThan(15), +// }; + +// /// +// /// +// /// +// public static IBaseAction BetweenTheLines { get; } = new BaseAction(ActionID.BetweenTheLines, ActionOption.Buff | ActionOption.EndSpecial) +// { +// StatusNeed = LeyLines.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction SharpCast { get; } = new BaseAction(ActionID.Sharpcast) +// { +// StatusProvide = new[] { StatusID.Sharpcast }, +// ActionCheck = (b, m) => HasHostilesInRange, +// }; + +// /// +// /// +// /// +// public static IBaseAction TripleCast { get; } = new BaseAction(ActionID.Triplecast) +// { +// StatusProvide = Swiftcast.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Transpose { get; } = new BaseAction(ActionID.Transpose) +// { +// ActionCheck = (b, m) => DataCenter.ActionRemain <= ElementTimeRaw, +// }; + +// /// +// /// +// /// +// public static IBaseAction UmbralSoul { get; } = new BaseAction(ActionID.UmbralSoul) +// { +// ActionCheck = (b, m) => JobGauge.InUmbralIce && Transpose.ActionCheck(b, m) +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(29); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(31); + +// /// +// /// +// /// +// public static IBaseTrait Firestarter { get; } = new BaseTrait(32); + +// /// +// /// +// /// +// public static IBaseTrait Thundercloud { get; } = new BaseTrait(33); + +// /// +// /// +// /// +// public static IBaseTrait ThunderMastery { get; } = new BaseTrait(171); + +// /// +// /// +// /// +// public static IBaseTrait ThunderMastery2 { get; } = new BaseTrait(172); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnochian { get; } = new BaseTrait(174); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedFreeze { get; } = new BaseTrait(295); + +// /// +// /// +// /// +// public static IBaseTrait AspectMastery { get; } = new BaseTrait(296); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedPolyglot { get; } = new BaseTrait(297); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSharpcast { get; } = new BaseTrait(321); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnochian2 { get; } = new BaseTrait(322); + +// /// +// /// +// /// +// public static IBaseTrait AspectMastery2 { get; } = new BaseTrait(458); + +// /// +// /// +// /// +// public static IBaseTrait AspectMastery3 { get; } = new BaseTrait(459); + +// /// +// /// +// /// +// public static IBaseTrait Enochian { get; } = new BaseTrait(460); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedFoul { get; } = new BaseTrait(461); + +// /// +// /// +// /// +// public static IBaseTrait AspectMastery4 { get; } = new BaseTrait(462); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedManafont { get; } = new BaseTrait(463); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSharpcast2 { get; } = new BaseTrait(464); + +// /// +// /// +// /// +// public static IBaseTrait AspectMastery5 { get; } = new BaseTrait(465); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnochian3 { get; } = new BaseTrait(509); + +// #endregion - private protected override IBaseAction LimitBreak => Meteor; - - /// - /// LB - /// - public static IBaseAction Meteor { get; } = new BaseAction(ActionID.Meteor) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - protected static float Fire4Time { get; private set; } - - /// - /// - /// - protected override void UpdateInfo() - { - if (Player.CastActionId == (uint)ActionID.FireIv && Player.CurrentCastTime < 0.2) - { - Fire4Time = Player.TotalCastTime; - } - base.UpdateInfo(); - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Manaward)] - protected sealed override bool DefenseSingleGCD(out IAction act) - { - if (Manaward.CanUse(out act)) return true; - return base.DefenseSingleGCD(out act); - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Addle)] - protected override bool DefenseAreaAbility(out IAction act) - { - if (Addle.CanUse(out act)) return true; - return false; - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.AetherialManipulation)] - protected sealed override bool MoveForwardGCD(out IAction act) - { - if (AetherialManipulation.CanUse(out act, CanUseOption.MustUse)) return true; - return base.MoveForwardGCD(out act); - } -} +// private protected override IBaseAction LimitBreak => Meteor; + +// /// +// /// LB +// /// +// public static IBaseAction Meteor { get; } = new BaseAction(ActionID.Meteor) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// protected static float Fire4Time { get; private set; } + +// /// +// /// +// /// +// protected override void UpdateInfo() +// { +// if (Player.CastActionId == (uint)ActionID.FireIv && Player.CurrentCastTime < 0.2) +// { +// Fire4Time = Player.TotalCastTime; +// } +// base.UpdateInfo(); +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Manaward)] +// protected sealed override bool DefenseSingleGCD(out IAction act) +// { +// if (Manaward.CanUse(out act)) return true; +// return base.DefenseSingleGCD(out act); +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Addle)] +// protected override bool DefenseAreaAbility(out IAction act) +// { +// if (Addle.CanUse(out act)) return true; +// return false; +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.AetherialManipulation)] +// protected sealed override bool MoveForwardGCD(out IAction act) +// { +// if (AetherialManipulation.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.MoveForwardGCD(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/BLU_Base.cs b/RotationSolver.Basic/Rotations/Basic/BLU_Base.cs index 72f02d132..ee6ae4155 100644 --- a/RotationSolver.Basic/Rotations/Basic/BLU_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/BLU_Base.cs @@ -1,1094 +1,1094 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The BLU Action. -/// -public interface IBLUAction : IBaseAction -{ - /// - /// Is on the slot. - /// - bool OnSlot { get; } - - /// - /// Is right type. - /// - bool RightType { get; } -} - -/// -/// The base class about Blue Mage. -/// -public abstract class BLU_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Intelligence; - - /// - /// Tye ID card for Blu. - /// - public enum BLUID : byte - { - /// - /// - /// - Tank, - - /// - /// - /// - Healer, - - /// - /// - /// - DPS, - } - - /// - /// Attack Type. - /// - public enum BLUAttackType : byte - { - /// - /// - /// - Both, - - /// - /// - /// - Magical, - - /// - /// - /// - Physical, - } - - /// - /// - /// - public enum BLUActionType : byte - { - /// - /// - /// - None, - - /// - /// - /// - Magical, - - /// - /// - /// - Physical, - } - - /// - /// - /// - public sealed override Job[] Jobs => new Job[] { Job.BLU }; - - /// - /// - /// - protected static BLUAttackType BluAttackType { get; set; } = BLUAttackType.Both; - - /// - /// - /// - protected static BLUID BlueId { get; set; } = BLUID.DPS; - - private protected sealed override IBaseAction Raise => AngelWhisper; - - /// - /// - /// - public class BLUAction : BaseAction, IBLUAction - { - static readonly StatusID[] NoPhysic = - [ - StatusID.IceSpikes, - ]; - - static readonly StatusID[] NoMagic = - [ - StatusID.RepellingSpray_556, - StatusID.MagitekField_2166, - ]; - - /// - /// Description about the action. - /// - public override string Description => $"Type: {Type}\nAspect: {Aspect}"; - - /// - /// The Type - /// - public BLUActionType Type { get; init; } - - /// - /// - /// - public bool RightType - { - get - { - if (Type == BLUActionType.None) return true; - if (BluAttackType == BLUAttackType.Physical && Type == BLUActionType.Magical) return false; - if (BluAttackType == BLUAttackType.Magical && Type == BLUActionType.Physical) return false; - - try - { - if (Target.HasStatus(false, NoPhysic) && Type == BLUActionType.Physical) return false; - if (Target.HasStatus(false, NoMagic) && Type == BLUActionType.Magical) return false; - } - catch (Exception ex) - { - Svc.Log.Warning(ex, "Failed for checking target status."); - } - return true; - } - } - - /// - /// - /// - public unsafe bool OnSlot => DataCenter.BluSlots.Any(i => AdjustedID == Service.GetAdjustedActionId(i)); - - internal BLUAction(ActionID actionID, ActionOption option = ActionOption.None) - : base(actionID, option) - { - Type = AttackType != AttackType.Magic ? BLUActionType.Physical : Aspect == Aspect.Piercing ? BLUActionType.None : BLUActionType.Magical; - ActionCheck = (t, m) => OnSlot && RightType; - } - - /// - /// Can this action be used. - /// - /// - /// - /// - /// - /// - public override bool CanUse(out IAction act, CanUseOption option = CanUseOption.None, byte aoeCount = 0, byte gcdCountForAbility = 0) - { - act = null; - - if (!OnSlot) return false; - return base.CanUse(out act, option | CanUseOption.IgnoreClippingCheck, gcdCountForAbility); - } - } - - #region Magical Single - /// - /// - /// - public static IBLUAction WaterCannon { get; } = new BLUAction(ActionID.WaterCannon); - - /// - /// - /// - public static IBLUAction SongOfTorment { get; } = new BLUAction(ActionID.SongOfTorment, ActionOption.Dot) - { - TargetStatus = new[] { StatusID.Bleeding } - }; - - /// - /// - /// - public static IBLUAction BloodDrain { get; } = new BLUAction(ActionID.BloodDrain) - { - ActionCheck = (b, m) => Player.CurrentMp <= 9500, - }; - - /// - /// - /// - public static IBLUAction SonicBoom { get; } = new BLUAction(ActionID.SonicBoom); - - /// - /// - /// - public static IBLUAction PerpetualRay { get; } = new BLUAction(ActionID.PerpetualRay); - - /// - /// - /// - public static IBLUAction Reflux { get; } = new BLUAction(ActionID.Reflux); - - /// - /// - /// - public static IBLUAction Devour { get; } = new BLUAction(ActionID.Devour, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction TheRoseOfDestruction { get; } = new BLUAction(ActionID.TheRoseOfDestruction); - - /// - /// - /// - public static IBLUAction MatraMagic { get; } = new BLUAction(ActionID.MatraMagic); - - /// - /// - /// - public static IBLUAction WhiteDeath { get; } = new BLUAction(ActionID.WhiteDeath) - { - ActionCheck = (b, m) => Player.HasStatus(true, StatusID.TouchOfFrost) - }; - #endregion - - #region Magical Area - /// - /// - /// - public static IBLUAction FlameThrower { get; } = new BLUAction(ActionID.FlameThrower); - - /// - /// - /// - public static IBLUAction AquaBreath { get; } = new BLUAction(ActionID.AquaBreath, ActionOption.Dot); - - /// - /// - /// - public static IBLUAction HighVoltage { get; } = new BLUAction(ActionID.HighVoltage); - - /// - /// - /// - public static IBLUAction Glower { get; } = new BLUAction(ActionID.Glower); - - /// - /// - /// - public static IBLUAction PlainCracker { get; } = new BLUAction(ActionID.Plaincracker); - - /// - /// - /// - public static IBLUAction TheLook { get; } = new BLUAction(ActionID.TheLook); - - /// - /// - /// - public static IBLUAction TheRamVoice { get; } = new BLUAction(ActionID.TheRamsVoice); - - /// - /// - /// - public static IBLUAction TheDragonVoice { get; } = new BLUAction(ActionID.TheDragonsVoice); - - /// - /// - /// - public static IBLUAction InkJet { get; } = new BLUAction(ActionID.InkJet); - - /// - /// - /// - public static IBLUAction FireAngon { get; } = new BLUAction(ActionID.FireAngon); - - /// - /// - /// - public static IBLUAction MindBlast { get; } = new BLUAction(ActionID.MindBlast); - - /// - /// - /// - public static IBLUAction FeatherRain { get; } = new BLUAction(ActionID.FeatherRain); - - /// - /// - /// - public static IBLUAction Eruption { get; } = new BLUAction(ActionID.Eruption); - - /// - /// - /// - public static IBLUAction MountainBuster { get; } = new BLUAction(ActionID.MountainBuster); - - /// - /// - /// - public static IBLUAction ShockStrike { get; } = new BLUAction(ActionID.ShockStrike); - - /// - /// - /// - public static IBLUAction GlassDance { get; } = new BLUAction(ActionID.GlassDance); - - /// - /// - /// - public static IBLUAction AlpineDraft { get; } = new BLUAction(ActionID.AlpineDraft); - - /// - /// - /// - public static IBLUAction ProteanWave { get; } = new BLUAction(ActionID.ProteanWave); - - /// - /// - /// - public static IBLUAction Northerlies { get; } = new BLUAction(ActionID.Northerlies); - - /// - /// - /// - public static IBLUAction Electrogenesis { get; } = new BLUAction(ActionID.Electrogenesis); - - /// - /// - /// - public static IBLUAction MagicHammer { get; } = new BLUAction(ActionID.MagicHammer, ActionOption.Defense); - - /// - /// - /// - public static IBLUAction WhiteKnightsTour { get; } = new BLUAction(ActionID.WhiteKnightsTour); - - /// - /// - /// - public static IBLUAction BlackKnightsTour { get; } = new BLUAction(ActionID.BlackKnightsTour); - - /// - /// - /// - public static IBLUAction Surpanakha { get; } = new BLUAction(ActionID.Surpanakha); - - /// - /// - /// - public static IBLUAction Quasar { get; } = new BLUAction(ActionID.Quasar); - - /// - /// - /// - public static IBLUAction Tingle { get; } = new BLUAction(ActionID.Tingle) - { - StatusProvide = new StatusID[] { StatusID.Tingling }, - }; - - /// - /// - /// - public static IBLUAction Tatamigaeshi { get; } = new BLUAction(ActionID.Tatamigaeshi); - - /// - /// - /// - public static IBLUAction SaintlyBeam { get; } = new BLUAction(ActionID.SaintlyBeam); - - /// - /// - /// - public static IBLUAction FeculentFlood { get; } = new BLUAction(ActionID.FeculentFlood); - - /// - /// - /// - public static IBLUAction Blaze { get; } = new BLUAction(ActionID.Blaze); - - /// - /// - /// - public static IBLUAction MustardBomb { get; } = new BLUAction(ActionID.MustardBomb); - - /// - /// - /// - public static IBLUAction AetherialSpark { get; } = new BLUAction(ActionID.AetherialSpark, ActionOption.Dot); - - /// - /// - /// - public static IBLUAction HydroPull { get; } = new BLUAction(ActionID.HydroPull); - - /// - /// - /// - public static IBLUAction MaledictionOfWater { get; } = new BLUAction(ActionID.MaledictionOfWater); - - /// - /// - /// - public static IBLUAction ChocoMeteor { get; } = new BLUAction(ActionID.ChocoMeteor); - - /// - /// - /// - public static IBLUAction NightBloom { get; } = new BLUAction(ActionID.Nightbloom); - - /// - /// - /// - public static IBLUAction DivineCataract { get; } = new BLUAction(ActionID.DivineCataract) - { - ActionCheck = (b, m) => Player.HasStatus(true, StatusID.AuspiciousTrance) - }; - - /// - /// - /// - public static IBLUAction PhantomFlurry2 { get; } = new BLUAction(ActionID.PhantomFlurry_23289) - { - ActionCheck = (b, m) => Player.HasStatus(true, StatusID.PhantomFlurry) - }; - - /// - /// - /// - public static IBLUAction PeatPelt { get; } = new BLUAction(ActionID.PeatPelt); - - /// - /// - /// - public static IBLUAction MortalFlame { get; } = new BLUAction(ActionID.MortalFlame, ActionOption.Dot); - - /// - /// - /// - public static IBLUAction SeaShanty { get; } = new BLUAction(ActionID.SeaShanty); - - #endregion - - #region Physical Single - /// - /// - /// - public static IBLUAction FinalSting { get; } = new BLUAction(ActionID.FinalSting) - { - ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BrushWithDeath), - }; - - /// - /// - /// - public static IBLUAction SharpenedKnife { get; } = new BLUAction(ActionID.SharpenedKnife); - - /// - /// - /// - public static IBLUAction FlyingSardine { get; } = new BLUAction(ActionID.FlyingSardine) - { - FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), - }; - - /// - /// - /// - public static IBLUAction AbyssalTransfixion { get; } = new BLUAction(ActionID.AbyssalTransfixion); - - /// - /// - /// - public static IBLUAction TripleTrident { get; } = new BLUAction(ActionID.TripleTrident); - - /// - /// - /// - public static IBLUAction RevengeBlast { get; } = new BLUAction(ActionID.RevengeBlast) - { - ActionCheck = (b, m) => b.GetHealthRatio() < 0.2f, - }; - - /// - /// - /// - public static IBLUAction GoblinPunch { get; } = new BLUAction(ActionID.GoblinPunch); - - #endregion - - #region Physical Area - /// - /// - /// - public static IBLUAction FlyingFrenzy { get; } = new BLUAction(ActionID.FlyingFrenzy); - - /// - /// - /// - public static IBLUAction DrillCannons { get; } = new BLUAction(ActionID.DrillCannons); - - /// - /// - /// - public static IBLUAction Weight4Tonze { get; } = new BLUAction(ActionID._4TonzeWeight); - - /// - /// - /// - public static IBLUAction Needles1000 { get; } = new BLUAction(ActionID._1000Needles); - - /// - /// - /// - public static IBLUAction Kaltstrahl { get; } = new BLUAction(ActionID.Kaltstrahl); - - /// - /// - /// - public static IBLUAction JKick { get; } = new BLUAction(ActionID.JKick); - - /// - /// - /// - public static IBLUAction PeripheralSynthesis { get; } = new BLUAction(ActionID.PeripheralSynthesis); - - /// - /// - /// - public static IBLUAction BothEnds { get; } = new BLUAction(ActionID.BothEnds); - - /// - /// - /// - public static IBLUAction RightRound { get; } = new BLUAction(ActionID.RightRound); - - /// - /// - /// - public static IBLUAction WildRage { get; } = new BLUAction(ActionID.WildRage); - - /// - /// - /// - public static IBLUAction DeepClean { get; } = new BLUAction(ActionID.DeepClean); - - /// - /// - /// - public static IBLUAction RubyDynamics { get; } = new BLUAction(ActionID.RubyDynamics); - - /// - /// - /// - public static IBLUAction WingedReprobation { get; } = new BLUAction(ActionID.WingedReprobation); - #endregion - - #region Other Single - /// - /// - /// - public static IBLUAction StickyTongue { get; } = new BLUAction(ActionID.StickyTongue); - - /// - /// - /// - public static IBLUAction Missile { get; } = new BLUAction(ActionID.Missile); - - /// - /// - /// - public static IBLUAction TailScrew { get; } = new BLUAction(ActionID.TailScrew); - - /// - /// - /// - public static IBLUAction Doom { get; } = new BLUAction(ActionID.Doom); - - /// - /// - /// - public static IBLUAction EerieSoundwave { get; } = new BLUAction(ActionID.EerieSoundwave); - - /// - /// - /// - public static IBLUAction CondensedLibra { get; } = new BLUAction(ActionID.CondensedLibra); - - /// - /// - /// - public static IBLUAction Schiltron { get; } = new BLUAction(ActionID.Schiltron); - #endregion - - #region Other Area - /// - /// - /// - public static IBLUAction Level5Petrify { get; } = new BLUAction(ActionID.Level5Petrify); - - /// - /// - /// - public static IBLUAction AcornBomb { get; } = new BLUAction(ActionID.AcornBomb); - - /// - /// - /// - public static IBLUAction BombToss { get; } = new BLUAction(ActionID.BombToss); - - /// - /// - /// - public static IBLUAction SelfDestruct { get; } = new BLUAction(ActionID.Selfdestruct) - { - ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BrushWithDeath), - }; - - /// - /// - /// - public static IBLUAction Faze { get; } = new BLUAction(ActionID.Faze); - - /// - /// - /// - public static IBLUAction Snort { get; } = new BLUAction(ActionID.Snort); - - /// - /// - /// - public static IBLUAction BadBreath { get; } = new BLUAction(ActionID.BadBreath, ActionOption.Defense); - - /// - /// - /// - public static IBLUAction Chirp { get; } = new BLUAction(ActionID.Chirp); - - /// - /// - /// - public static IBLUAction FrogLegs { get; } = new BLUAction(ActionID.FrogLegs); - - /// - /// - /// - public static IBLUAction Level5Death { get; } = new BLUAction(ActionID.Level5Death); - - /// - /// - /// - public static IBLUAction Launcher { get; } = new BLUAction(ActionID.Launcher); - - /// - /// - /// - public static IBLUAction UltraVibration { get; } = new BLUAction(ActionID.Ultravibration); - - /// - /// - /// - public static IBLUAction PhantomFlurry { get; } = new BLUAction(ActionID.PhantomFlurry); - - /// - /// - /// - public static IBLUAction BreathOfMagic { get; } = new BLUAction(ActionID.BreathOfMagic); - - /// - /// - /// - public static IBLUAction DivinationRune { get; } = new BLUAction(ActionID.DivinationRune); - - /// - /// - /// - public static IBLUAction DimensionalShift { get; } = new BLUAction(ActionID.DimensionalShift); - - /// - /// - /// - public static IBLUAction ConvictionMarcato { get; } = new BLUAction(ActionID.ConvictionMarcato); - - /// - /// - /// - public static IBLUAction LaserEye { get; } = new BLUAction(ActionID.LaserEye); - - /// - /// - /// - public static IBLUAction CandyCane { get; } = new BLUAction(ActionID.CandyCane); - - /// - /// - /// - public static IBLUAction Apokalypsis { get; } = new BLUAction(ActionID.Apokalypsis); - - /// - /// - /// - public static IBLUAction BeingMortal { get; } = new BLUAction(ActionID.BeingMortal); - #endregion - - #region Defense - /// - /// - /// - public static IBLUAction IceSpikes { get; } = new BLUAction(ActionID.IceSpikes, ActionOption.Defense); - - /// - /// - /// - public static IBLUAction VeilOfTheWhorl { get; } = new BLUAction(ActionID.VeilOfTheWhorl, ActionOption.Defense); - - /// - /// - /// - public static IBLUAction Diamondback { get; } = new BLUAction(ActionID.Diamondback, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBLUAction Gobskin { get; } = new BLUAction(ActionID.Gobskin, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBLUAction Cactguard { get; } = new BLUAction(ActionID.Cactguard, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBLUAction ChelonianGate { get; } = new BLUAction(ActionID.ChelonianGate, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBLUAction DragonForce { get; } = new BLUAction(ActionID.DragonForce, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - #endregion - - #region Support - /// - /// - /// - public static IBLUAction ToadOil { get; } = new BLUAction(ActionID.ToadOil, ActionOption.Buff); - - /// - /// - /// - public static IBLUAction Bristle { get; } = new BLUAction(ActionID.Bristle, ActionOption.Buff) - { - StatusProvide = new StatusID[] { StatusID.Boost, StatusID.Harmonized }, - }; - - /// - /// - /// - public static IBLUAction OffGuard { get; } = new BLUAction(ActionID.Offguard, ActionOption.Buff); - - /// - /// - /// - public static IBLUAction MightyGuard { get; } = new BLUAction(ActionID.MightyGuard, ActionOption.Buff) - { - StatusProvide = new StatusID[] - { - StatusID.MightyGuard, - }, - }; - - /// - /// - /// - public static IBLUAction MoonFlute { get; } = new BLUAction(ActionID.MoonFlute, ActionOption.Buff) - { - StatusProvide = new StatusID[] { StatusID.WaxingNocturne }, - }; - - /// - /// - /// - public static IBLUAction PeculiarLight { get; } = new BLUAction(ActionID.PeculiarLight, ActionOption.Buff); - - /// - /// - /// - public static IBLUAction Avail { get; } = new BLUAction(ActionID.Avail, ActionOption.Buff); - - /// - /// - /// - public static IBLUAction Whistle { get; } = new BLUAction(ActionID.Whistle, ActionOption.Buff) - { - StatusProvide = new StatusID[] { StatusID.Boost, StatusID.Harmonized }, - }; - - /// - /// - /// - public static IBLUAction ColdFog { get; } = new BLUAction(ActionID.ColdFog, ActionOption.Buff); - - /// - /// - /// - public static IBLUAction ForceField { get; } = new BLUAction(ActionID.ForceField, ActionOption.Buff); - #endregion - - #region Heal - /// - /// - /// - public static IBLUAction WhiteWind { get; } = new BLUAction(ActionID.WhiteWind, ActionOption.Heal) - { - ActionCheck = (b, m) => Player.GetHealthRatio() is > 0.3f and < 0.5f, - }; - - /// - /// - /// - public static IBLUAction Stotram { get; } = new BLUAction(ActionID.Stotram, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction PomCure { get; } = new BLUAction(ActionID.PomCure, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction AngelWhisper { get; } = new BLUAction(ActionID.AngelWhisper, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction Exuviation { get; } = new BLUAction(ActionID.Exuviation, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction AngelsSnack { get; } = new BLUAction(ActionID.AngelsSnack, ActionOption.Heal); - - /// - /// - /// - public static IBLUAction Rehydration { get; } = new BLUAction(ActionID.Rehydration, ActionOption.Heal); - #endregion - - #region Others - /// - /// - /// - private static IBLUAction Loom { get; } = new BLUAction(ActionID.Loom, ActionOption.EndSpecial); - - /// - /// - /// - public static IBLUAction BasicInstinct { get; } = new BLUAction(ActionID.BasicInstinct) - { - StatusProvide = new StatusID[] { StatusID.BasicInstinct }, - ActionCheck = (b, m) => Svc.Condition[Dalamud.Game.ClientState.Conditions.ConditionFlag.BoundByDuty56] && DataCenter.PartyMembers.Count(p => p.GetHealthRatio() > 0) == 1, - }; - - static IBaseAction AethericMimicry { get; } = new BaseAction(ActionID.AethericMimicry, ActionOption.Friendly) - { - ChoiceTarget = (charas, mustUse) => - { - switch (BlueId) - { - case BLUID.DPS: - if (!Player.HasStatus(true, StatusID.AethericMimicryDps)) - { - return charas.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical).FirstOrDefault(); - } - break; - - case BLUID.Tank: - if (!Player.HasStatus(true, StatusID.AethericMimicryTank)) - { - return charas.GetJobCategory(JobRole.Tank).FirstOrDefault(); - } - break; - - case BLUID.Healer: - if (!Player.HasStatus(true, StatusID.AethericMimicryHealer)) - { - return charas.GetJobCategory(JobRole.Healer).FirstOrDefault(); - } - break; - } - return null; - }, - }; - - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait Learning { get; } = new BaseTrait(219); - - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(220); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(221); - - /// - /// - /// - public static IBaseTrait MaimAndMend3 { get; } = new BaseTrait(222); - - /// - /// - /// - public static IBaseTrait MaimAndMend4 { get; } = new BaseTrait(223); - - /// - /// - /// - public static IBaseTrait MaimAndMend5 { get; } = new BaseTrait(224); - #endregion - - /// - /// - /// - /// - /// - protected sealed override bool MoveForwardGCD(out IAction act) - { - if (JKick.CanUse(out act, CanUseOption.MustUse)) return true; - if (Loom.CanUse(out act)) return true; - return base.MoveForwardGCD(out act); - } - - /// - /// - /// - /// - /// - protected override bool EmergencyGCD(out IAction act) - { - if (AethericMimicry.CanUse(out act)) return true; - if (BlueId == BLUID.Healer) - { - //Esuna - if (DataCenter.IsEsunaStanceNorth && DataCenter.WeakenPeople.Any() || DataCenter.DyingPeople.Any()) - { - if (Exuviation.CanUse(out act, CanUseOption.MustUse)) return true; - } - } - if (BasicInstinct.CanUse(out _)) - { - if (MightyGuard.CanUse(out act)) return true; - act = BasicInstinct; - return true; - } - - return base.EmergencyGCD(out act); - } - - /// - /// All these actions are on slots. - /// - /// - /// - protected static bool AllOnSlot(params IBLUAction[] actions) => actions.All(a => a.OnSlot); - - /// - /// How many actions are on slots. - /// - /// - /// - protected static uint OnSlotCount(params IBLUAction[] actions) => (uint)actions.Count(a => a.OnSlot); - - /// - /// All base actions. - /// - public override IBaseAction[] AllBaseActions => base.AllBaseActions - .Where(a => a is not IBLUAction b || b.OnSlot).ToArray(); - - /// - /// Configurations. - /// - /// - protected override IRotationConfigSet CreateConfiguration() - { - return base.CreateConfiguration() - .SetCombo(CombatType.PvE, "BlueId", 2, "Role", "Tank", "Healer", "DPS") - .SetCombo(CombatType.PvE, "AttackType", 2, "Type", "Both", "Magic", "Physic"); - } - - /// - /// - /// - protected override void UpdateInfo() - { - BlueId = (BLUID)Configs.GetCombo("BlueId"); - BluAttackType = (BLUAttackType)Configs.GetCombo("AttackType"); - base.UpdateInfo(); - } - - /// - /// - /// - /// - /// - protected override bool HealSingleGCD(out IAction act) - { - if (BlueId == BLUID.Healer) - { - if (PomCure.CanUse(out act)) return true; - } - if (WhiteWind.CanUse(out act, CanUseOption.MustUse)) return true; - return base.HealSingleGCD(out act); - } - - /// - /// - /// - /// - /// - protected override bool HealAreaGCD(out IAction act) - { - if (BlueId == BLUID.Healer) - { - if (AngelsSnack.CanUse(out act)) return true; - if (Stotram.CanUse(out act)) return true; - } - - if (WhiteWind.CanUse(out act, CanUseOption.MustUse)) return true; - return base.HealAreaGCD(out act); - } - - /// - /// - /// - public override void DisplayStatus() - { - ImGui.TextWrapped(BlueId.ToString()); - base.DisplayStatus(); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The BLU Action. +///// +//public interface IBLUAction : IBaseAction +//{ +// /// +// /// Is on the slot. +// /// +// bool OnSlot { get; } + +// /// +// /// Is right type. +// /// +// bool RightType { get; } +//} + +///// +///// The base class about Blue Mage. +///// +//public abstract class BLU_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Intelligence; + +// /// +// /// Tye ID card for Blu. +// /// +// public enum BLUID : byte +// { +// /// +// /// +// /// +// Tank, + +// /// +// /// +// /// +// Healer, + +// /// +// /// +// /// +// DPS, +// } + +// /// +// /// Attack Type. +// /// +// public enum BLUAttackType : byte +// { +// /// +// /// +// /// +// Both, + +// /// +// /// +// /// +// Magical, + +// /// +// /// +// /// +// Physical, +// } + +// /// +// /// +// /// +// public enum BLUActionType : byte +// { +// /// +// /// +// /// +// None, + +// /// +// /// +// /// +// Magical, + +// /// +// /// +// /// +// Physical, +// } + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new Job[] { Job.BLU }; + +// /// +// /// +// /// +// protected static BLUAttackType BluAttackType { get; set; } = BLUAttackType.Both; + +// /// +// /// +// /// +// protected static BLUID BlueId { get; set; } = BLUID.DPS; + +// private protected sealed override IBaseAction Raise => AngelWhisper; + +// /// +// /// +// /// +// public class BLUAction : BaseAction, IBLUAction +// { +// static readonly StatusID[] NoPhysic = +// [ +// StatusID.IceSpikes, +// ]; + +// static readonly StatusID[] NoMagic = +// [ +// StatusID.RepellingSpray_556, +// StatusID.MagitekField_2166, +// ]; + +// /// +// /// Description about the action. +// /// +// public override string Description => $"Type: {Type}\nAspect: {Aspect}"; + +// /// +// /// The Type +// /// +// public BLUActionType Type { get; init; } + +// /// +// /// +// /// +// public bool RightType +// { +// get +// { +// if (Type == BLUActionType.None) return true; +// if (BluAttackType == BLUAttackType.Physical && Type == BLUActionType.Magical) return false; +// if (BluAttackType == BLUAttackType.Magical && Type == BLUActionType.Physical) return false; + +// try +// { +// if (Target.HasStatus(false, NoPhysic) && Type == BLUActionType.Physical) return false; +// if (Target.HasStatus(false, NoMagic) && Type == BLUActionType.Magical) return false; +// } +// catch (Exception ex) +// { +// Svc.Log.Warning(ex, "Failed for checking target status."); +// } +// return true; +// } +// } + +// /// +// /// +// /// +// public unsafe bool OnSlot => DataCenter.BluSlots.Any(i => AdjustedID == Service.GetAdjustedActionId(i)); + +// internal BLUAction(ActionID actionID, ActionOption option = ActionOption.None) +// : base(actionID, option) +// { +// Type = AttackType != AttackType.Magic ? BLUActionType.Physical : Aspect == Aspect.Piercing ? BLUActionType.None : BLUActionType.Magical; +// ActionCheck = (t, m) => OnSlot && RightType; +// } + +// /// +// /// Can this action be used. +// /// +// /// +// /// +// /// +// /// +// /// +// public override bool CanUse(out IAction act, CanUseOption option = CanUseOption.None, byte aoeCount = 0, byte gcdCountForAbility = 0) +// { +// act = null; + +// if (!OnSlot) return false; +// return base.CanUse(out act, option | CanUseOption.IgnoreClippingCheck, gcdCountForAbility); +// } +// } + +// #region Magical Single +// /// +// /// +// /// +// public static IBLUAction WaterCannon { get; } = new BLUAction(ActionID.WaterCannon); + +// /// +// /// +// /// +// public static IBLUAction SongOfTorment { get; } = new BLUAction(ActionID.SongOfTorment, ActionOption.Dot) +// { +// TargetStatus = new[] { StatusID.Bleeding } +// }; + +// /// +// /// +// /// +// public static IBLUAction BloodDrain { get; } = new BLUAction(ActionID.BloodDrain) +// { +// ActionCheck = (b, m) => Player.CurrentMp <= 9500, +// }; + +// /// +// /// +// /// +// public static IBLUAction SonicBoom { get; } = new BLUAction(ActionID.SonicBoom); + +// /// +// /// +// /// +// public static IBLUAction PerpetualRay { get; } = new BLUAction(ActionID.PerpetualRay); + +// /// +// /// +// /// +// public static IBLUAction Reflux { get; } = new BLUAction(ActionID.Reflux); + +// /// +// /// +// /// +// public static IBLUAction Devour { get; } = new BLUAction(ActionID.Devour, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction TheRoseOfDestruction { get; } = new BLUAction(ActionID.TheRoseOfDestruction); + +// /// +// /// +// /// +// public static IBLUAction MatraMagic { get; } = new BLUAction(ActionID.MatraMagic); + +// /// +// /// +// /// +// public static IBLUAction WhiteDeath { get; } = new BLUAction(ActionID.WhiteDeath) +// { +// ActionCheck = (b, m) => Player.HasStatus(true, StatusID.TouchOfFrost) +// }; +// #endregion + +// #region Magical Area +// /// +// /// +// /// +// public static IBLUAction FlameThrower { get; } = new BLUAction(ActionID.FlameThrower); + +// /// +// /// +// /// +// public static IBLUAction AquaBreath { get; } = new BLUAction(ActionID.AquaBreath, ActionOption.Dot); + +// /// +// /// +// /// +// public static IBLUAction HighVoltage { get; } = new BLUAction(ActionID.HighVoltage); + +// /// +// /// +// /// +// public static IBLUAction Glower { get; } = new BLUAction(ActionID.Glower); + +// /// +// /// +// /// +// public static IBLUAction PlainCracker { get; } = new BLUAction(ActionID.Plaincracker); + +// /// +// /// +// /// +// public static IBLUAction TheLook { get; } = new BLUAction(ActionID.TheLook); + +// /// +// /// +// /// +// public static IBLUAction TheRamVoice { get; } = new BLUAction(ActionID.TheRamsVoice); + +// /// +// /// +// /// +// public static IBLUAction TheDragonVoice { get; } = new BLUAction(ActionID.TheDragonsVoice); + +// /// +// /// +// /// +// public static IBLUAction InkJet { get; } = new BLUAction(ActionID.InkJet); + +// /// +// /// +// /// +// public static IBLUAction FireAngon { get; } = new BLUAction(ActionID.FireAngon); + +// /// +// /// +// /// +// public static IBLUAction MindBlast { get; } = new BLUAction(ActionID.MindBlast); + +// /// +// /// +// /// +// public static IBLUAction FeatherRain { get; } = new BLUAction(ActionID.FeatherRain); + +// /// +// /// +// /// +// public static IBLUAction Eruption { get; } = new BLUAction(ActionID.Eruption); + +// /// +// /// +// /// +// public static IBLUAction MountainBuster { get; } = new BLUAction(ActionID.MountainBuster); + +// /// +// /// +// /// +// public static IBLUAction ShockStrike { get; } = new BLUAction(ActionID.ShockStrike); + +// /// +// /// +// /// +// public static IBLUAction GlassDance { get; } = new BLUAction(ActionID.GlassDance); + +// /// +// /// +// /// +// public static IBLUAction AlpineDraft { get; } = new BLUAction(ActionID.AlpineDraft); + +// /// +// /// +// /// +// public static IBLUAction ProteanWave { get; } = new BLUAction(ActionID.ProteanWave); + +// /// +// /// +// /// +// public static IBLUAction Northerlies { get; } = new BLUAction(ActionID.Northerlies); + +// /// +// /// +// /// +// public static IBLUAction Electrogenesis { get; } = new BLUAction(ActionID.Electrogenesis); + +// /// +// /// +// /// +// public static IBLUAction MagicHammer { get; } = new BLUAction(ActionID.MagicHammer, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBLUAction WhiteKnightsTour { get; } = new BLUAction(ActionID.WhiteKnightsTour); + +// /// +// /// +// /// +// public static IBLUAction BlackKnightsTour { get; } = new BLUAction(ActionID.BlackKnightsTour); + +// /// +// /// +// /// +// public static IBLUAction Surpanakha { get; } = new BLUAction(ActionID.Surpanakha); + +// /// +// /// +// /// +// public static IBLUAction Quasar { get; } = new BLUAction(ActionID.Quasar); + +// /// +// /// +// /// +// public static IBLUAction Tingle { get; } = new BLUAction(ActionID.Tingle) +// { +// StatusProvide = new StatusID[] { StatusID.Tingling }, +// }; + +// /// +// /// +// /// +// public static IBLUAction Tatamigaeshi { get; } = new BLUAction(ActionID.Tatamigaeshi); + +// /// +// /// +// /// +// public static IBLUAction SaintlyBeam { get; } = new BLUAction(ActionID.SaintlyBeam); + +// /// +// /// +// /// +// public static IBLUAction FeculentFlood { get; } = new BLUAction(ActionID.FeculentFlood); + +// /// +// /// +// /// +// public static IBLUAction Blaze { get; } = new BLUAction(ActionID.Blaze); + +// /// +// /// +// /// +// public static IBLUAction MustardBomb { get; } = new BLUAction(ActionID.MustardBomb); + +// /// +// /// +// /// +// public static IBLUAction AetherialSpark { get; } = new BLUAction(ActionID.AetherialSpark, ActionOption.Dot); + +// /// +// /// +// /// +// public static IBLUAction HydroPull { get; } = new BLUAction(ActionID.HydroPull); + +// /// +// /// +// /// +// public static IBLUAction MaledictionOfWater { get; } = new BLUAction(ActionID.MaledictionOfWater); + +// /// +// /// +// /// +// public static IBLUAction ChocoMeteor { get; } = new BLUAction(ActionID.ChocoMeteor); + +// /// +// /// +// /// +// public static IBLUAction NightBloom { get; } = new BLUAction(ActionID.Nightbloom); + +// /// +// /// +// /// +// public static IBLUAction DivineCataract { get; } = new BLUAction(ActionID.DivineCataract) +// { +// ActionCheck = (b, m) => Player.HasStatus(true, StatusID.AuspiciousTrance) +// }; + +// /// +// /// +// /// +// public static IBLUAction PhantomFlurry2 { get; } = new BLUAction(ActionID.PhantomFlurry_23289) +// { +// ActionCheck = (b, m) => Player.HasStatus(true, StatusID.PhantomFlurry) +// }; + +// /// +// /// +// /// +// public static IBLUAction PeatPelt { get; } = new BLUAction(ActionID.PeatPelt); + +// /// +// /// +// /// +// public static IBLUAction MortalFlame { get; } = new BLUAction(ActionID.MortalFlame, ActionOption.Dot); + +// /// +// /// +// /// +// public static IBLUAction SeaShanty { get; } = new BLUAction(ActionID.SeaShanty); + +// #endregion + +// #region Physical Single +// /// +// /// +// /// +// public static IBLUAction FinalSting { get; } = new BLUAction(ActionID.FinalSting) +// { +// ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BrushWithDeath), +// }; + +// /// +// /// +// /// +// public static IBLUAction SharpenedKnife { get; } = new BLUAction(ActionID.SharpenedKnife); + +// /// +// /// +// /// +// public static IBLUAction FlyingSardine { get; } = new BLUAction(ActionID.FlyingSardine) +// { +// FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), +// }; + +// /// +// /// +// /// +// public static IBLUAction AbyssalTransfixion { get; } = new BLUAction(ActionID.AbyssalTransfixion); + +// /// +// /// +// /// +// public static IBLUAction TripleTrident { get; } = new BLUAction(ActionID.TripleTrident); + +// /// +// /// +// /// +// public static IBLUAction RevengeBlast { get; } = new BLUAction(ActionID.RevengeBlast) +// { +// ActionCheck = (b, m) => b.GetHealthRatio() < 0.2f, +// }; + +// /// +// /// +// /// +// public static IBLUAction GoblinPunch { get; } = new BLUAction(ActionID.GoblinPunch); + +// #endregion + +// #region Physical Area +// /// +// /// +// /// +// public static IBLUAction FlyingFrenzy { get; } = new BLUAction(ActionID.FlyingFrenzy); + +// /// +// /// +// /// +// public static IBLUAction DrillCannons { get; } = new BLUAction(ActionID.DrillCannons); + +// /// +// /// +// /// +// public static IBLUAction Weight4Tonze { get; } = new BLUAction(ActionID._4TonzeWeight); + +// /// +// /// +// /// +// public static IBLUAction Needles1000 { get; } = new BLUAction(ActionID._1000Needles); + +// /// +// /// +// /// +// public static IBLUAction Kaltstrahl { get; } = new BLUAction(ActionID.Kaltstrahl); + +// /// +// /// +// /// +// public static IBLUAction JKick { get; } = new BLUAction(ActionID.JKick); + +// /// +// /// +// /// +// public static IBLUAction PeripheralSynthesis { get; } = new BLUAction(ActionID.PeripheralSynthesis); + +// /// +// /// +// /// +// public static IBLUAction BothEnds { get; } = new BLUAction(ActionID.BothEnds); + +// /// +// /// +// /// +// public static IBLUAction RightRound { get; } = new BLUAction(ActionID.RightRound); + +// /// +// /// +// /// +// public static IBLUAction WildRage { get; } = new BLUAction(ActionID.WildRage); + +// /// +// /// +// /// +// public static IBLUAction DeepClean { get; } = new BLUAction(ActionID.DeepClean); + +// /// +// /// +// /// +// public static IBLUAction RubyDynamics { get; } = new BLUAction(ActionID.RubyDynamics); + +// /// +// /// +// /// +// public static IBLUAction WingedReprobation { get; } = new BLUAction(ActionID.WingedReprobation); +// #endregion + +// #region Other Single +// /// +// /// +// /// +// public static IBLUAction StickyTongue { get; } = new BLUAction(ActionID.StickyTongue); + +// /// +// /// +// /// +// public static IBLUAction Missile { get; } = new BLUAction(ActionID.Missile); + +// /// +// /// +// /// +// public static IBLUAction TailScrew { get; } = new BLUAction(ActionID.TailScrew); + +// /// +// /// +// /// +// public static IBLUAction Doom { get; } = new BLUAction(ActionID.Doom); + +// /// +// /// +// /// +// public static IBLUAction EerieSoundwave { get; } = new BLUAction(ActionID.EerieSoundwave); + +// /// +// /// +// /// +// public static IBLUAction CondensedLibra { get; } = new BLUAction(ActionID.CondensedLibra); + +// /// +// /// +// /// +// public static IBLUAction Schiltron { get; } = new BLUAction(ActionID.Schiltron); +// #endregion + +// #region Other Area +// /// +// /// +// /// +// public static IBLUAction Level5Petrify { get; } = new BLUAction(ActionID.Level5Petrify); + +// /// +// /// +// /// +// public static IBLUAction AcornBomb { get; } = new BLUAction(ActionID.AcornBomb); + +// /// +// /// +// /// +// public static IBLUAction BombToss { get; } = new BLUAction(ActionID.BombToss); + +// /// +// /// +// /// +// public static IBLUAction SelfDestruct { get; } = new BLUAction(ActionID.Selfdestruct) +// { +// ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BrushWithDeath), +// }; + +// /// +// /// +// /// +// public static IBLUAction Faze { get; } = new BLUAction(ActionID.Faze); + +// /// +// /// +// /// +// public static IBLUAction Snort { get; } = new BLUAction(ActionID.Snort); + +// /// +// /// +// /// +// public static IBLUAction BadBreath { get; } = new BLUAction(ActionID.BadBreath, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBLUAction Chirp { get; } = new BLUAction(ActionID.Chirp); + +// /// +// /// +// /// +// public static IBLUAction FrogLegs { get; } = new BLUAction(ActionID.FrogLegs); + +// /// +// /// +// /// +// public static IBLUAction Level5Death { get; } = new BLUAction(ActionID.Level5Death); + +// /// +// /// +// /// +// public static IBLUAction Launcher { get; } = new BLUAction(ActionID.Launcher); + +// /// +// /// +// /// +// public static IBLUAction UltraVibration { get; } = new BLUAction(ActionID.Ultravibration); + +// /// +// /// +// /// +// public static IBLUAction PhantomFlurry { get; } = new BLUAction(ActionID.PhantomFlurry); + +// /// +// /// +// /// +// public static IBLUAction BreathOfMagic { get; } = new BLUAction(ActionID.BreathOfMagic); + +// /// +// /// +// /// +// public static IBLUAction DivinationRune { get; } = new BLUAction(ActionID.DivinationRune); + +// /// +// /// +// /// +// public static IBLUAction DimensionalShift { get; } = new BLUAction(ActionID.DimensionalShift); + +// /// +// /// +// /// +// public static IBLUAction ConvictionMarcato { get; } = new BLUAction(ActionID.ConvictionMarcato); + +// /// +// /// +// /// +// public static IBLUAction LaserEye { get; } = new BLUAction(ActionID.LaserEye); + +// /// +// /// +// /// +// public static IBLUAction CandyCane { get; } = new BLUAction(ActionID.CandyCane); + +// /// +// /// +// /// +// public static IBLUAction Apokalypsis { get; } = new BLUAction(ActionID.Apokalypsis); + +// /// +// /// +// /// +// public static IBLUAction BeingMortal { get; } = new BLUAction(ActionID.BeingMortal); +// #endregion + +// #region Defense +// /// +// /// +// /// +// public static IBLUAction IceSpikes { get; } = new BLUAction(ActionID.IceSpikes, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBLUAction VeilOfTheWhorl { get; } = new BLUAction(ActionID.VeilOfTheWhorl, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBLUAction Diamondback { get; } = new BLUAction(ActionID.Diamondback, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBLUAction Gobskin { get; } = new BLUAction(ActionID.Gobskin, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBLUAction Cactguard { get; } = new BLUAction(ActionID.Cactguard, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBLUAction ChelonianGate { get; } = new BLUAction(ActionID.ChelonianGate, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBLUAction DragonForce { get; } = new BLUAction(ActionID.DragonForce, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBLUAction ToadOil { get; } = new BLUAction(ActionID.ToadOil, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBLUAction Bristle { get; } = new BLUAction(ActionID.Bristle, ActionOption.Buff) +// { +// StatusProvide = new StatusID[] { StatusID.Boost, StatusID.Harmonized }, +// }; + +// /// +// /// +// /// +// public static IBLUAction OffGuard { get; } = new BLUAction(ActionID.Offguard, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBLUAction MightyGuard { get; } = new BLUAction(ActionID.MightyGuard, ActionOption.Buff) +// { +// StatusProvide = new StatusID[] +// { +// StatusID.MightyGuard, +// }, +// }; + +// /// +// /// +// /// +// public static IBLUAction MoonFlute { get; } = new BLUAction(ActionID.MoonFlute, ActionOption.Buff) +// { +// StatusProvide = new StatusID[] { StatusID.WaxingNocturne }, +// }; + +// /// +// /// +// /// +// public static IBLUAction PeculiarLight { get; } = new BLUAction(ActionID.PeculiarLight, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBLUAction Avail { get; } = new BLUAction(ActionID.Avail, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBLUAction Whistle { get; } = new BLUAction(ActionID.Whistle, ActionOption.Buff) +// { +// StatusProvide = new StatusID[] { StatusID.Boost, StatusID.Harmonized }, +// }; + +// /// +// /// +// /// +// public static IBLUAction ColdFog { get; } = new BLUAction(ActionID.ColdFog, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBLUAction ForceField { get; } = new BLUAction(ActionID.ForceField, ActionOption.Buff); +// #endregion + +// #region Heal +// /// +// /// +// /// +// public static IBLUAction WhiteWind { get; } = new BLUAction(ActionID.WhiteWind, ActionOption.Heal) +// { +// ActionCheck = (b, m) => Player.GetHealthRatio() is > 0.3f and < 0.5f, +// }; + +// /// +// /// +// /// +// public static IBLUAction Stotram { get; } = new BLUAction(ActionID.Stotram, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction PomCure { get; } = new BLUAction(ActionID.PomCure, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction AngelWhisper { get; } = new BLUAction(ActionID.AngelWhisper, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction Exuviation { get; } = new BLUAction(ActionID.Exuviation, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction AngelsSnack { get; } = new BLUAction(ActionID.AngelsSnack, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBLUAction Rehydration { get; } = new BLUAction(ActionID.Rehydration, ActionOption.Heal); +// #endregion + +// #region Others +// /// +// /// +// /// +// private static IBLUAction Loom { get; } = new BLUAction(ActionID.Loom, ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBLUAction BasicInstinct { get; } = new BLUAction(ActionID.BasicInstinct) +// { +// StatusProvide = new StatusID[] { StatusID.BasicInstinct }, +// ActionCheck = (b, m) => Svc.Condition[Dalamud.Game.ClientState.Conditions.ConditionFlag.BoundByDuty56] && DataCenter.PartyMembers.Count(p => p.GetHealthRatio() > 0) == 1, +// }; + +// static IBaseAction AethericMimicry { get; } = new BaseAction(ActionID.AethericMimicry, ActionOption.Friendly) +// { +// ChoiceTarget = (charas, mustUse) => +// { +// switch (BlueId) +// { +// case BLUID.DPS: +// if (!Player.HasStatus(true, StatusID.AethericMimicryDps)) +// { +// return charas.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical).FirstOrDefault(); +// } +// break; + +// case BLUID.Tank: +// if (!Player.HasStatus(true, StatusID.AethericMimicryTank)) +// { +// return charas.GetJobCategory(JobRole.Tank).FirstOrDefault(); +// } +// break; + +// case BLUID.Healer: +// if (!Player.HasStatus(true, StatusID.AethericMimicryHealer)) +// { +// return charas.GetJobCategory(JobRole.Healer).FirstOrDefault(); +// } +// break; +// } +// return null; +// }, +// }; + +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait Learning { get; } = new BaseTrait(219); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(220); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(221); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend3 { get; } = new BaseTrait(222); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend4 { get; } = new BaseTrait(223); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend5 { get; } = new BaseTrait(224); +// #endregion + +// /// +// /// +// /// +// /// +// /// +// protected sealed override bool MoveForwardGCD(out IAction act) +// { +// if (JKick.CanUse(out act, CanUseOption.MustUse)) return true; +// if (Loom.CanUse(out act)) return true; +// return base.MoveForwardGCD(out act); +// } + +// /// +// /// +// /// +// /// +// /// +// protected override bool EmergencyGCD(out IAction act) +// { +// if (AethericMimicry.CanUse(out act)) return true; +// if (BlueId == BLUID.Healer) +// { +// //Esuna +// if (DataCenter.IsEsunaStanceNorth && DataCenter.WeakenPeople.Any() || DataCenter.DyingPeople.Any()) +// { +// if (Exuviation.CanUse(out act, CanUseOption.MustUse)) return true; +// } +// } +// if (BasicInstinct.CanUse(out _)) +// { +// if (MightyGuard.CanUse(out act)) return true; +// act = BasicInstinct; +// return true; +// } + +// return base.EmergencyGCD(out act); +// } + +// /// +// /// All these actions are on slots. +// /// +// /// +// /// +// protected static bool AllOnSlot(params IBLUAction[] actions) => actions.All(a => a.OnSlot); + +// /// +// /// How many actions are on slots. +// /// +// /// +// /// +// protected static uint OnSlotCount(params IBLUAction[] actions) => (uint)actions.Count(a => a.OnSlot); + +// /// +// /// All base actions. +// /// +// public override IBaseAction[] AllBaseActions => base.AllBaseActions +// .Where(a => a is not IBLUAction b || b.OnSlot).ToArray(); + +// /// +// /// Configurations. +// /// +// /// +// protected override IRotationConfigSet CreateConfiguration() +// { +// return base.CreateConfiguration() +// .SetCombo(CombatType.PvE, "BlueId", 2, "Role", "Tank", "Healer", "DPS") +// .SetCombo(CombatType.PvE, "AttackType", 2, "Type", "Both", "Magic", "Physic"); +// } + +// /// +// /// +// /// +// protected override void UpdateInfo() +// { +// BlueId = (BLUID)Configs.GetCombo("BlueId"); +// BluAttackType = (BLUAttackType)Configs.GetCombo("AttackType"); +// base.UpdateInfo(); +// } + +// /// +// /// +// /// +// /// +// /// +// protected override bool HealSingleGCD(out IAction act) +// { +// if (BlueId == BLUID.Healer) +// { +// if (PomCure.CanUse(out act)) return true; +// } +// if (WhiteWind.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.HealSingleGCD(out act); +// } + +// /// +// /// +// /// +// /// +// /// +// protected override bool HealAreaGCD(out IAction act) +// { +// if (BlueId == BLUID.Healer) +// { +// if (AngelsSnack.CanUse(out act)) return true; +// if (Stotram.CanUse(out act)) return true; +// } + +// if (WhiteWind.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.HealAreaGCD(out act); +// } + +// /// +// /// +// /// +// public override void DisplayStatus() +// { +// ImGui.TextWrapped(BlueId.ToString()); +// base.DisplayStatus(); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/BRD_Base.cs b/RotationSolver.Basic/Rotations/Basic/BRD_Base.cs index f9b8c72b2..8ca6c7b7e 100644 --- a/RotationSolver.Basic/Rotations/Basic/BRD_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/BRD_Base.cs @@ -1,387 +1,387 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of Bard. -/// -public abstract class BRD_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Dexterity; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.BRD, Job.ARC }; - - #region Job Gauge - static BRDGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Repertoire => JobGauge.Repertoire; - - /// - /// - /// - protected static Song Song => JobGauge.Song; - - /// - /// - /// - protected static Song LastSong => JobGauge.LastSong; - - /// - /// - /// - public static byte SoulVoice => JobGauge.SoulVoice; - static float SongTimeRaw => JobGauge.SongTimer / 1000f; - - /// - /// - /// - public static float SongTime => SongTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool SongEndAfter(float time) => SongTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool SongEndAfterGCD(uint gctCount = 0, float offset = 0) - => SongEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack Single - /// - /// - /// - public static IBaseAction HeavyShoot { get; } = new BaseAction(ActionID.HeavyShot) - { - StatusProvide = [StatusID.StraightShotReady] - }; - - /// - /// - /// - public static IBaseAction StraitShoot { get; } = new BaseAction(ActionID.StraightShot) - { - StatusNeed = new[] { StatusID.StraightShotReady } - }; - - /// - /// - /// - public static IBaseAction VenomousBite { get; } = new BaseAction(ActionID.VenomousBite, ActionOption.Dot) - { - TargetStatus = new[] { StatusID.VenomousBite, StatusID.CausticBite }, - }; - - /// - /// - /// - public static IBaseAction WindBite { get; } = new BaseAction(ActionID.Windbite, ActionOption.Dot) - { - TargetStatus = new[] { StatusID.Windbite, StatusID.Stormbite }, - }; - - /// - /// - /// - public static IBaseAction IronJaws { get; } = new BaseAction(ActionID.IronJaws, ActionOption.Dot) - { - TargetStatus = VenomousBite.TargetStatus.Union(WindBite.TargetStatus).ToArray(), - ActionCheck = (b, m) => b.HasStatus(true, VenomousBite.TargetStatus) & b.HasStatus(true, WindBite.TargetStatus), - }; - - /// - /// - /// - public static IBaseAction EmpyrealArrow { get; } = new BaseAction(ActionID.EmpyrealArrow); - - /// - /// - /// - public static IBaseAction PitchPerfect { get; } = new BaseAction(ActionID.PitchPerfect) - { - ActionCheck = (b, m) => Song == Song.WANDERER && Repertoire > 0, - }; - - /// - /// - /// - public static IBaseAction Bloodletter { get; } = new BaseAction(ActionID.Bloodletter); - - /// - /// - /// - public static IBaseAction Sidewinder { get; } = new BaseAction(ActionID.Sidewinder); - #endregion - - #region Attack Area - /// - /// - /// - public static IBaseAction QuickNock { get; } = new BaseAction(ActionID.QuickNock) - { - StatusProvide = [StatusID.ShadowbiteReady], - }; - - /// - /// - /// - public static IBaseAction ShadowBite { get; } = new BaseAction(ActionID.Shadowbite) - { - StatusNeed = [StatusID.ShadowbiteReady], - }; - - /// - /// - /// - public static IBaseAction ApexArrow { get; } = new BaseAction(ActionID.ApexArrow, ActionOption.UseResources) - { - ActionCheck = (b, m) => SoulVoice >= 20 && !Player.HasStatus(true, StatusID.BlastArrowReady), - }; - - /// - /// - /// - public static IBaseAction BlastArrow { get; } = new BaseAction(ActionID.BlastArrow) - { - ActionCheck = (b, m) => Player.HasStatus(true, StatusID.BlastArrowReady), - }; - - /// - /// - /// - public static IBaseAction RainOfDeath { get; } = new BaseAction(ActionID.RainOfDeath); - #endregion - - #region Support - /// - /// - /// - public static IBaseAction BattleVoice { get; } = new BaseAction(ActionID.BattleVoice, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction RadiantFinale { get; } = new BaseAction(ActionID.RadiantFinale, ActionOption.Buff) - { - ActionCheck = (b, m) => JobGauge.Coda.Any(s => s != Song.NONE) - && IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Barrage { get; } = new BaseAction(ActionID.Barrage); - - /// - /// - /// - public static IBaseAction RagingStrikes { get; } = new BaseAction(ActionID.RagingStrikes) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction WanderersMinuet { get; } = new BaseAction(ActionID.TheWanderersMinuet); - - /// - /// - /// - public static IBaseAction MagesBallad { get; } = new BaseAction(ActionID.MagesBallad); - - /// - /// - /// - public static IBaseAction ArmysPaeon { get; } = new BaseAction(ActionID.ArmysPaeon); - #endregion - - #region Heal Defense - /// - /// - /// - public static IBaseAction WardensPaean { get; } = new BaseAction(ActionID.TheWardensPaean, ActionOption.Heal) - { - ChoiceTarget = (tars, mustUse) => - { - if (DyingPeople.Any()) - { - return DyingPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); - } - else if (WeakenPeople.Any()) - { - return WeakenPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); - } - return null; - }, - }; - - /// - /// - /// - public static IBaseAction NaturesMinne { get; } = new BaseAction(ActionID.NaturesMinne, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Troubadour { get; } = new BaseAction(ActionID.Troubadour, ActionOption.Defense) - { - ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, - StatusID.Tactician_1951, StatusID.Tactician_2177, StatusID.ShieldSamba), - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait HeavierShot { get; } = new BaseTrait(17); - - /// - /// - /// - public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(18); - - /// - /// - /// - public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(20); - - /// - /// - /// - public static IBaseTrait BiteMastery { get; } = new BaseTrait(168); - - /// - /// - /// - public static IBaseTrait EnhancedEmpyrealArrow { get; } = new BaseTrait(169); - - /// - /// - /// - public static IBaseTrait StraightShotMastery { get; } = new BaseTrait(282); - - /// - /// - /// - public static IBaseTrait EnhancedQuickNock { get; } = new BaseTrait(283); - - /// - /// - /// - public static IBaseTrait BiteMastery2 { get; } = new BaseTrait(284); - - /// - /// - /// - public static IBaseTrait HeavyShotMastery { get; } = new BaseTrait(285); - - /// - /// - /// - public static IBaseTrait EnhancedArmysPaeon { get; } = new BaseTrait(286); - - /// - /// - /// - public static IBaseTrait SoulVoiceTraits { get; } = new BaseTrait(287); - - /// - /// - /// - public static IBaseTrait QuickNockMastery { get; } = new BaseTrait(444); - - /// - /// - /// - public static IBaseTrait EnhancedBloodletter { get; } = new BaseTrait(445); - - /// - /// - /// - public static IBaseTrait EnhancedApexArrow { get; } = new BaseTrait(446); - - /// - /// - /// - public static IBaseTrait EnhancedTroubadour { get; } = new BaseTrait(447); - - /// - /// - /// - public static IBaseTrait MinstrelsCoda { get; } = new BaseTrait(448); - - #endregion - - private protected override IBaseAction LimitBreak => SagittariusArrow; - - /// - /// LB - /// - public static IBaseAction SagittariusArrow { get; } = new BaseAction(ActionID.SagittariusArrow) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - /// - protected override bool EmergencyAbility(IAction nextGCD, out IAction act) - { - //Esuna - if (DataCenter.IsEsunaStanceNorth && DataCenter.WeakenPeople.Any() || DataCenter.DyingPeople.Any()) - { - if (WardensPaean.CanUse(out act, CanUseOption.MustUse)) return true; - } - return base.EmergencyAbility(nextGCD, out act); - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Troubadour)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Troubadour.CanUse(out act)) return true; - return false; - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.NaturesMinne)] - protected sealed override bool HealSingleAbility(out IAction act) - { - if (NaturesMinne.CanUse(out act)) return true; - return base.HealSingleAbility(out act); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of Bard. +///// +//public abstract class BRD_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Dexterity; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.BRD, Job.ARC }; + +// #region Job Gauge +// static BRDGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Repertoire => JobGauge.Repertoire; + +// /// +// /// +// /// +// protected static Song Song => JobGauge.Song; + +// /// +// /// +// /// +// protected static Song LastSong => JobGauge.LastSong; + +// /// +// /// +// /// +// public static byte SoulVoice => JobGauge.SoulVoice; +// static float SongTimeRaw => JobGauge.SongTimer / 1000f; + +// /// +// /// +// /// +// public static float SongTime => SongTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool SongEndAfter(float time) => SongTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool SongEndAfterGCD(uint gctCount = 0, float offset = 0) +// => SongEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack Single +// /// +// /// +// /// +// public static IBaseAction HeavyShoot { get; } = new BaseAction(ActionID.HeavyShot) +// { +// StatusProvide = [StatusID.StraightShotReady] +// }; + +// /// +// /// +// /// +// public static IBaseAction StraitShoot { get; } = new BaseAction(ActionID.StraightShot) +// { +// StatusNeed = new[] { StatusID.StraightShotReady } +// }; + +// /// +// /// +// /// +// public static IBaseAction VenomousBite { get; } = new BaseAction(ActionID.VenomousBite, ActionOption.Dot) +// { +// TargetStatus = new[] { StatusID.VenomousBite, StatusID.CausticBite }, +// }; + +// /// +// /// +// /// +// public static IBaseAction WindBite { get; } = new BaseAction(ActionID.Windbite, ActionOption.Dot) +// { +// TargetStatus = new[] { StatusID.Windbite, StatusID.Stormbite }, +// }; + +// /// +// /// +// /// +// public static IBaseAction IronJaws { get; } = new BaseAction(ActionID.IronJaws, ActionOption.Dot) +// { +// TargetStatus = VenomousBite.TargetStatus.Union(WindBite.TargetStatus).ToArray(), +// ActionCheck = (b, m) => b.HasStatus(true, VenomousBite.TargetStatus) & b.HasStatus(true, WindBite.TargetStatus), +// }; + +// /// +// /// +// /// +// public static IBaseAction EmpyrealArrow { get; } = new BaseAction(ActionID.EmpyrealArrow); + +// /// +// /// +// /// +// public static IBaseAction PitchPerfect { get; } = new BaseAction(ActionID.PitchPerfect) +// { +// ActionCheck = (b, m) => Song == Song.WANDERER && Repertoire > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Bloodletter { get; } = new BaseAction(ActionID.Bloodletter); + +// /// +// /// +// /// +// public static IBaseAction Sidewinder { get; } = new BaseAction(ActionID.Sidewinder); +// #endregion + +// #region Attack Area +// /// +// /// +// /// +// public static IBaseAction QuickNock { get; } = new BaseAction(ActionID.QuickNock) +// { +// StatusProvide = [StatusID.ShadowbiteReady], +// }; + +// /// +// /// +// /// +// public static IBaseAction ShadowBite { get; } = new BaseAction(ActionID.Shadowbite) +// { +// StatusNeed = [StatusID.ShadowbiteReady], +// }; + +// /// +// /// +// /// +// public static IBaseAction ApexArrow { get; } = new BaseAction(ActionID.ApexArrow, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => SoulVoice >= 20 && !Player.HasStatus(true, StatusID.BlastArrowReady), +// }; + +// /// +// /// +// /// +// public static IBaseAction BlastArrow { get; } = new BaseAction(ActionID.BlastArrow) +// { +// ActionCheck = (b, m) => Player.HasStatus(true, StatusID.BlastArrowReady), +// }; + +// /// +// /// +// /// +// public static IBaseAction RainOfDeath { get; } = new BaseAction(ActionID.RainOfDeath); +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction BattleVoice { get; } = new BaseAction(ActionID.BattleVoice, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction RadiantFinale { get; } = new BaseAction(ActionID.RadiantFinale, ActionOption.Buff) +// { +// ActionCheck = (b, m) => JobGauge.Coda.Any(s => s != Song.NONE) +// && IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction Barrage { get; } = new BaseAction(ActionID.Barrage); + +// /// +// /// +// /// +// public static IBaseAction RagingStrikes { get; } = new BaseAction(ActionID.RagingStrikes) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction WanderersMinuet { get; } = new BaseAction(ActionID.TheWanderersMinuet); + +// /// +// /// +// /// +// public static IBaseAction MagesBallad { get; } = new BaseAction(ActionID.MagesBallad); + +// /// +// /// +// /// +// public static IBaseAction ArmysPaeon { get; } = new BaseAction(ActionID.ArmysPaeon); +// #endregion + +// #region Heal Defense +// /// +// /// +// /// +// public static IBaseAction WardensPaean { get; } = new BaseAction(ActionID.TheWardensPaean, ActionOption.Heal) +// { +// ChoiceTarget = (tars, mustUse) => +// { +// if (DyingPeople.Any()) +// { +// return DyingPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); +// } +// else if (WeakenPeople.Any()) +// { +// return WeakenPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); +// } +// return null; +// }, +// }; + +// /// +// /// +// /// +// public static IBaseAction NaturesMinne { get; } = new BaseAction(ActionID.NaturesMinne, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Troubadour { get; } = new BaseAction(ActionID.Troubadour, ActionOption.Defense) +// { +// ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, +// StatusID.Tactician_1951, StatusID.Tactician_2177, StatusID.ShieldSamba), +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait HeavierShot { get; } = new BaseTrait(17); + +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(18); + +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(20); + +// /// +// /// +// /// +// public static IBaseTrait BiteMastery { get; } = new BaseTrait(168); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEmpyrealArrow { get; } = new BaseTrait(169); + +// /// +// /// +// /// +// public static IBaseTrait StraightShotMastery { get; } = new BaseTrait(282); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedQuickNock { get; } = new BaseTrait(283); + +// /// +// /// +// /// +// public static IBaseTrait BiteMastery2 { get; } = new BaseTrait(284); + +// /// +// /// +// /// +// public static IBaseTrait HeavyShotMastery { get; } = new BaseTrait(285); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedArmysPaeon { get; } = new BaseTrait(286); + +// /// +// /// +// /// +// public static IBaseTrait SoulVoiceTraits { get; } = new BaseTrait(287); + +// /// +// /// +// /// +// public static IBaseTrait QuickNockMastery { get; } = new BaseTrait(444); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedBloodletter { get; } = new BaseTrait(445); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedApexArrow { get; } = new BaseTrait(446); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedTroubadour { get; } = new BaseTrait(447); + +// /// +// /// +// /// +// public static IBaseTrait MinstrelsCoda { get; } = new BaseTrait(448); + +// #endregion + +// private protected override IBaseAction LimitBreak => SagittariusArrow; + +// /// +// /// LB +// /// +// public static IBaseAction SagittariusArrow { get; } = new BaseAction(ActionID.SagittariusArrow) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected override bool EmergencyAbility(IAction nextGCD, out IAction act) +// { +// //Esuna +// if (DataCenter.IsEsunaStanceNorth && DataCenter.WeakenPeople.Any() || DataCenter.DyingPeople.Any()) +// { +// if (WardensPaean.CanUse(out act, CanUseOption.MustUse)) return true; +// } +// return base.EmergencyAbility(nextGCD, out act); +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Troubadour)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Troubadour.CanUse(out act)) return true; +// return false; +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.NaturesMinne)] +// protected sealed override bool HealSingleAbility(out IAction act) +// { +// if (NaturesMinne.CanUse(out act)) return true; +// return base.HealSingleAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/DNC_Base.cs b/RotationSolver.Basic/Rotations/Basic/DNC_Base.cs index 43e4fa78d..d8bab82b9 100644 --- a/RotationSolver.Basic/Rotations/Basic/DNC_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/DNC_Base.cs @@ -1,468 +1,468 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of Dancer. -/// -public abstract class DNC_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Dexterity; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.DNC }; - - #region Job Gauge - static DNCGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static bool IsDancing => JobGauge.IsDancing; - - /// - /// - /// - public static byte Esprit => JobGauge.Esprit; - - /// - /// - /// - public static byte Feathers => JobGauge.Feathers; - - /// - /// - /// - public static byte CompletedSteps => JobGauge.CompletedSteps; - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction Cascade { get; } = new BaseAction(ActionID.Cascade) - { - StatusProvide = new[] { StatusID.SilkenSymmetry } - }; - - /// - /// 2 - /// - public static IBaseAction Fountain { get; } = new BaseAction(ActionID.Fountain) - { - StatusProvide = new[] { StatusID.SilkenFlow } - }; - - /// - /// 3 - /// - public static IBaseAction ReverseCascade { get; } = new BaseAction(ActionID.ReverseCascade) - { - StatusNeed = new[] { StatusID.SilkenSymmetry, StatusID.FlourishingSymmetry }, - }; - - /// - /// 4 - /// - public static IBaseAction FountainFall { get; } = new BaseAction(ActionID.Fountainfall) - { - StatusNeed = new[] { StatusID.SilkenFlow, StatusID.FlourishingFlow } - }; - - /// - /// - /// - public static IBaseAction FanDance { get; } = new BaseAction(ActionID.FanDance, ActionOption.UseResources) - { - ActionCheck = (b, m) => Feathers > 0, - StatusProvide = new[] { StatusID.ThreefoldFanDance }, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction Windmill { get; } = new BaseAction(ActionID.Windmill) - { - StatusProvide = Cascade.StatusProvide, - }; - - /// - /// 2 - /// - public static IBaseAction BladeShower { get; } = new BaseAction(ActionID.Bladeshower) - { - StatusProvide = Fountain.StatusProvide, - }; - - /// - /// 3 - /// - public static IBaseAction RisingWindmill { get; } = new BaseAction(ActionID.RisingWindmill) - { - StatusNeed = ReverseCascade.StatusNeed, - }; - - /// - /// 4 - /// - public static IBaseAction BloodShower { get; } = new BaseAction(ActionID.Bloodshower) - { - StatusNeed = FountainFall.StatusNeed, - }; - - /// - /// - /// - public static IBaseAction FanDance2 { get; } = new BaseAction(ActionID.FanDanceIi, ActionOption.UseResources) - { - ActionCheck = (b, m) => Feathers > 0, - StatusProvide = new[] { StatusID.ThreefoldFanDance }, - }; - - /// - /// - /// - public static IBaseAction FanDance3 { get; } = new BaseAction(ActionID.FanDanceIii) - { - StatusNeed = FanDance2.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction FanDance4 { get; } = new BaseAction(ActionID.FanDanceIv) - { - StatusNeed = new[] { StatusID.FourfoldFanDance }, - }; - - /// - /// - /// - public static IBaseAction SaberDance { get; } = new BaseAction(ActionID.SaberDance, ActionOption.UseResources) - { - ActionCheck = (b, m) => Esprit >= 50, - }; - - /// - /// - /// - public static IBaseAction StarFallDance { get; } = new BaseAction(ActionID.StarfallDance) - { - StatusNeed = new[] { StatusID.FlourishingStarfall }, - }; - - /// - /// - /// - public static IBaseAction Tillana { get; } = new BaseAction(ActionID.Tillana) - { - StatusNeed = new[] { StatusID.FlourishingFinish }, - }; - #endregion - - #region Support - /// - /// - /// - public static IBaseAction EnAvant { get; } = new BaseAction(ActionID.EnAvant, ActionOption.Friendly | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction ShieldSamba { get; } = new BaseAction(ActionID.ShieldSamba, ActionOption.Defense) - { - ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, - StatusID.Tactician_1951, - StatusID.Tactician_2177, - StatusID.ShieldSamba), - }; - - /// - /// - /// - public static IBaseAction CuringWaltz { get; } = new BaseAction(ActionID.CuringWaltz, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Improvisation { get; } = new BaseAction(ActionID.Improvisation, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction ClosedPosition { get; } = new BaseAction(ActionID.ClosedPosition, ActionOption.Buff) - { - ChoiceTarget = (Targets, mustUse) => - { - Targets = Targets.Where(b => b.ObjectId != Player.ObjectId && b.CurrentHp != 0 && - //Remove Weak - !b.HasStatus(false, StatusID.Weakness, StatusID.BrinkOfDeath) - //Remove other partner. - && (!b.HasStatus(false, StatusID.ClosedPosition_2026) || b.HasStatus(true, StatusID.ClosedPosition_2026))); - - return Targets.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical).FirstOrDefault(); - }, - }; - - /// - /// - /// - public static IBaseAction Devilment { get; } = new BaseAction(ActionID.Devilment) - { - ActionCheck = (b, m) => IsLongerThan(10) - }; - - /// - /// - /// - public static IBaseAction Flourish { get; } = new BaseAction(ActionID.Flourish) - { - StatusNeed = new[] { StatusID.StandardFinish }, - StatusProvide = new[] - { - StatusID.ThreefoldFanDance, - StatusID.FourfoldFanDance, - }, - ActionCheck = (b, m) => InCombat, - }; - #endregion - - #region Step - /// - /// - /// - public static IBaseAction StandardStep { get; } = new BaseAction(ActionID.StandardStep) - { - StatusProvide = new[] - { - StatusID.StandardStep, - StatusID.TechnicalStep, - }, - }; - - /// - /// - /// - public static IBaseAction TechnicalStep { get; } = new BaseAction(ActionID.TechnicalStep) - { - StatusNeed = new[] - { - StatusID.StandardFinish, - }, - StatusProvide = StandardStep.StatusProvide, - ActionCheck = (b, m) => IsLongerThan(20), - }; - - /// - /// - /// - protected static IBaseAction StandardFinish { get; } = new BaseAction(ActionID.DoubleStandardFinish) - { - StatusNeed = new[] { StatusID.StandardStep }, - ActionCheck = (b, m) => IsDancing && CompletedSteps == 2 && Service.GetAdjustedActionId(ActionID.StandardStep) == ActionID.DoubleStandardFinish, - }; - - /// - /// - /// - protected static IBaseAction TechnicalFinish { get; } = new BaseAction(ActionID.QuadrupleTechnicalFinish) - { - StatusNeed = new[] { StatusID.TechnicalStep }, - ActionCheck = (b, m) => IsDancing && CompletedSteps == 4 && Service.GetAdjustedActionId(ActionID.TechnicalStep) == ActionID.QuadrupleTechnicalFinish, - }; - - private static IBaseAction Emboite { get; } = new BaseAction(ActionID.Emboite) - { - ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Emboite, - }; - - private static IBaseAction Entrechat { get; } = new BaseAction(ActionID.Entrechat) - { - ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Entrechat, - }; - - private static IBaseAction Jete { get; } = new BaseAction(ActionID.Jete) - { - ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Jete, - }; - - private static IBaseAction Pirouette { get; } = new BaseAction(ActionID.Pirouette) - { - ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Pirouette, - }; - - /// - /// Finish the dance. - /// - /// - /// Finish the dance as soon as possible - /// - protected static bool DanceFinishGCD(out IAction act, bool finishNow = false) - { - if (Player.HasStatus(true, StatusID.StandardStep) && CompletedSteps == 2) - { - if (StandardFinish.CanUse(out act, CanUseOption.MustUse)) - { - return true; - } - if (Player.WillStatusEnd(1, true, StatusID.StandardStep, StatusID.StandardFinish) || finishNow) - { - act = StandardStep; - return true; - } - return false; - } - - if (Player.HasStatus(true, StatusID.TechnicalStep) && CompletedSteps == 4) - { - if (TechnicalFinish.CanUse(out act, CanUseOption.MustUse)) - { - return true; - } - if (Player.WillStatusEnd(1, true, StatusID.TechnicalStep) || finishNow) - { - act = TechnicalStep; - return true; - } - return false; - } - - act = null; - return false; - } - - /// - /// Do the dancing steps. - /// - /// - /// - protected static bool ExecuteStepGCD(out IAction act) - { - if (!IsDancing) - { - act = null; - return false; - } - - if (Emboite.CanUse(out act)) return true; - if (Entrechat.CanUse(out act)) return true; - if (Jete.CanUse(out act)) return true; - if (Pirouette.CanUse(out act)) return true; - return false; - } - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(251); - - /// - /// - /// - public static IBaseTrait FourfoldFantasy { get; } = new BaseTrait(252); - - /// - /// - /// - public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(253); - - /// - /// - /// - public static IBaseTrait EnhancedEnAvant { get; } = new BaseTrait(254); - - /// - /// - /// - public static IBaseTrait EspritTrait { get; } = new BaseTrait(255); - - /// - /// - /// - public static IBaseTrait EnhancedEnAvant2 { get; } = new BaseTrait(256); - - /// - /// - /// - public static IBaseTrait EnhancedTechnicalFinish { get; } = new BaseTrait(453); - - /// - /// - /// - public static IBaseTrait EnhancedEsprit { get; } = new BaseTrait(454); - - /// - /// - /// - public static IBaseTrait EnhancedFlourish { get; } = new BaseTrait(455); - - /// - /// - /// - public static IBaseTrait EnhancedShieldSamba { get; } = new BaseTrait(456); - - /// - /// - /// - public static IBaseTrait EnhancedDevilment { get; } = new BaseTrait(457); - - #endregion - - private protected override IBaseAction LimitBreak => CrimsonLotus; - - /// - /// LB - /// - public static IBaseAction CrimsonLotus { get; } = new BaseAction(ActionID.CrimsonLotus) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.EnAvant)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (EnAvant.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; - return false; - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.CuringWaltz, ActionID.Improvisation)] - protected sealed override bool HealAreaAbility(out IAction act) - { - if (CuringWaltz.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; - if (Improvisation.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; - return false; - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.ShieldSamba)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (ShieldSamba.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; - return false; - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of Dancer. +///// +//public abstract class DNC_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Dexterity; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.DNC }; + +// #region Job Gauge +// static DNCGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static bool IsDancing => JobGauge.IsDancing; + +// /// +// /// +// /// +// public static byte Esprit => JobGauge.Esprit; + +// /// +// /// +// /// +// public static byte Feathers => JobGauge.Feathers; + +// /// +// /// +// /// +// public static byte CompletedSteps => JobGauge.CompletedSteps; +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction Cascade { get; } = new BaseAction(ActionID.Cascade) +// { +// StatusProvide = new[] { StatusID.SilkenSymmetry } +// }; + +// /// +// /// 2 +// /// +// public static IBaseAction Fountain { get; } = new BaseAction(ActionID.Fountain) +// { +// StatusProvide = new[] { StatusID.SilkenFlow } +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction ReverseCascade { get; } = new BaseAction(ActionID.ReverseCascade) +// { +// StatusNeed = new[] { StatusID.SilkenSymmetry, StatusID.FlourishingSymmetry }, +// }; + +// /// +// /// 4 +// /// +// public static IBaseAction FountainFall { get; } = new BaseAction(ActionID.Fountainfall) +// { +// StatusNeed = new[] { StatusID.SilkenFlow, StatusID.FlourishingFlow } +// }; + +// /// +// /// +// /// +// public static IBaseAction FanDance { get; } = new BaseAction(ActionID.FanDance, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Feathers > 0, +// StatusProvide = new[] { StatusID.ThreefoldFanDance }, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction Windmill { get; } = new BaseAction(ActionID.Windmill) +// { +// StatusProvide = Cascade.StatusProvide, +// }; + +// /// +// /// 2 +// /// +// public static IBaseAction BladeShower { get; } = new BaseAction(ActionID.Bladeshower) +// { +// StatusProvide = Fountain.StatusProvide, +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction RisingWindmill { get; } = new BaseAction(ActionID.RisingWindmill) +// { +// StatusNeed = ReverseCascade.StatusNeed, +// }; + +// /// +// /// 4 +// /// +// public static IBaseAction BloodShower { get; } = new BaseAction(ActionID.Bloodshower) +// { +// StatusNeed = FountainFall.StatusNeed, +// }; + +// /// +// /// +// /// +// public static IBaseAction FanDance2 { get; } = new BaseAction(ActionID.FanDanceIi, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Feathers > 0, +// StatusProvide = new[] { StatusID.ThreefoldFanDance }, +// }; + +// /// +// /// +// /// +// public static IBaseAction FanDance3 { get; } = new BaseAction(ActionID.FanDanceIii) +// { +// StatusNeed = FanDance2.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction FanDance4 { get; } = new BaseAction(ActionID.FanDanceIv) +// { +// StatusNeed = new[] { StatusID.FourfoldFanDance }, +// }; + +// /// +// /// +// /// +// public static IBaseAction SaberDance { get; } = new BaseAction(ActionID.SaberDance, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Esprit >= 50, +// }; + +// /// +// /// +// /// +// public static IBaseAction StarFallDance { get; } = new BaseAction(ActionID.StarfallDance) +// { +// StatusNeed = new[] { StatusID.FlourishingStarfall }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Tillana { get; } = new BaseAction(ActionID.Tillana) +// { +// StatusNeed = new[] { StatusID.FlourishingFinish }, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction EnAvant { get; } = new BaseAction(ActionID.EnAvant, ActionOption.Friendly | ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBaseAction ShieldSamba { get; } = new BaseAction(ActionID.ShieldSamba, ActionOption.Defense) +// { +// ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, +// StatusID.Tactician_1951, +// StatusID.Tactician_2177, +// StatusID.ShieldSamba), +// }; + +// /// +// /// +// /// +// public static IBaseAction CuringWaltz { get; } = new BaseAction(ActionID.CuringWaltz, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Improvisation { get; } = new BaseAction(ActionID.Improvisation, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction ClosedPosition { get; } = new BaseAction(ActionID.ClosedPosition, ActionOption.Buff) +// { +// ChoiceTarget = (Targets, mustUse) => +// { +// Targets = Targets.Where(b => b.ObjectId != Player.ObjectId && b.CurrentHp != 0 && +// //Remove Weak +// !b.HasStatus(false, StatusID.Weakness, StatusID.BrinkOfDeath) +// //Remove other partner. +// && (!b.HasStatus(false, StatusID.ClosedPosition_2026) || b.HasStatus(true, StatusID.ClosedPosition_2026))); + +// return Targets.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical).FirstOrDefault(); +// }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Devilment { get; } = new BaseAction(ActionID.Devilment) +// { +// ActionCheck = (b, m) => IsLongerThan(10) +// }; + +// /// +// /// +// /// +// public static IBaseAction Flourish { get; } = new BaseAction(ActionID.Flourish) +// { +// StatusNeed = new[] { StatusID.StandardFinish }, +// StatusProvide = new[] +// { +// StatusID.ThreefoldFanDance, +// StatusID.FourfoldFanDance, +// }, +// ActionCheck = (b, m) => InCombat, +// }; +// #endregion + +// #region Step +// /// +// /// +// /// +// public static IBaseAction StandardStep { get; } = new BaseAction(ActionID.StandardStep) +// { +// StatusProvide = new[] +// { +// StatusID.StandardStep, +// StatusID.TechnicalStep, +// }, +// }; + +// /// +// /// +// /// +// public static IBaseAction TechnicalStep { get; } = new BaseAction(ActionID.TechnicalStep) +// { +// StatusNeed = new[] +// { +// StatusID.StandardFinish, +// }, +// StatusProvide = StandardStep.StatusProvide, +// ActionCheck = (b, m) => IsLongerThan(20), +// }; + +// /// +// /// +// /// +// protected static IBaseAction StandardFinish { get; } = new BaseAction(ActionID.DoubleStandardFinish) +// { +// StatusNeed = new[] { StatusID.StandardStep }, +// ActionCheck = (b, m) => IsDancing && CompletedSteps == 2 && Service.GetAdjustedActionId(ActionID.StandardStep) == ActionID.DoubleStandardFinish, +// }; + +// /// +// /// +// /// +// protected static IBaseAction TechnicalFinish { get; } = new BaseAction(ActionID.QuadrupleTechnicalFinish) +// { +// StatusNeed = new[] { StatusID.TechnicalStep }, +// ActionCheck = (b, m) => IsDancing && CompletedSteps == 4 && Service.GetAdjustedActionId(ActionID.TechnicalStep) == ActionID.QuadrupleTechnicalFinish, +// }; + +// private static IBaseAction Emboite { get; } = new BaseAction(ActionID.Emboite) +// { +// ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Emboite, +// }; + +// private static IBaseAction Entrechat { get; } = new BaseAction(ActionID.Entrechat) +// { +// ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Entrechat, +// }; + +// private static IBaseAction Jete { get; } = new BaseAction(ActionID.Jete) +// { +// ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Jete, +// }; + +// private static IBaseAction Pirouette { get; } = new BaseAction(ActionID.Pirouette) +// { +// ActionCheck = (b, m) => (ActionID)JobGauge.NextStep == ActionID.Pirouette, +// }; + +// /// +// /// Finish the dance. +// /// +// /// +// /// Finish the dance as soon as possible +// /// +// protected static bool DanceFinishGCD(out IAction act, bool finishNow = false) +// { +// if (Player.HasStatus(true, StatusID.StandardStep) && CompletedSteps == 2) +// { +// if (StandardFinish.CanUse(out act, CanUseOption.MustUse)) +// { +// return true; +// } +// if (Player.WillStatusEnd(1, true, StatusID.StandardStep, StatusID.StandardFinish) || finishNow) +// { +// act = StandardStep; +// return true; +// } +// return false; +// } + +// if (Player.HasStatus(true, StatusID.TechnicalStep) && CompletedSteps == 4) +// { +// if (TechnicalFinish.CanUse(out act, CanUseOption.MustUse)) +// { +// return true; +// } +// if (Player.WillStatusEnd(1, true, StatusID.TechnicalStep) || finishNow) +// { +// act = TechnicalStep; +// return true; +// } +// return false; +// } + +// act = null; +// return false; +// } + +// /// +// /// Do the dancing steps. +// /// +// /// +// /// +// protected static bool ExecuteStepGCD(out IAction act) +// { +// if (!IsDancing) +// { +// act = null; +// return false; +// } + +// if (Emboite.CanUse(out act)) return true; +// if (Entrechat.CanUse(out act)) return true; +// if (Jete.CanUse(out act)) return true; +// if (Pirouette.CanUse(out act)) return true; +// return false; +// } +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(251); + +// /// +// /// +// /// +// public static IBaseTrait FourfoldFantasy { get; } = new BaseTrait(252); + +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(253); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnAvant { get; } = new BaseTrait(254); + +// /// +// /// +// /// +// public static IBaseTrait EspritTrait { get; } = new BaseTrait(255); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnAvant2 { get; } = new BaseTrait(256); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedTechnicalFinish { get; } = new BaseTrait(453); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEsprit { get; } = new BaseTrait(454); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedFlourish { get; } = new BaseTrait(455); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedShieldSamba { get; } = new BaseTrait(456); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDevilment { get; } = new BaseTrait(457); + +// #endregion + +// private protected override IBaseAction LimitBreak => CrimsonLotus; + +// /// +// /// LB +// /// +// public static IBaseAction CrimsonLotus { get; } = new BaseAction(ActionID.CrimsonLotus) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.EnAvant)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (EnAvant.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; +// return false; +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.CuringWaltz, ActionID.Improvisation)] +// protected sealed override bool HealAreaAbility(out IAction act) +// { +// if (CuringWaltz.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; +// if (Improvisation.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; +// return false; +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.ShieldSamba)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (ShieldSamba.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; +// return false; +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/DRG_Base.cs b/RotationSolver.Basic/Rotations/Basic/DRG_Base.cs index c32a54b56..3bcad1f8f 100644 --- a/RotationSolver.Basic/Rotations/Basic/DRG_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/DRG_Base.cs @@ -1,342 +1,342 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of DRG> -/// -public abstract class DRG_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.DRG, Job.LNC }; - - #region Job Gauge - static DRGGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte EyeCount => JobGauge.EyeCount; - - /// - /// Firstminds Count - /// - public static byte FocusCount => JobGauge.FirstmindsFocusCount; - - /// - /// - /// - static float LOTDTimeRaw => JobGauge.LOTDTimer / 1000f; - - /// - /// - /// - public static float LOTDTime => LOTDTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool LOTDEndAfter(float time) => LOTDTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool LOTDEndAfterGCD(uint gctCount = 0, float offset = 0) - => LOTDEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction TrueThrust { get; } = new BaseAction(ActionID.TrueThrust); - - /// - /// 2 - /// - public static IBaseAction VorpalThrust { get; } = new BaseAction(ActionID.VorpalThrust) - { - ComboIds = new[] { ActionID.RaidenThrust } - }; - - /// - /// 3 - /// - public static IBaseAction FullThrust { get; } = new BaseAction(ActionID.FullThrust); - - /// - /// - /// - public static IBaseAction Disembowel { get; } = new BaseAction(ActionID.Disembowel) - { - ComboIds = new[] { ActionID.RaidenThrust } - }; - - /// - /// - /// - public static IBaseAction ChaosThrust { get; } = new BaseAction(ActionID.ChaosThrust); - - /// - /// - /// - public static IBaseAction FangandClaw { get; } = new BaseAction(ActionID.FangAndClaw) - { - StatusNeed = [StatusID.FangAndClawBared], - }; - - /// - /// - /// - public static IBaseAction WheelingThrust { get; } = new BaseAction(ActionID.WheelingThrust) - { - StatusNeed = [StatusID.WheelInMotion], - }; - - /// - /// - /// - public static IBaseAction PiercingTalon { get; } = new BaseAction(ActionID.PiercingTalon) - { - FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction SpineShatterDive { get; } = new BaseAction(ActionID.SpineshatterDive); - - /// - /// - /// - public static IBaseAction Jump { get; } = new BaseAction(ActionID.Jump) - { - StatusProvide = new StatusID[] { StatusID.DiveReady }, - }; - - /// - /// - /// - public static IBaseAction HighJump { get; } = new BaseAction(ActionID.HighJump) - { - StatusProvide = Jump.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction MirageDive { get; } = new BaseAction(ActionID.MirageDive) - { - StatusNeed = Jump.StatusProvide, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction DoomSpike { get; } = new BaseAction(ActionID.DoomSpike); - - /// - /// 2 - /// - public static IBaseAction SonicThrust { get; } = new BaseAction(ActionID.SonicThrust) - { - ComboIds = new[] { ActionID.DraconianFury } - }; - - /// - /// 3 - /// - public static IBaseAction CoerthanTorment { get; } = new BaseAction(ActionID.CoerthanTorment); - - /// - /// - /// - public static IBaseAction DragonFireDive { get; } = new BaseAction(ActionID.DragonfireDive); - - /// - /// - /// - public static IBaseAction Geirskogul { get; } = new BaseAction(ActionID.Geirskogul); - - /// - /// - /// - public static IBaseAction Nastrond { get; } = new BaseAction(ActionID.Nastrond) - { - ActionCheck = (b, m) => JobGauge.IsLOTDActive, - }; - - /// - /// - /// - public static IBaseAction StarDiver { get; } = new BaseAction(ActionID.Stardiver) - { - ActionCheck = (b, m) => JobGauge.IsLOTDActive, - }; - - /// - /// - /// - public static IBaseAction WyrmwindThrust { get; } = new BaseAction(ActionID.WyrmwindThrust, ActionOption.UseResources) - { - ActionCheck = (b, m) => FocusCount == 2, - }; - #endregion - - #region Support - /// - /// - /// - public static IBaseAction LifeSurge { get; } = new BaseAction(ActionID.LifeSurge) - { - StatusProvide = new[] { StatusID.LifeSurge }, - ActionCheck = (b, m) => !IsLastAbility(true, LifeSurge), - }; - - /// - /// - /// - public static IBaseAction LanceCharge { get; } = new BaseAction(ActionID.LanceCharge) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction DragonSight { get; } = new BaseAction(ActionID.DragonSight, ActionOption.Buff) - { - ChoiceTarget = (Targets, mustUse) => - { - Targets = Targets.Where(b => b.ObjectId != Player.ObjectId && - !b.HasStatus(false, StatusID.Weakness, StatusID.BrinkOfDeath)).ToArray(); - - if (!Targets.Any()) return Player; - - return Targets.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical, JobRole.Tank).FirstOrDefault(); - }, - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction BattleLitany { get; } = new BaseAction(ActionID.BattleLitany, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait LanceMastery { get; } = new BaseTrait(162); - - /// - /// - /// - public static IBaseTrait LifeOfTheDragon { get; } = new BaseTrait(163); - - /// - /// - /// - public static IBaseTrait LanceMastery2 { get; } = new BaseTrait(247); - - /// - /// - /// - public static IBaseTrait JumpMastery { get; } = new BaseTrait(275); - - /// - /// - /// - public static IBaseTrait LifeOfTheDragonMastery { get; } = new BaseTrait(276); - - /// - /// - /// - public static IBaseTrait BloodOfTheDragon { get; } = new BaseTrait(434); - - /// - /// - /// - public static IBaseTrait EnhancedCoerthanTorment { get; } = new BaseTrait(435); - - /// - /// - /// - public static IBaseTrait EnhancedSpineshatterDive { get; } = new BaseTrait(436); - - /// - /// - /// - public static IBaseTrait LanceMastery3 { get; } = new BaseTrait(437); - - /// - /// - /// - public static IBaseTrait EnhancedLifeSurge { get; } = new BaseTrait(438); - - /// - /// - /// - public static IBaseTrait LanceMastery4 { get; } = new BaseTrait(508); - - #endregion - /// - /// - /// - public static IBaseAction ElusiveJump { get; } = new BaseAction(ActionID.ElusiveJump); - - private protected override IBaseAction LimitBreak => DragonsongDive; - - /// - /// LB - /// - public static IBaseAction DragonsongDive { get; } = new BaseAction(ActionID.DragonsongDive) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Feint)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Feint.CanUse(out act)) return true; - return false; - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.ElusiveJump)] - protected override bool MoveBackAbility(out IAction act) - { - if (ElusiveJump.CanUse(out act, CanUseOption.IgnoreClippingCheck)) return true; - return base.MoveBackAbility(out act); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of DRG> +///// +//public abstract class DRG_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.DRG, Job.LNC }; + +// #region Job Gauge +// static DRGGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte EyeCount => JobGauge.EyeCount; + +// /// +// /// Firstminds Count +// /// +// public static byte FocusCount => JobGauge.FirstmindsFocusCount; + +// /// +// /// +// /// +// static float LOTDTimeRaw => JobGauge.LOTDTimer / 1000f; + +// /// +// /// +// /// +// public static float LOTDTime => LOTDTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool LOTDEndAfter(float time) => LOTDTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool LOTDEndAfterGCD(uint gctCount = 0, float offset = 0) +// => LOTDEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction TrueThrust { get; } = new BaseAction(ActionID.TrueThrust); + +// /// +// /// 2 +// /// +// public static IBaseAction VorpalThrust { get; } = new BaseAction(ActionID.VorpalThrust) +// { +// ComboIds = new[] { ActionID.RaidenThrust } +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction FullThrust { get; } = new BaseAction(ActionID.FullThrust); + +// /// +// /// +// /// +// public static IBaseAction Disembowel { get; } = new BaseAction(ActionID.Disembowel) +// { +// ComboIds = new[] { ActionID.RaidenThrust } +// }; + +// /// +// /// +// /// +// public static IBaseAction ChaosThrust { get; } = new BaseAction(ActionID.ChaosThrust); + +// /// +// /// +// /// +// public static IBaseAction FangandClaw { get; } = new BaseAction(ActionID.FangAndClaw) +// { +// StatusNeed = [StatusID.FangAndClawBared], +// }; + +// /// +// /// +// /// +// public static IBaseAction WheelingThrust { get; } = new BaseAction(ActionID.WheelingThrust) +// { +// StatusNeed = [StatusID.WheelInMotion], +// }; + +// /// +// /// +// /// +// public static IBaseAction PiercingTalon { get; } = new BaseAction(ActionID.PiercingTalon) +// { +// FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction SpineShatterDive { get; } = new BaseAction(ActionID.SpineshatterDive); + +// /// +// /// +// /// +// public static IBaseAction Jump { get; } = new BaseAction(ActionID.Jump) +// { +// StatusProvide = new StatusID[] { StatusID.DiveReady }, +// }; + +// /// +// /// +// /// +// public static IBaseAction HighJump { get; } = new BaseAction(ActionID.HighJump) +// { +// StatusProvide = Jump.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction MirageDive { get; } = new BaseAction(ActionID.MirageDive) +// { +// StatusNeed = Jump.StatusProvide, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction DoomSpike { get; } = new BaseAction(ActionID.DoomSpike); + +// /// +// /// 2 +// /// +// public static IBaseAction SonicThrust { get; } = new BaseAction(ActionID.SonicThrust) +// { +// ComboIds = new[] { ActionID.DraconianFury } +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction CoerthanTorment { get; } = new BaseAction(ActionID.CoerthanTorment); + +// /// +// /// +// /// +// public static IBaseAction DragonFireDive { get; } = new BaseAction(ActionID.DragonfireDive); + +// /// +// /// +// /// +// public static IBaseAction Geirskogul { get; } = new BaseAction(ActionID.Geirskogul); + +// /// +// /// +// /// +// public static IBaseAction Nastrond { get; } = new BaseAction(ActionID.Nastrond) +// { +// ActionCheck = (b, m) => JobGauge.IsLOTDActive, +// }; + +// /// +// /// +// /// +// public static IBaseAction StarDiver { get; } = new BaseAction(ActionID.Stardiver) +// { +// ActionCheck = (b, m) => JobGauge.IsLOTDActive, +// }; + +// /// +// /// +// /// +// public static IBaseAction WyrmwindThrust { get; } = new BaseAction(ActionID.WyrmwindThrust, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => FocusCount == 2, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction LifeSurge { get; } = new BaseAction(ActionID.LifeSurge) +// { +// StatusProvide = new[] { StatusID.LifeSurge }, +// ActionCheck = (b, m) => !IsLastAbility(true, LifeSurge), +// }; + +// /// +// /// +// /// +// public static IBaseAction LanceCharge { get; } = new BaseAction(ActionID.LanceCharge) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction DragonSight { get; } = new BaseAction(ActionID.DragonSight, ActionOption.Buff) +// { +// ChoiceTarget = (Targets, mustUse) => +// { +// Targets = Targets.Where(b => b.ObjectId != Player.ObjectId && +// !b.HasStatus(false, StatusID.Weakness, StatusID.BrinkOfDeath)).ToArray(); + +// if (!Targets.Any()) return Player; + +// return Targets.GetJobCategory(JobRole.Melee, JobRole.RangedMagical, JobRole.RangedPhysical, JobRole.Tank).FirstOrDefault(); +// }, +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction BattleLitany { get; } = new BaseAction(ActionID.BattleLitany, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait LanceMastery { get; } = new BaseTrait(162); + +// /// +// /// +// /// +// public static IBaseTrait LifeOfTheDragon { get; } = new BaseTrait(163); + +// /// +// /// +// /// +// public static IBaseTrait LanceMastery2 { get; } = new BaseTrait(247); + +// /// +// /// +// /// +// public static IBaseTrait JumpMastery { get; } = new BaseTrait(275); + +// /// +// /// +// /// +// public static IBaseTrait LifeOfTheDragonMastery { get; } = new BaseTrait(276); + +// /// +// /// +// /// +// public static IBaseTrait BloodOfTheDragon { get; } = new BaseTrait(434); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedCoerthanTorment { get; } = new BaseTrait(435); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSpineshatterDive { get; } = new BaseTrait(436); + +// /// +// /// +// /// +// public static IBaseTrait LanceMastery3 { get; } = new BaseTrait(437); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedLifeSurge { get; } = new BaseTrait(438); + +// /// +// /// +// /// +// public static IBaseTrait LanceMastery4 { get; } = new BaseTrait(508); + +// #endregion +// /// +// /// +// /// +// public static IBaseAction ElusiveJump { get; } = new BaseAction(ActionID.ElusiveJump); + +// private protected override IBaseAction LimitBreak => DragonsongDive; + +// /// +// /// LB +// /// +// public static IBaseAction DragonsongDive { get; } = new BaseAction(ActionID.DragonsongDive) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Feint)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Feint.CanUse(out act)) return true; +// return false; +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.ElusiveJump)] +// protected override bool MoveBackAbility(out IAction act) +// { +// if (ElusiveJump.CanUse(out act, CanUseOption.IgnoreClippingCheck)) return true; +// return base.MoveBackAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/DRK_Base.cs b/RotationSolver.Basic/Rotations/Basic/DRK_Base.cs index 6331497a6..6f31e980b 100644 --- a/RotationSolver.Basic/Rotations/Basic/DRK_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/DRK_Base.cs @@ -1,350 +1,350 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of DRK. -/// -public abstract class DRK_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.DRK }; - - #region Job Gauge - private static DRKGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Blood => JobGauge.Blood; - - /// - /// - /// - public static bool HasDarkArts => JobGauge.HasDarkArts; - - static float DarkSideTimeRemainingRaw => JobGauge.DarksideTimeRemaining / 1000f; - - /// - /// - /// - public static float DarkSideTime => DarkSideTimeRemainingRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool DarkSideEndAfter(float time) => DarkSideTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool DarkSideEndAfterGCD(uint gctCount = 0, float offset = 0) - => DarkSideEndAfter(GCDTime(gctCount, offset)); - - static float ShadowTimeRemainingRaw => JobGauge.ShadowTimeRemaining / 1000f; - - /// - /// - /// - public static float ShadowTime => ShadowTimeRemainingRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool ShadowTimeEndAfter(float time) => ShadowTimeRemainingRaw <= time; - - /// - /// - /// - /// - /// - /// - protected static bool ShadowTimeEndAfterGCD(uint gctCount = 0, float offset = 0) - => ShadowTimeEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction HardSlash { get; } = new BaseAction(ActionID.HardSlash); - - /// - /// 2 - /// - public static IBaseAction SyphonStrike { get; } = new BaseAction(ActionID.SyphonStrike); - - /// - /// 3 - /// - public static IBaseAction Souleater { get; } = new BaseAction(ActionID.Souleater); - - /// - /// - /// - public static IBaseAction EdgeOfDarkness { get; } = new BaseAction(ActionID.EdgeOfDarkness); - - /// - /// - /// - public static IBaseAction CarveAndSpit { get; } = new BaseAction(ActionID.CarveAndSpit); - - /// - /// - /// - public static IBaseAction BloodSpiller { get; } = new BaseAction(ActionID.Bloodspiller) - { - ActionCheck = (b, m) => JobGauge.Blood >= 50 || Player.HasStatus(true, StatusID.Delirium), - }; - - /// - /// - /// - public static IBaseAction Unmend { get; } = new BaseAction(ActionID.Unmend) - { - FilterForHostiles = TargetFilter.TankRangeTarget, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction Plunge { get; } = new BaseAction(ActionID.Plunge, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving - }; - - /// - /// - /// - public static IBaseAction LivingShadow { get; } = new BaseAction(ActionID.LivingShadow) - { - ActionCheck = (b, m) => JobGauge.Blood >= 50, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction Unleash { get; } = new BaseAction(ActionID.Unleash); - - /// - /// 2 - /// - public static IBaseAction StalwartSoul { get; } = new BaseAction(ActionID.StalwartSoul); - - /// - /// - /// - public static IBaseAction Quietus { get; } = new BaseAction(ActionID.Quietus) - { - ActionCheck = BloodSpiller.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction FloodOfDarkness { get; } = new BaseAction(ActionID.FloodOfDarkness); - - /// - /// - /// - public static IBaseAction SaltedEarth { get; } = new BaseAction(ActionID.SaltedEarth); - - /// - /// - /// - public static IBaseAction AbyssalDrain { get; } = new BaseAction(ActionID.AbyssalDrain); - - /// - /// - /// - public static IBaseAction SaltandDarkness { get; } = new BaseAction(ActionID.SaltAndDarkness) - { - StatusNeed = new[] { StatusID.SaltedEarth }, - }; - - /// - /// - /// - public static IBaseAction ShadowBringer { get; } = new BaseAction(ActionID.Shadowbringer) - { - ActionCheck = (b, m) => !DarkSideEndAfterGCD(), - }; - #endregion - - #region Heal Single - private protected sealed override IBaseAction TankStance => Grit; - - /// - /// - /// - public static IBaseAction Grit { get; } = new BaseAction(ActionID.Grit, ActionOption.Defense | ActionOption.EndSpecial); - #endregion - - #region Defense Single - /// - /// - /// - public static IBaseAction ShadowWall { get; } = new BaseAction(ActionID.ShadowWall, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction DarkMind { get; } = new BaseAction(ActionID.DarkMind, ActionOption.Defense) - { - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction TheBlackestNight { get; } = new BaseAction(ActionID.TheBlackestNight, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction Oblation { get; } = new BaseAction(ActionID.Oblation, ActionOption.Defense) - { - TargetStatus = new StatusID[] { StatusID.Oblation }, - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction LivingDead { get; } = new BaseAction(ActionID.LivingDead, ActionOption.Defense); - #endregion - - #region Defense Area - /// - /// - /// - public static IBaseAction DarkMissionary { get; } = new BaseAction(ActionID.DarkMissionary, ActionOption.Defense); - #endregion - - #region Support - /// - /// - /// - public static IBaseAction BloodWeapon { get; } = new BaseAction(ActionID.BloodWeapon) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Delirium { get; } = new BaseAction(ActionID.Delirium) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait Blackblood { get; } = new BaseTrait(158); - - /// - /// - /// - public static IBaseTrait EnhancedBlackblood { get; } = new BaseTrait(159); - - /// - /// - /// - public static IBaseTrait DarksideMastery { get; } = new BaseTrait(271); - - /// - /// - /// - public static IBaseTrait EnhancedPlunge { get; } = new BaseTrait(272); - - /// - /// - /// - public static IBaseTrait TankMastery { get; } = new BaseTrait(319); - - /// - /// - /// - public static IBaseTrait EnhancedUnmend { get; } = new BaseTrait(422); - - /// - /// - /// - public static IBaseTrait EnhancedLivingShadow2 { get; } = new BaseTrait(423); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(506); - - /// - /// - /// - public static IBaseTrait EnhancedLivingShadow { get; } = new BaseTrait(511); - - #endregion - - private protected override IBaseAction LimitBreak => DarkForce; - - /// - /// LB - /// - public static IBaseAction DarkForce { get; } = new BaseAction(ActionID.DarkForce, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - /// - protected override bool EmergencyAbility(IAction nextGCD, out IAction act) - { - if (LivingDead.CanUse(out act) && BaseAction.CanTankBurst()) return true; - return base.EmergencyAbility(nextGCD, out act); - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Plunge)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Plunge.CanUse(out act)) return true; - return false; - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of DRK. +///// +//public abstract class DRK_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.DRK }; + +// #region Job Gauge +// private static DRKGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Blood => JobGauge.Blood; + +// /// +// /// +// /// +// public static bool HasDarkArts => JobGauge.HasDarkArts; + +// static float DarkSideTimeRemainingRaw => JobGauge.DarksideTimeRemaining / 1000f; + +// /// +// /// +// /// +// public static float DarkSideTime => DarkSideTimeRemainingRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool DarkSideEndAfter(float time) => DarkSideTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool DarkSideEndAfterGCD(uint gctCount = 0, float offset = 0) +// => DarkSideEndAfter(GCDTime(gctCount, offset)); + +// static float ShadowTimeRemainingRaw => JobGauge.ShadowTimeRemaining / 1000f; + +// /// +// /// +// /// +// public static float ShadowTime => ShadowTimeRemainingRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool ShadowTimeEndAfter(float time) => ShadowTimeRemainingRaw <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool ShadowTimeEndAfterGCD(uint gctCount = 0, float offset = 0) +// => ShadowTimeEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction HardSlash { get; } = new BaseAction(ActionID.HardSlash); + +// /// +// /// 2 +// /// +// public static IBaseAction SyphonStrike { get; } = new BaseAction(ActionID.SyphonStrike); + +// /// +// /// 3 +// /// +// public static IBaseAction Souleater { get; } = new BaseAction(ActionID.Souleater); + +// /// +// /// +// /// +// public static IBaseAction EdgeOfDarkness { get; } = new BaseAction(ActionID.EdgeOfDarkness); + +// /// +// /// +// /// +// public static IBaseAction CarveAndSpit { get; } = new BaseAction(ActionID.CarveAndSpit); + +// /// +// /// +// /// +// public static IBaseAction BloodSpiller { get; } = new BaseAction(ActionID.Bloodspiller) +// { +// ActionCheck = (b, m) => JobGauge.Blood >= 50 || Player.HasStatus(true, StatusID.Delirium), +// }; + +// /// +// /// +// /// +// public static IBaseAction Unmend { get; } = new BaseAction(ActionID.Unmend) +// { +// FilterForHostiles = TargetFilter.TankRangeTarget, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction Plunge { get; } = new BaseAction(ActionID.Plunge, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving +// }; + +// /// +// /// +// /// +// public static IBaseAction LivingShadow { get; } = new BaseAction(ActionID.LivingShadow) +// { +// ActionCheck = (b, m) => JobGauge.Blood >= 50, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction Unleash { get; } = new BaseAction(ActionID.Unleash); + +// /// +// /// 2 +// /// +// public static IBaseAction StalwartSoul { get; } = new BaseAction(ActionID.StalwartSoul); + +// /// +// /// +// /// +// public static IBaseAction Quietus { get; } = new BaseAction(ActionID.Quietus) +// { +// ActionCheck = BloodSpiller.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction FloodOfDarkness { get; } = new BaseAction(ActionID.FloodOfDarkness); + +// /// +// /// +// /// +// public static IBaseAction SaltedEarth { get; } = new BaseAction(ActionID.SaltedEarth); + +// /// +// /// +// /// +// public static IBaseAction AbyssalDrain { get; } = new BaseAction(ActionID.AbyssalDrain); + +// /// +// /// +// /// +// public static IBaseAction SaltandDarkness { get; } = new BaseAction(ActionID.SaltAndDarkness) +// { +// StatusNeed = new[] { StatusID.SaltedEarth }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ShadowBringer { get; } = new BaseAction(ActionID.Shadowbringer) +// { +// ActionCheck = (b, m) => !DarkSideEndAfterGCD(), +// }; +// #endregion + +// #region Heal Single +// private protected sealed override IBaseAction TankStance => Grit; + +// /// +// /// +// /// +// public static IBaseAction Grit { get; } = new BaseAction(ActionID.Grit, ActionOption.Defense | ActionOption.EndSpecial); +// #endregion + +// #region Defense Single +// /// +// /// +// /// +// public static IBaseAction ShadowWall { get; } = new BaseAction(ActionID.ShadowWall, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction DarkMind { get; } = new BaseAction(ActionID.DarkMind, ActionOption.Defense) +// { +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction TheBlackestNight { get; } = new BaseAction(ActionID.TheBlackestNight, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction Oblation { get; } = new BaseAction(ActionID.Oblation, ActionOption.Defense) +// { +// TargetStatus = new StatusID[] { StatusID.Oblation }, +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction LivingDead { get; } = new BaseAction(ActionID.LivingDead, ActionOption.Defense); +// #endregion + +// #region Defense Area +// /// +// /// +// /// +// public static IBaseAction DarkMissionary { get; } = new BaseAction(ActionID.DarkMissionary, ActionOption.Defense); +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction BloodWeapon { get; } = new BaseAction(ActionID.BloodWeapon) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction Delirium { get; } = new BaseAction(ActionID.Delirium) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait Blackblood { get; } = new BaseTrait(158); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedBlackblood { get; } = new BaseTrait(159); + +// /// +// /// +// /// +// public static IBaseTrait DarksideMastery { get; } = new BaseTrait(271); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedPlunge { get; } = new BaseTrait(272); + +// /// +// /// +// /// +// public static IBaseTrait TankMastery { get; } = new BaseTrait(319); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedUnmend { get; } = new BaseTrait(422); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedLivingShadow2 { get; } = new BaseTrait(423); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(506); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedLivingShadow { get; } = new BaseTrait(511); + +// #endregion + +// private protected override IBaseAction LimitBreak => DarkForce; + +// /// +// /// LB +// /// +// public static IBaseAction DarkForce { get; } = new BaseAction(ActionID.DarkForce, ActionOption.Defense) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected override bool EmergencyAbility(IAction nextGCD, out IAction act) +// { +// if (LivingDead.CanUse(out act) && BaseAction.CanTankBurst()) return true; +// return base.EmergencyAbility(nextGCD, out act); +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Plunge)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Plunge.CanUse(out act)) return true; +// return false; +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/GNB_Base.cs b/RotationSolver.Basic/Rotations/Basic/GNB_Base.cs index 094194ada..46a92678e 100644 --- a/RotationSolver.Basic/Rotations/Basic/GNB_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/GNB_Base.cs @@ -1,344 +1,344 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of GNB> -/// -public abstract class GNB_Base : CustomRotation -{ - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.GNB }; - - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public override bool CanHealSingleSpell => false; - - /// - /// - /// - public override bool CanHealAreaSpell => false; - - #region Job Gauge - static GNBGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Ammo => JobGauge.Ammo; - - /// - /// - /// - public static byte AmmoComboStep => JobGauge.AmmoComboStep; - - /// - /// - /// - public static byte MaxAmmo => CartridgeCharge2.EnoughLevel ? (byte)3 : (byte)2; - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction KeenEdge { get; } = new BaseAction(ActionID.KeenEdge); - - /// - /// 2 - /// - public static IBaseAction BrutalShell { get; } = new BaseAction(ActionID.BrutalShell); - - /// - /// 3 - /// - public static IBaseAction SolidBarrel { get; } = new BaseAction(ActionID.SolidBarrel); - - /// - /// - /// - public static IBaseAction DangerZone { get; } = new BaseAction(ActionID.DangerZone); - - /// - /// - /// - public static IBaseAction SonicBreak { get; } = new BaseAction(ActionID.SonicBreak); - - /// - /// - /// - public static IBaseAction BurstStrike { get; } = new BaseAction(ActionID.BurstStrike, ActionOption.UseResources) - { - ActionCheck = (b, m) => Ammo > 0, - }; - - /// - /// - /// - public static IBaseAction GnashingFang { get; } = new BaseAction(ActionID.GnashingFang, ActionOption.UseResources) - { - ActionCheck = (b, m) => AmmoComboStep == 0 && Ammo > 0, - }; - - /// - /// - /// - public static IBaseAction SavageClaw { get; } = new BaseAction(ActionID.SavageClaw) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.GnashingFang) == ActionID.SavageClaw, - }; - - /// - /// - /// - public static IBaseAction WickedTalon { get; } = new BaseAction(ActionID.WickedTalon) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.GnashingFang) == ActionID.WickedTalon, - }; - - /// - /// - /// - public static IBaseAction JugularRip { get; } = new BaseAction(ActionID.JugularRip) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.JugularRip, - }; - - /// - /// - /// - public static IBaseAction AbdomenTear { get; } = new BaseAction(ActionID.AbdomenTear) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.AbdomenTear, - }; - - /// - /// - /// - public static IBaseAction EyeGouge { get; } = new BaseAction(ActionID.EyeGouge) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.EyeGouge, - }; - - /// - /// - /// - public static IBaseAction Hypervelocity { get; } = new BaseAction(ActionID.Hypervelocity) - { - ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.Hypervelocity, - }; - - /// - /// - /// - public static IBaseAction LightningShot { get; } = new BaseAction(ActionID.LightningShot) - { - FilterForHostiles = TargetFilter.TankRangeTarget, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction RoughDivide { get; } = new BaseAction(ActionID.RoughDivide, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction DemonSlice { get; } = new BaseAction(ActionID.DemonSlice); - - /// - /// 2 - /// - public static IBaseAction DemonSlaughter { get; } = new BaseAction(ActionID.DemonSlaughter); - - /// - /// - /// - public static IBaseAction FatedCircle { get; } = new BaseAction(ActionID.FatedCircle, ActionOption.UseResources) - { - ActionCheck = (b, m) => Ammo > 0, - }; - - /// - /// - /// - public static IBaseAction DoubleDown { get; } = new BaseAction(ActionID.DoubleDown, ActionOption.UseResources) - { - ActionCheck = (b, m) => Ammo > 1, - }; - - /// - /// - /// - public static IBaseAction BowShock { get; } = new BaseAction(ActionID.BowShock); - #endregion - - #region Heal - /// - /// - /// - public static IBaseAction Aurora { get; } = new BaseAction(ActionID.Aurora, ActionOption.Heal) - { - TargetStatus = new StatusID[] { StatusID.Aurora }, - }; - - /// - /// - /// - public static IBaseAction HeartOfLight { get; } = new BaseAction(ActionID.HeartOfLight, ActionOption.Heal); - #endregion - - #region Defense Single - /// - /// - /// - public static IBaseAction Nebula { get; } = new BaseAction(ActionID.Nebula, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction Camouflage { get; } = new BaseAction(ActionID.Camouflage, ActionOption.Defense) - { - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction HeartOfStone { get; } = new BaseAction(ActionID.HeartOfStone, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction SuperBolide { get; } = new BaseAction(ActionID.Superbolide, ActionOption.Defense); - #endregion - - #region Support - private protected sealed override IBaseAction TankStance => RoyalGuard; - /// - /// - /// - public static IBaseAction RoyalGuard { get; } = new BaseAction(ActionID.RoyalGuard, ActionOption.Defense | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction NoMercy { get; } = new BaseAction(ActionID.NoMercy) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction BloodFest { get; } = new BaseAction(ActionID.Bloodfest, ActionOption.Buff) - { - ActionCheck = (b, m) => MaxAmmo - Ammo > 1, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait CartridgeCharge { get; } = new BaseTrait(257); - - /// - /// - /// - public static IBaseTrait EnhancedBrutalShell { get; } = new BaseTrait(258); - - /// - /// - /// - public static IBaseTrait DangerZoneMastery { get; } = new BaseTrait(259); - - /// - /// - /// - public static IBaseTrait TankMastery { get; } = new BaseTrait(320); - - /// - /// - /// - public static IBaseTrait HeartOfStoneMastery { get; } = new BaseTrait(424); - - /// - /// - /// - public static IBaseTrait EnhancedAurora { get; } = new BaseTrait(425); - - /// - /// - /// - public static IBaseTrait EnhancedContinuation { get; } = new BaseTrait(426); - - /// - /// - /// - public static IBaseTrait CartridgeCharge2 { get; } = new BaseTrait(427); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(507); - #endregion - - private protected override IBaseAction LimitBreak => GunmetalSoul; - - /// - /// LB - /// - public static IBaseAction GunmetalSoul { get; } = new BaseAction(ActionID.GunmetalSoul, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - /// - protected override bool EmergencyAbility(IAction nextGCD, out IAction act) - { - if (SuperBolide.CanUse(out act) && BaseAction.CanTankBurst()) return true; - return base.EmergencyAbility(nextGCD, out act); - } - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.RoughDivide)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (RoughDivide.CanUse(out act)) return true; - return false; - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of GNB> +///// +//public abstract class GNB_Base : CustomRotation +//{ +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.GNB }; + +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public override bool CanHealSingleSpell => false; + +// /// +// /// +// /// +// public override bool CanHealAreaSpell => false; + +// #region Job Gauge +// static GNBGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Ammo => JobGauge.Ammo; + +// /// +// /// +// /// +// public static byte AmmoComboStep => JobGauge.AmmoComboStep; + +// /// +// /// +// /// +// public static byte MaxAmmo => CartridgeCharge2.EnoughLevel ? (byte)3 : (byte)2; +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction KeenEdge { get; } = new BaseAction(ActionID.KeenEdge); + +// /// +// /// 2 +// /// +// public static IBaseAction BrutalShell { get; } = new BaseAction(ActionID.BrutalShell); + +// /// +// /// 3 +// /// +// public static IBaseAction SolidBarrel { get; } = new BaseAction(ActionID.SolidBarrel); + +// /// +// /// +// /// +// public static IBaseAction DangerZone { get; } = new BaseAction(ActionID.DangerZone); + +// /// +// /// +// /// +// public static IBaseAction SonicBreak { get; } = new BaseAction(ActionID.SonicBreak); + +// /// +// /// +// /// +// public static IBaseAction BurstStrike { get; } = new BaseAction(ActionID.BurstStrike, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Ammo > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction GnashingFang { get; } = new BaseAction(ActionID.GnashingFang, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => AmmoComboStep == 0 && Ammo > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction SavageClaw { get; } = new BaseAction(ActionID.SavageClaw) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.GnashingFang) == ActionID.SavageClaw, +// }; + +// /// +// /// +// /// +// public static IBaseAction WickedTalon { get; } = new BaseAction(ActionID.WickedTalon) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.GnashingFang) == ActionID.WickedTalon, +// }; + +// /// +// /// +// /// +// public static IBaseAction JugularRip { get; } = new BaseAction(ActionID.JugularRip) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.JugularRip, +// }; + +// /// +// /// +// /// +// public static IBaseAction AbdomenTear { get; } = new BaseAction(ActionID.AbdomenTear) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.AbdomenTear, +// }; + +// /// +// /// +// /// +// public static IBaseAction EyeGouge { get; } = new BaseAction(ActionID.EyeGouge) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.EyeGouge, +// }; + +// /// +// /// +// /// +// public static IBaseAction Hypervelocity { get; } = new BaseAction(ActionID.Hypervelocity) +// { +// ActionCheck = (b, m) => Service.GetAdjustedActionId(ActionID.Continuation) == ActionID.Hypervelocity, +// }; + +// /// +// /// +// /// +// public static IBaseAction LightningShot { get; } = new BaseAction(ActionID.LightningShot) +// { +// FilterForHostiles = TargetFilter.TankRangeTarget, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction RoughDivide { get; } = new BaseAction(ActionID.RoughDivide, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction DemonSlice { get; } = new BaseAction(ActionID.DemonSlice); + +// /// +// /// 2 +// /// +// public static IBaseAction DemonSlaughter { get; } = new BaseAction(ActionID.DemonSlaughter); + +// /// +// /// +// /// +// public static IBaseAction FatedCircle { get; } = new BaseAction(ActionID.FatedCircle, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Ammo > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction DoubleDown { get; } = new BaseAction(ActionID.DoubleDown, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Ammo > 1, +// }; + +// /// +// /// +// /// +// public static IBaseAction BowShock { get; } = new BaseAction(ActionID.BowShock); +// #endregion + +// #region Heal +// /// +// /// +// /// +// public static IBaseAction Aurora { get; } = new BaseAction(ActionID.Aurora, ActionOption.Heal) +// { +// TargetStatus = new StatusID[] { StatusID.Aurora }, +// }; + +// /// +// /// +// /// +// public static IBaseAction HeartOfLight { get; } = new BaseAction(ActionID.HeartOfLight, ActionOption.Heal); +// #endregion + +// #region Defense Single +// /// +// /// +// /// +// public static IBaseAction Nebula { get; } = new BaseAction(ActionID.Nebula, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction Camouflage { get; } = new BaseAction(ActionID.Camouflage, ActionOption.Defense) +// { +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction HeartOfStone { get; } = new BaseAction(ActionID.HeartOfStone, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction SuperBolide { get; } = new BaseAction(ActionID.Superbolide, ActionOption.Defense); +// #endregion + +// #region Support +// private protected sealed override IBaseAction TankStance => RoyalGuard; +// /// +// /// +// /// +// public static IBaseAction RoyalGuard { get; } = new BaseAction(ActionID.RoyalGuard, ActionOption.Defense | ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBaseAction NoMercy { get; } = new BaseAction(ActionID.NoMercy) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction BloodFest { get; } = new BaseAction(ActionID.Bloodfest, ActionOption.Buff) +// { +// ActionCheck = (b, m) => MaxAmmo - Ammo > 1, +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait CartridgeCharge { get; } = new BaseTrait(257); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedBrutalShell { get; } = new BaseTrait(258); + +// /// +// /// +// /// +// public static IBaseTrait DangerZoneMastery { get; } = new BaseTrait(259); + +// /// +// /// +// /// +// public static IBaseTrait TankMastery { get; } = new BaseTrait(320); + +// /// +// /// +// /// +// public static IBaseTrait HeartOfStoneMastery { get; } = new BaseTrait(424); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAurora { get; } = new BaseTrait(425); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedContinuation { get; } = new BaseTrait(426); + +// /// +// /// +// /// +// public static IBaseTrait CartridgeCharge2 { get; } = new BaseTrait(427); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(507); +// #endregion + +// private protected override IBaseAction LimitBreak => GunmetalSoul; + +// /// +// /// LB +// /// +// public static IBaseAction GunmetalSoul { get; } = new BaseAction(ActionID.GunmetalSoul, ActionOption.Defense) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected override bool EmergencyAbility(IAction nextGCD, out IAction act) +// { +// if (SuperBolide.CanUse(out act) && BaseAction.CanTankBurst()) return true; +// return base.EmergencyAbility(nextGCD, out act); +// } + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.RoughDivide)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (RoughDivide.CanUse(out act)) return true; +// return false; +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/MCH_Base.cs b/RotationSolver.Basic/Rotations/Basic/MCH_Base.cs index bf15f4d1d..a7fb9aacf 100644 --- a/RotationSolver.Basic/Rotations/Basic/MCH_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/MCH_Base.cs @@ -1,312 +1,312 @@ -using Dalamud.Game.ClientState.Objects.SubKinds; -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base Class of MCH. -/// -public abstract class MCH_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Dexterity; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.MCH }; - - #region Job Gauge - static MCHGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static bool IsOverheated => JobGauge.IsOverheated; - - /// - /// - /// - public static byte Heat => JobGauge.Heat; - - /// - /// - /// - public static byte Battery => JobGauge.Battery; - - static float OverheatTimeRemainingRaw => JobGauge.OverheatTimeRemaining / 1000f; - - /// - /// - /// - public static float OverheatTime => OverheatTimeRemainingRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool OverheatedEndAfter(float time) => OverheatTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool OverheatedEndAfterGCD(uint gctCount = 0, float offset = 0) - => OverheatedEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction SplitShot { get; } = new BaseAction(ActionID.SplitShot); - - /// - /// 2 - /// - public static IBaseAction SlugShot { get; } = new BaseAction(ActionID.SlugShot) - { - ComboIds = new[] { ActionID.HeatedSplitShot }, - }; - - /// - /// 3 - /// - public static IBaseAction CleanShot { get; } = new BaseAction(ActionID.CleanShot) - { - ComboIds = new[] { ActionID.HeatedSlugShot }, - }; - - /// - /// - /// - public static IBaseAction HeatBlast { get; } = new BaseAction(ActionID.HeatBlast) - { - ActionCheck = (b, m) => IsOverheated && !OverheatedEndAfterGCD(), - }; - - /// - /// - /// - public static IBaseAction HotShot { get; } = new BaseAction(ActionID.HotShot); - - /// - /// - /// - public static IBaseAction AirAnchor { get; } = new BaseAction(ActionID.AirAnchor); - - /// - /// - /// - public static IBaseAction Drill { get; } = new BaseAction(ActionID.Drill); - - /// - /// - /// - public static IBaseAction GaussRound { get; } = new BaseAction(ActionID.GaussRound); - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction SpreadShot { get; } = new BaseAction(ActionID.SpreadShot); - - /// - /// 2 - /// - public static IBaseAction AutoCrossbow { get; } = new BaseAction(ActionID.AutoCrossbow) - { - ActionCheck = HeatBlast.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction ChainSaw { get; } = new BaseAction(ActionID.ChainSaw); - - /// - /// - /// - public static IBaseAction BioBlaster { get; } = new BaseAction(ActionID.Bioblaster, ActionOption.Dot); - - /// - /// - /// - public static IBaseAction Ricochet { get; } = new BaseAction(ActionID.Ricochet); - - /// - /// - /// - public static IBaseAction RookAutoturret { get; } = new BaseAction(ActionID.RookAutoturret, ActionOption.UseResources) - { - ActionCheck = (b, m) => Battery >= 50 && !JobGauge.IsRobotActive, - }; - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Reassemble { get; } = new BaseAction(ActionID.Reassemble) - { - StatusProvide = new StatusID[] { StatusID.Reassembled }, - ActionCheck = (b, m) => HasHostilesInRange, - }; - - /// - /// - /// - public static IBaseAction Hypercharge { get; } = new BaseAction(ActionID.Hypercharge, ActionOption.UseResources) - { - ActionCheck = (b, m) => !IsOverheated && Heat >= 50 - && IsLongerThan(8), - }; - - /// - /// - /// - public static IBaseAction Wildfire { get; } = new BaseAction(ActionID.Wildfire) - { - ActionCheck = (b, m) => IsLongerThan(8), - }; - - /// - /// - /// - public static IBaseAction Detonator { get; } = new BaseAction(ActionID.Detonator); - - /// - /// - /// - public static IBaseAction QueenOverdrive { get; } = new BaseAction(ActionID.QueenOverdrive) - { - ActionCheck = (b, m) => IsLongerThan(8), - }; - - /// - /// - /// - public static IBaseAction BarrelStabilizer { get; } = new BaseAction(ActionID.BarrelStabilizer) - { - ActionCheck = (b, m) => JobGauge.Heat <= 50 && InCombat, - }; - #endregion - - #region Defense - /// - /// - /// - public static IBaseAction Tactician { get; } = new BaseAction(ActionID.Tactician, ActionOption.Defense) - { - ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, StatusID.Tactician_1951, StatusID.Tactician_2177, StatusID.ShieldSamba), - }; - - /// - /// - /// - public static IBaseAction Dismantle { get; } = new BaseAction(ActionID.Dismantle, ActionOption.Defense); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(117); - - /// - /// - /// - public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(119); - - /// - /// - /// - public static IBaseTrait SplitShotMastery { get; } = new BaseTrait(288); - - /// - /// - /// - public static IBaseTrait SlugShotMastery { get; } = new BaseTrait(289); - - /// - /// - /// - public static IBaseTrait CleanShotMastery { get; } = new BaseTrait(290); - - /// - /// - /// - public static IBaseTrait HotShotMastery { get; } = new BaseTrait(291); - - /// - /// - /// - public static IBaseTrait ChargedActionMastery { get; } = new BaseTrait(292); - - /// - /// - /// - public static IBaseTrait EnhancedWildfire { get; } = new BaseTrait(293); - - /// - /// - /// - public static IBaseTrait Promotion { get; } = new BaseTrait(294); - - /// - /// - /// - public static IBaseTrait SpreadShotMastery { get; } = new BaseTrait(449); - - /// - /// - /// - public static IBaseTrait EnhancedReassemble { get; } = new BaseTrait(450); - - /// - /// - /// - public static IBaseTrait QueensGambit { get; } = new BaseTrait(451); - - /// - /// - /// - public static IBaseTrait EnhancedTactician { get; } = new BaseTrait(452); - - /// - /// - /// - public static IBaseTrait MarksmansMastery { get; } = new BaseTrait(517); - #endregion - - private protected override IBaseAction LimitBreak => SatelliteBeam; - - /// - /// LB - /// - public static IBaseAction SatelliteBeam { get; } = new BaseAction(ActionID.SatelliteBeam) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - /// - /// - [RotationDesc(ActionID.Tactician, ActionID.Dismantle)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Tactician.CanUse(out act, CanUseOption.MustUse)) return true; - if (Dismantle.CanUse(out act, CanUseOption.MustUse)) return true; - return false; - } -} +//using Dalamud.Game.ClientState.Objects.SubKinds; +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base Class of MCH. +///// +//public abstract class MCH_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Dexterity; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.MCH }; + +// #region Job Gauge +// static MCHGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static bool IsOverheated => JobGauge.IsOverheated; + +// /// +// /// +// /// +// public static byte Heat => JobGauge.Heat; + +// /// +// /// +// /// +// public static byte Battery => JobGauge.Battery; + +// static float OverheatTimeRemainingRaw => JobGauge.OverheatTimeRemaining / 1000f; + +// /// +// /// +// /// +// public static float OverheatTime => OverheatTimeRemainingRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool OverheatedEndAfter(float time) => OverheatTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool OverheatedEndAfterGCD(uint gctCount = 0, float offset = 0) +// => OverheatedEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction SplitShot { get; } = new BaseAction(ActionID.SplitShot); + +// /// +// /// 2 +// /// +// public static IBaseAction SlugShot { get; } = new BaseAction(ActionID.SlugShot) +// { +// ComboIds = new[] { ActionID.HeatedSplitShot }, +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction CleanShot { get; } = new BaseAction(ActionID.CleanShot) +// { +// ComboIds = new[] { ActionID.HeatedSlugShot }, +// }; + +// /// +// /// +// /// +// public static IBaseAction HeatBlast { get; } = new BaseAction(ActionID.HeatBlast) +// { +// ActionCheck = (b, m) => IsOverheated && !OverheatedEndAfterGCD(), +// }; + +// /// +// /// +// /// +// public static IBaseAction HotShot { get; } = new BaseAction(ActionID.HotShot); + +// /// +// /// +// /// +// public static IBaseAction AirAnchor { get; } = new BaseAction(ActionID.AirAnchor); + +// /// +// /// +// /// +// public static IBaseAction Drill { get; } = new BaseAction(ActionID.Drill); + +// /// +// /// +// /// +// public static IBaseAction GaussRound { get; } = new BaseAction(ActionID.GaussRound); +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction SpreadShot { get; } = new BaseAction(ActionID.SpreadShot); + +// /// +// /// 2 +// /// +// public static IBaseAction AutoCrossbow { get; } = new BaseAction(ActionID.AutoCrossbow) +// { +// ActionCheck = HeatBlast.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction ChainSaw { get; } = new BaseAction(ActionID.ChainSaw); + +// /// +// /// +// /// +// public static IBaseAction BioBlaster { get; } = new BaseAction(ActionID.Bioblaster, ActionOption.Dot); + +// /// +// /// +// /// +// public static IBaseAction Ricochet { get; } = new BaseAction(ActionID.Ricochet); + +// /// +// /// +// /// +// public static IBaseAction RookAutoturret { get; } = new BaseAction(ActionID.RookAutoturret, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Battery >= 50 && !JobGauge.IsRobotActive, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction Reassemble { get; } = new BaseAction(ActionID.Reassemble) +// { +// StatusProvide = new StatusID[] { StatusID.Reassembled }, +// ActionCheck = (b, m) => HasHostilesInRange, +// }; + +// /// +// /// +// /// +// public static IBaseAction Hypercharge { get; } = new BaseAction(ActionID.Hypercharge, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => !IsOverheated && Heat >= 50 +// && IsLongerThan(8), +// }; + +// /// +// /// +// /// +// public static IBaseAction Wildfire { get; } = new BaseAction(ActionID.Wildfire) +// { +// ActionCheck = (b, m) => IsLongerThan(8), +// }; + +// /// +// /// +// /// +// public static IBaseAction Detonator { get; } = new BaseAction(ActionID.Detonator); + +// /// +// /// +// /// +// public static IBaseAction QueenOverdrive { get; } = new BaseAction(ActionID.QueenOverdrive) +// { +// ActionCheck = (b, m) => IsLongerThan(8), +// }; + +// /// +// /// +// /// +// public static IBaseAction BarrelStabilizer { get; } = new BaseAction(ActionID.BarrelStabilizer) +// { +// ActionCheck = (b, m) => JobGauge.Heat <= 50 && InCombat, +// }; +// #endregion + +// #region Defense +// /// +// /// +// /// +// public static IBaseAction Tactician { get; } = new BaseAction(ActionID.Tactician, ActionOption.Defense) +// { +// ActionCheck = (b, m) => !Player.HasStatus(false, StatusID.Troubadour, StatusID.Tactician_1951, StatusID.Tactician_2177, StatusID.ShieldSamba), +// }; + +// /// +// /// +// /// +// public static IBaseAction Dismantle { get; } = new BaseAction(ActionID.Dismantle, ActionOption.Defense); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage { get; } = new BaseTrait(117); + +// /// +// /// +// /// +// public static IBaseTrait IncreasedActionDamage2 { get; } = new BaseTrait(119); + +// /// +// /// +// /// +// public static IBaseTrait SplitShotMastery { get; } = new BaseTrait(288); + +// /// +// /// +// /// +// public static IBaseTrait SlugShotMastery { get; } = new BaseTrait(289); + +// /// +// /// +// /// +// public static IBaseTrait CleanShotMastery { get; } = new BaseTrait(290); + +// /// +// /// +// /// +// public static IBaseTrait HotShotMastery { get; } = new BaseTrait(291); + +// /// +// /// +// /// +// public static IBaseTrait ChargedActionMastery { get; } = new BaseTrait(292); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedWildfire { get; } = new BaseTrait(293); + +// /// +// /// +// /// +// public static IBaseTrait Promotion { get; } = new BaseTrait(294); + +// /// +// /// +// /// +// public static IBaseTrait SpreadShotMastery { get; } = new BaseTrait(449); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedReassemble { get; } = new BaseTrait(450); + +// /// +// /// +// /// +// public static IBaseTrait QueensGambit { get; } = new BaseTrait(451); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedTactician { get; } = new BaseTrait(452); + +// /// +// /// +// /// +// public static IBaseTrait MarksmansMastery { get; } = new BaseTrait(517); +// #endregion + +// private protected override IBaseAction LimitBreak => SatelliteBeam; + +// /// +// /// LB +// /// +// public static IBaseAction SatelliteBeam { get; } = new BaseAction(ActionID.SatelliteBeam) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// /// +// /// +// [RotationDesc(ActionID.Tactician, ActionID.Dismantle)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Tactician.CanUse(out act, CanUseOption.MustUse)) return true; +// if (Dismantle.CanUse(out act, CanUseOption.MustUse)) return true; +// return false; +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/MNK_Base.cs b/RotationSolver.Basic/Rotations/Basic/MNK_Base.cs index 27e1d22e2..c1f76e3c4 100644 --- a/RotationSolver.Basic/Rotations/Basic/MNK_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/MNK_Base.cs @@ -1,337 +1,337 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of MNK. -/// -public abstract class MNK_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.MNK, Job.PGL }; - - #region Job Gauge - static MNKGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - protected static BeastChakra[] BeastChakras => JobGauge.BeastChakra; - - /// - /// - /// - public static byte Chakra => JobGauge.Chakra; - - /// - /// - /// - public static bool HasSolar => JobGauge.Nadi.HasFlag(Nadi.SOLAR); - - /// - /// - /// - public static bool HasLunar => JobGauge.Nadi.HasFlag(Nadi.LUNAR); - #endregion - - #region Attack Single - /// - /// - /// - public static IBaseAction BootShine { get; } = new BaseAction(ActionID.Bootshine); - - /// - /// - /// - public static IBaseAction DragonKick { get; } = new BaseAction(ActionID.DragonKick) - { - StatusProvide = new[] { StatusID.LeadenFist }, - }; - - /// - /// - /// - public static IBaseAction TwinSnakes { get; } = new BaseAction(ActionID.TwinSnakes, ActionOption.Dot); - - /// - /// - /// - public static IBaseAction TrueStrike { get; } = new BaseAction(ActionID.TrueStrike); - - /// - /// - /// - public static IBaseAction Demolish { get; } = new BaseAction(ActionID.Demolish, ActionOption.Dot) - { - TargetStatus = new StatusID[] { StatusID.Demolish }, - GetDotGcdCount = () => 3, - }; - - /// - /// - /// - public static IBaseAction SnapPunch { get; } = new BaseAction(ActionID.SnapPunch); - - /// - /// - /// - public static IBaseAction SteelPeak { get; } = new BaseAction(ActionID.SteelPeak, ActionOption.UseResources) - { - ActionCheck = (b, m) => InCombat && Chakra == 5, - }; - #endregion - - #region Attack Area - /// - /// - /// - public static IBaseAction ArmOfTheDestroyer { get; } = new BaseAction(ActionID.ArmOfTheDestroyer); - - /// - /// - /// - public static IBaseAction FourPointFury { get; } = new BaseAction(ActionID.FourpointFury); - - /// - /// - /// - public static IBaseAction RockBreaker { get; } = new BaseAction(ActionID.Rockbreaker); - - /// - /// - /// - public static IBaseAction HowlingFist { get; } = new BaseAction(ActionID.HowlingFist) - { - ActionCheck = SteelPeak.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction ElixirField { get; } = new BaseAction(ActionID.ElixirField); - - /// - /// - /// - public static IBaseAction FlintStrike { get; } = new BaseAction(ActionID.FlintStrike); - - /// - /// - /// - public static IBaseAction RisingPhoenix { get; } = new BaseAction(ActionID.RisingPhoenix); - - /// - /// - /// - public static IBaseAction CelestialRevolution { get; } = new BaseAction(ActionID.CelestialRevolution); - - /// - /// - /// - public static IBaseAction TornadoKick { get; } = new BaseAction(ActionID.TornadoKick); - - /// - /// - /// - public static IBaseAction PhantomRush { get; } = new BaseAction(ActionID.PhantomRush); - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Mantra { get; } = new BaseAction(ActionID.Mantra, ActionOption.Heal) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction RiddleOfEarth { get; } = new BaseAction(ActionID.RiddleOfEarth, ActionOption.Defense) - { - StatusProvide = new[] { StatusID.RiddleOfEarth }, - }; - - /// - /// - /// - public static IBaseAction RiddleOfWind { get; } = new BaseAction(ActionID.RiddleOfWind) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction PerfectBalance { get; } = new BaseAction(ActionID.PerfectBalance) - { - ActionCheck = (b, m) => InCombat && IsLongerThan(5), - }; - - /// - /// - /// - public static IBaseAction Meditation { get; } = new BaseAction(ActionID.Meditation); - - /// - /// - /// - public static IBaseAction FormShift { get; } = new BaseAction(ActionID.FormShift, ActionOption.Buff) - { - StatusProvide = new[] { StatusID.FormlessFist, StatusID.PerfectBalance }, - }; - - /// - /// - /// - public static IBaseAction Brotherhood { get; } = new BaseAction(ActionID.Brotherhood, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10) - }; - - /// - /// - /// - public static IBaseAction RiddleOfFire { get; } = new BaseAction(ActionID.RiddleOfFire) - { - ActionCheck = (b, m) => IsLongerThan(10) - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait DeepMeditation { get; } = new BaseTrait(160); - - /// - /// - /// - public static IBaseTrait DeepMeditation2 { get; } = new BaseTrait(245); - - /// - /// - /// - public static IBaseTrait GreasedLightning { get; } = new BaseTrait(364); - - /// - /// - /// - public static IBaseTrait EnhancedGreasedLightning { get; } = new BaseTrait(365); - - /// - /// - /// - public static IBaseTrait EnhancedGreasedLightning2 { get; } = new BaseTrait(366); - - /// - /// - /// - public static IBaseTrait EnhancedGreasedLightning3 { get; } = new BaseTrait(367); - - /// - /// - /// - public static IBaseTrait SteelPeakMastery { get; } = new BaseTrait(428); - - /// - /// - /// - public static IBaseTrait HowlingFistMastery { get; } = new BaseTrait(429); - - /// - /// - /// - public static IBaseTrait ArmOfTheDestroyerMastery { get; } = new BaseTrait(430); - - /// - /// - /// - public static IBaseTrait EnhancedThunderclap { get; } = new BaseTrait(431); - - /// - /// - /// - public static IBaseTrait EnhancedBrotherhood { get; } = new BaseTrait(432); - - /// - /// - /// - public static IBaseTrait EnhancedPerfectBalance { get; } = new BaseTrait(433); - - /// - /// - /// - public static IBaseTrait FlintStrikeMastery { get; } = new BaseTrait(512); - - /// - /// - /// - public static IBaseTrait TornadoKickMastery { get; } = new BaseTrait(513); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(518); - #endregion +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of MNK. +///// +//public abstract class MNK_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.MNK, Job.PGL }; + +// #region Job Gauge +// static MNKGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// protected static BeastChakra[] BeastChakras => JobGauge.BeastChakra; + +// /// +// /// +// /// +// public static byte Chakra => JobGauge.Chakra; + +// /// +// /// +// /// +// public static bool HasSolar => JobGauge.Nadi.HasFlag(Nadi.SOLAR); + +// /// +// /// +// /// +// public static bool HasLunar => JobGauge.Nadi.HasFlag(Nadi.LUNAR); +// #endregion + +// #region Attack Single +// /// +// /// +// /// +// public static IBaseAction BootShine { get; } = new BaseAction(ActionID.Bootshine); + +// /// +// /// +// /// +// public static IBaseAction DragonKick { get; } = new BaseAction(ActionID.DragonKick) +// { +// StatusProvide = new[] { StatusID.LeadenFist }, +// }; + +// /// +// /// +// /// +// public static IBaseAction TwinSnakes { get; } = new BaseAction(ActionID.TwinSnakes, ActionOption.Dot); + +// /// +// /// +// /// +// public static IBaseAction TrueStrike { get; } = new BaseAction(ActionID.TrueStrike); + +// /// +// /// +// /// +// public static IBaseAction Demolish { get; } = new BaseAction(ActionID.Demolish, ActionOption.Dot) +// { +// TargetStatus = new StatusID[] { StatusID.Demolish }, +// GetDotGcdCount = () => 3, +// }; + +// /// +// /// +// /// +// public static IBaseAction SnapPunch { get; } = new BaseAction(ActionID.SnapPunch); + +// /// +// /// +// /// +// public static IBaseAction SteelPeak { get; } = new BaseAction(ActionID.SteelPeak, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => InCombat && Chakra == 5, +// }; +// #endregion + +// #region Attack Area +// /// +// /// +// /// +// public static IBaseAction ArmOfTheDestroyer { get; } = new BaseAction(ActionID.ArmOfTheDestroyer); + +// /// +// /// +// /// +// public static IBaseAction FourPointFury { get; } = new BaseAction(ActionID.FourpointFury); + +// /// +// /// +// /// +// public static IBaseAction RockBreaker { get; } = new BaseAction(ActionID.Rockbreaker); + +// /// +// /// +// /// +// public static IBaseAction HowlingFist { get; } = new BaseAction(ActionID.HowlingFist) +// { +// ActionCheck = SteelPeak.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction ElixirField { get; } = new BaseAction(ActionID.ElixirField); + +// /// +// /// +// /// +// public static IBaseAction FlintStrike { get; } = new BaseAction(ActionID.FlintStrike); + +// /// +// /// +// /// +// public static IBaseAction RisingPhoenix { get; } = new BaseAction(ActionID.RisingPhoenix); + +// /// +// /// +// /// +// public static IBaseAction CelestialRevolution { get; } = new BaseAction(ActionID.CelestialRevolution); + +// /// +// /// +// /// +// public static IBaseAction TornadoKick { get; } = new BaseAction(ActionID.TornadoKick); + +// /// +// /// +// /// +// public static IBaseAction PhantomRush { get; } = new BaseAction(ActionID.PhantomRush); +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction Mantra { get; } = new BaseAction(ActionID.Mantra, ActionOption.Heal) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction RiddleOfEarth { get; } = new BaseAction(ActionID.RiddleOfEarth, ActionOption.Defense) +// { +// StatusProvide = new[] { StatusID.RiddleOfEarth }, +// }; + +// /// +// /// +// /// +// public static IBaseAction RiddleOfWind { get; } = new BaseAction(ActionID.RiddleOfWind) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction PerfectBalance { get; } = new BaseAction(ActionID.PerfectBalance) +// { +// ActionCheck = (b, m) => InCombat && IsLongerThan(5), +// }; + +// /// +// /// +// /// +// public static IBaseAction Meditation { get; } = new BaseAction(ActionID.Meditation); + +// /// +// /// +// /// +// public static IBaseAction FormShift { get; } = new BaseAction(ActionID.FormShift, ActionOption.Buff) +// { +// StatusProvide = new[] { StatusID.FormlessFist, StatusID.PerfectBalance }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Brotherhood { get; } = new BaseAction(ActionID.Brotherhood, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10) +// }; + +// /// +// /// +// /// +// public static IBaseAction RiddleOfFire { get; } = new BaseAction(ActionID.RiddleOfFire) +// { +// ActionCheck = (b, m) => IsLongerThan(10) +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait DeepMeditation { get; } = new BaseTrait(160); + +// /// +// /// +// /// +// public static IBaseTrait DeepMeditation2 { get; } = new BaseTrait(245); + +// /// +// /// +// /// +// public static IBaseTrait GreasedLightning { get; } = new BaseTrait(364); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedGreasedLightning { get; } = new BaseTrait(365); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedGreasedLightning2 { get; } = new BaseTrait(366); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedGreasedLightning3 { get; } = new BaseTrait(367); + +// /// +// /// +// /// +// public static IBaseTrait SteelPeakMastery { get; } = new BaseTrait(428); + +// /// +// /// +// /// +// public static IBaseTrait HowlingFistMastery { get; } = new BaseTrait(429); + +// /// +// /// +// /// +// public static IBaseTrait ArmOfTheDestroyerMastery { get; } = new BaseTrait(430); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedThunderclap { get; } = new BaseTrait(431); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedBrotherhood { get; } = new BaseTrait(432); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedPerfectBalance { get; } = new BaseTrait(433); + +// /// +// /// +// /// +// public static IBaseTrait FlintStrikeMastery { get; } = new BaseTrait(512); + +// /// +// /// +// /// +// public static IBaseTrait TornadoKickMastery { get; } = new BaseTrait(513); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(518); +// #endregion - /// - /// - /// - public static IBaseAction Thunderclap { get; } = new BaseAction(ActionID.Thunderclap, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - private protected override IBaseAction LimitBreak => FinalHeaven; - - /// - /// LB - /// - public static IBaseAction FinalHeaven { get; } = new BaseAction(ActionID.FinalHeaven) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.Thunderclap)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Thunderclap.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Feint)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Feint.CanUse(out act)) return true; - return base.DefenseAreaAbility(out act); - } - - /// - [RotationDesc(ActionID.Mantra)] - protected sealed override bool HealAreaAbility(out IAction act) - { - if (Mantra.CanUse(out act)) return true; - return base.HealAreaAbility(out act); - } - - /// - [RotationDesc(ActionID.RiddleOfEarth)] - protected sealed override bool DefenseSingleAbility(out IAction act) - { - if (RiddleOfEarth.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; - return base.DefenseSingleAbility(out act); - } -} +// /// +// /// +// /// +// public static IBaseAction Thunderclap { get; } = new BaseAction(ActionID.Thunderclap, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// private protected override IBaseAction LimitBreak => FinalHeaven; + +// /// +// /// LB +// /// +// public static IBaseAction FinalHeaven { get; } = new BaseAction(ActionID.FinalHeaven) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.Thunderclap)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Thunderclap.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Feint)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Feint.CanUse(out act)) return true; +// return base.DefenseAreaAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Mantra)] +// protected sealed override bool HealAreaAbility(out IAction act) +// { +// if (Mantra.CanUse(out act)) return true; +// return base.HealAreaAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.RiddleOfEarth)] +// protected sealed override bool DefenseSingleAbility(out IAction act) +// { +// if (RiddleOfEarth.CanUse(out act, CanUseOption.EmptyOrSkipCombo)) return true; +// return base.DefenseSingleAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/NIN_Base.cs b/RotationSolver.Basic/Rotations/Basic/NIN_Base.cs index b81959c61..707d8aced 100644 --- a/RotationSolver.Basic/Rotations/Basic/NIN_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/NIN_Base.cs @@ -1,465 +1,465 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// NIN action. -/// -public interface INinAction : IBaseAction -{ - /// - /// The aciton it needs. - /// - IBaseAction[] Ninjutsu { get; } -} - -/// -/// The base class of Nin. -/// -public abstract class NIN_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Dexterity; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.NIN, Job.ROG }; - - #region Job Gauge - static NINGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Ninki => JobGauge.Ninki; - - static float HutonTimeRaw => JobGauge.HutonTimer / 1000f; - - /// - /// - /// - public static float HutonTime => HutonTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool HutonEndAfter(float time) => HutonTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool HutonEndAfterGCD(uint gctCount = 0, float offset = 0) - => HutonEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction SpinningEdge { get; } = new BaseAction(ActionID.SpinningEdge); - - /// - /// 2 - /// - public static IBaseAction GustSlash { get; } = new BaseAction(ActionID.GustSlash); - - /// - /// 3 - /// - public static IBaseAction AeolianEdge { get; } = new BaseAction(ActionID.AeolianEdge); - - /// - /// 4 - /// - public static IBaseAction ArmorCrush { get; } = new BaseAction(ActionID.ArmorCrush) - { - ActionCheck = (b, m) => HutonEndAfter(25) && !HutonEndAfterGCD(), - }; - - /// - /// - /// - public static IBaseAction Huraijin { get; } = new BaseAction(ActionID.Huraijin) - { - ActionCheck = (b, m) => HutonEndAfterGCD(), - }; - - /// - /// - /// - public static IBaseAction PhantomKamaitachi { get; } = new BaseAction(ActionID.PhantomKamaitachi) - { - StatusNeed = new[] { StatusID.PhantomKamaitachiReady }, - }; - - /// - /// - /// - public static IBaseAction ThrowingDagger { get; } = new BaseAction(ActionID.ThrowingDagger) - { - FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction Assassinate { get; } = new BaseAction(ActionID.Assassinate); - - /// - /// - /// - public static IBaseAction DreamWithinADream { get; } = new BaseAction(ActionID.DreamWithinADream); - - /// - /// - /// - public static IBaseAction Bhavacakra { get; } = new BaseAction(ActionID.Bhavacakra, ActionOption.UseResources) - { - ActionCheck = (b, m) => Ninki >= 50, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction DeathBlossom { get; } = new BaseAction(ActionID.DeathBlossom); - - /// - /// 2 - /// - public static IBaseAction HakkeMujinsatsu { get; } = new BaseAction(ActionID.HakkeMujinsatsu); - - /// - /// - /// - public static IBaseAction HellfrogMedium { get; } = new BaseAction(ActionID.HellfrogMedium) - { - ActionCheck = Bhavacakra.ActionCheck, - }; - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Meisui { get; } = new BaseAction(ActionID.Meisui) - { - StatusNeed = new[] { StatusID.Suiton }, - ActionCheck = (b, m) => JobGauge.Ninki <= 50, - }; - - /// - /// - /// - public static IBaseAction Hide { get; } = new BaseAction(ActionID.Hide, ActionOption.Buff); - - /// - /// - /// - public static IBaseAction ShadeShift { get; } = new BaseAction(ActionID.ShadeShift, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Mug { get; } = new BaseAction(ActionID.Mug) - { - ActionCheck = (b, m) => JobGauge.Ninki <= 60 && IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction TrickAttack { get; } = new BaseAction(ActionID.TrickAttack) - { - StatusNeed = new StatusID[] { StatusID.Suiton, StatusID.Hidden }, - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Bunshin { get; } = new BaseAction(ActionID.Bunshin) - { - ActionCheck = Bhavacakra.ActionCheck, - }; - #endregion - - #region Ninjutsu - /// - /// - /// - public static IBaseAction Ten { get; } = new BaseAction(ActionID.Ten, ActionOption.Buff); - - /// - /// - /// - public static IBaseAction Chi { get; } = new BaseAction(ActionID.Chi, ActionOption.Buff); - - /// - /// - /// - public static IBaseAction Jin { get; } = new BaseAction(ActionID.Jin, ActionOption.Buff); - - /// - /// - /// - public static IBaseAction TenChiJin { get; } = new BaseAction(ActionID.TenChiJin) - { - StatusProvide = new[] { StatusID.Kassatsu, StatusID.TenChiJin }, - ActionCheck = (b, m) => !HutonEndAfterGCD(), - }; - - /// - /// - /// - public static IBaseAction FumaShurikenTen { get; } = new BaseAction(ActionID.FumaShuriken_18873); - - /// - /// - /// - public static IBaseAction FumaShurikenJin { get; } = new BaseAction(ActionID.FumaShuriken_18875); - - /// - /// - /// - public static IBaseAction KatonTen { get; } = new BaseAction(ActionID.Katon_18876); - - /// - /// - /// - public static IBaseAction RaitonChi { get; } = new BaseAction(ActionID.Raiton_18877); - - /// - /// - /// - public static IBaseAction DotonChi { get; } = new BaseAction(ActionID.Doton_18880); - - /// - /// - /// - public static IBaseAction SuitonJin { get; } = new BaseAction(ActionID.Suiton_18881); - - /// - /// - /// - public static IBaseAction Kassatsu { get; } = new BaseAction(ActionID.Kassatsu) - { - StatusProvide = TenChiJin.StatusProvide, - }; - - /// - /// - /// - public class NinAction : BaseAction, INinAction - { - /// - /// - /// - public IBaseAction[] Ninjutsu { get; } - - internal NinAction(ActionID actionID, params IBaseAction[] ninjutsu) - : base(actionID) - { - Ninjutsu = ninjutsu; - } - } - - /// - /// - /// - public static INinAction RabbitMedium { get; } = new NinAction(ActionID.RabbitMedium); - - /// - /// - /// - public static INinAction FumaShuriken { get; } = new NinAction(ActionID.FumaShuriken, Ten); - - /// - /// - /// - public static INinAction Katon { get; } = new NinAction(ActionID.Katon, Chi, Ten); - - /// - /// - /// - public static INinAction Raiton { get; } = new NinAction(ActionID.Raiton, Ten, Chi); - - /// - /// - /// - public static INinAction Hyoton { get; } = new NinAction(ActionID.Hyoton, Ten, Jin); - - /// - /// - /// - public static INinAction Huton { get; } = new NinAction(ActionID.Huton, Jin, Chi, Ten) - { - ActionCheck = (b, m) => HutonEndAfterGCD(), - }; - - /// - /// - /// - public static INinAction Doton { get; } = new NinAction(ActionID.Doton, Jin, Ten, Chi) - { - StatusProvide = new[] { StatusID.Doton }, - }; - - /// - /// - /// - public static INinAction Suiton { get; } = new NinAction(ActionID.Suiton, Ten, Chi, Jin) - { - StatusProvide = new[] { StatusID.Suiton }, - }; - - /// - /// - /// - public static INinAction GokaMekkyaku { get; } = new NinAction(ActionID.GokaMekkyaku, Chi, Ten); - - /// - /// - /// - public static INinAction HyoshoRanryu { get; } = new NinAction(ActionID.HyoshoRanryu, Ten, Jin); - - /// - /// - /// - public static IBaseAction FleetingRaiju { get; } = new BaseAction(ActionID.FleetingRaiju) - { - StatusNeed = new[] { StatusID.RaijuReady }, - }; - - /// - /// - /// - public static IBaseAction ForkedRaiju { get; } = new BaseAction(ActionID.ForkedRaiju) - { - StatusNeed = FleetingRaiju.StatusNeed, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait AllFours { get; } = new BaseTrait(90); - - /// - /// - /// - public static IBaseTrait FleetOfFoot { get; } = new BaseTrait(93); - - /// - /// - /// - public static IBaseTrait Shukiho { get; } = new BaseTrait(165); - - /// - /// - /// - public static IBaseTrait EnhancedShukuchi { get; } = new BaseTrait(166); - - /// - /// - /// - public static IBaseTrait EnhancedMug { get; } = new BaseTrait(167); - - /// - /// - /// - public static IBaseTrait EnhancedKassatsu { get; } = new BaseTrait(250); - - /// - /// - /// - public static IBaseTrait EnhancedShukuchi2 { get; } = new BaseTrait(279); - - /// - /// - /// - public static IBaseTrait Shukiho2 { get; } = new BaseTrait(280); - - /// - /// - /// - public static IBaseTrait Shukiho3 { get; } = new BaseTrait(439); - - /// - /// - /// - public static IBaseTrait EnhancedMeisui { get; } = new BaseTrait(440); - - /// - /// - /// - public static IBaseTrait EnhancedRaiton { get; } = new BaseTrait(441); - - /// - /// - /// - public static IBaseTrait AdeptAssassination { get; } = new BaseTrait(515); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(516); - - /// - /// - /// - public static IBaseTrait MeleeMastery2 { get; } = new BaseTrait(522); - #endregion - - private protected override IBaseAction LimitBreak => Chimatsuri; - - /// - /// LB - /// - public static IBaseAction Chimatsuri { get; } = new BaseAction(ActionID.Chimatsuri) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - /// - /// - public static IBaseAction Shukuchi { get; } = new BaseAction(ActionID.Shukuchi, ActionOption.EndSpecial); - - /// - [RotationDesc(ActionID.Shukuchi)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Shukuchi.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Feint)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Feint.CanUse(out act)) return true; - return base.DefenseAreaAbility(out act); - } - - /// - [RotationDesc(ActionID.ShadeShift)] - protected override bool DefenseSingleAbility(out IAction act) - { - if (ShadeShift.CanUse(out act)) return true; - return base.DefenseSingleAbility(out act); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// NIN action. +///// +//public interface INinAction : IBaseAction +//{ +// /// +// /// The aciton it needs. +// /// +// IBaseAction[] Ninjutsu { get; } +//} + +///// +///// The base class of Nin. +///// +//public abstract class NIN_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Dexterity; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.NIN, Job.ROG }; + +// #region Job Gauge +// static NINGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Ninki => JobGauge.Ninki; + +// static float HutonTimeRaw => JobGauge.HutonTimer / 1000f; + +// /// +// /// +// /// +// public static float HutonTime => HutonTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool HutonEndAfter(float time) => HutonTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool HutonEndAfterGCD(uint gctCount = 0, float offset = 0) +// => HutonEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction SpinningEdge { get; } = new BaseAction(ActionID.SpinningEdge); + +// /// +// /// 2 +// /// +// public static IBaseAction GustSlash { get; } = new BaseAction(ActionID.GustSlash); + +// /// +// /// 3 +// /// +// public static IBaseAction AeolianEdge { get; } = new BaseAction(ActionID.AeolianEdge); + +// /// +// /// 4 +// /// +// public static IBaseAction ArmorCrush { get; } = new BaseAction(ActionID.ArmorCrush) +// { +// ActionCheck = (b, m) => HutonEndAfter(25) && !HutonEndAfterGCD(), +// }; + +// /// +// /// +// /// +// public static IBaseAction Huraijin { get; } = new BaseAction(ActionID.Huraijin) +// { +// ActionCheck = (b, m) => HutonEndAfterGCD(), +// }; + +// /// +// /// +// /// +// public static IBaseAction PhantomKamaitachi { get; } = new BaseAction(ActionID.PhantomKamaitachi) +// { +// StatusNeed = new[] { StatusID.PhantomKamaitachiReady }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ThrowingDagger { get; } = new BaseAction(ActionID.ThrowingDagger) +// { +// FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction Assassinate { get; } = new BaseAction(ActionID.Assassinate); + +// /// +// /// +// /// +// public static IBaseAction DreamWithinADream { get; } = new BaseAction(ActionID.DreamWithinADream); + +// /// +// /// +// /// +// public static IBaseAction Bhavacakra { get; } = new BaseAction(ActionID.Bhavacakra, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Ninki >= 50, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction DeathBlossom { get; } = new BaseAction(ActionID.DeathBlossom); + +// /// +// /// 2 +// /// +// public static IBaseAction HakkeMujinsatsu { get; } = new BaseAction(ActionID.HakkeMujinsatsu); + +// /// +// /// +// /// +// public static IBaseAction HellfrogMedium { get; } = new BaseAction(ActionID.HellfrogMedium) +// { +// ActionCheck = Bhavacakra.ActionCheck, +// }; +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction Meisui { get; } = new BaseAction(ActionID.Meisui) +// { +// StatusNeed = new[] { StatusID.Suiton }, +// ActionCheck = (b, m) => JobGauge.Ninki <= 50, +// }; + +// /// +// /// +// /// +// public static IBaseAction Hide { get; } = new BaseAction(ActionID.Hide, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBaseAction ShadeShift { get; } = new BaseAction(ActionID.ShadeShift, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Mug { get; } = new BaseAction(ActionID.Mug) +// { +// ActionCheck = (b, m) => JobGauge.Ninki <= 60 && IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction TrickAttack { get; } = new BaseAction(ActionID.TrickAttack) +// { +// StatusNeed = new StatusID[] { StatusID.Suiton, StatusID.Hidden }, +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction Bunshin { get; } = new BaseAction(ActionID.Bunshin) +// { +// ActionCheck = Bhavacakra.ActionCheck, +// }; +// #endregion + +// #region Ninjutsu +// /// +// /// +// /// +// public static IBaseAction Ten { get; } = new BaseAction(ActionID.Ten, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBaseAction Chi { get; } = new BaseAction(ActionID.Chi, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBaseAction Jin { get; } = new BaseAction(ActionID.Jin, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBaseAction TenChiJin { get; } = new BaseAction(ActionID.TenChiJin) +// { +// StatusProvide = new[] { StatusID.Kassatsu, StatusID.TenChiJin }, +// ActionCheck = (b, m) => !HutonEndAfterGCD(), +// }; + +// /// +// /// +// /// +// public static IBaseAction FumaShurikenTen { get; } = new BaseAction(ActionID.FumaShuriken_18873); + +// /// +// /// +// /// +// public static IBaseAction FumaShurikenJin { get; } = new BaseAction(ActionID.FumaShuriken_18875); + +// /// +// /// +// /// +// public static IBaseAction KatonTen { get; } = new BaseAction(ActionID.Katon_18876); + +// /// +// /// +// /// +// public static IBaseAction RaitonChi { get; } = new BaseAction(ActionID.Raiton_18877); + +// /// +// /// +// /// +// public static IBaseAction DotonChi { get; } = new BaseAction(ActionID.Doton_18880); + +// /// +// /// +// /// +// public static IBaseAction SuitonJin { get; } = new BaseAction(ActionID.Suiton_18881); + +// /// +// /// +// /// +// public static IBaseAction Kassatsu { get; } = new BaseAction(ActionID.Kassatsu) +// { +// StatusProvide = TenChiJin.StatusProvide, +// }; + +// /// +// /// +// /// +// public class NinAction : BaseAction, INinAction +// { +// /// +// /// +// /// +// public IBaseAction[] Ninjutsu { get; } + +// internal NinAction(ActionID actionID, params IBaseAction[] ninjutsu) +// : base(actionID) +// { +// Ninjutsu = ninjutsu; +// } +// } + +// /// +// /// +// /// +// public static INinAction RabbitMedium { get; } = new NinAction(ActionID.RabbitMedium); + +// /// +// /// +// /// +// public static INinAction FumaShuriken { get; } = new NinAction(ActionID.FumaShuriken, Ten); + +// /// +// /// +// /// +// public static INinAction Katon { get; } = new NinAction(ActionID.Katon, Chi, Ten); + +// /// +// /// +// /// +// public static INinAction Raiton { get; } = new NinAction(ActionID.Raiton, Ten, Chi); + +// /// +// /// +// /// +// public static INinAction Hyoton { get; } = new NinAction(ActionID.Hyoton, Ten, Jin); + +// /// +// /// +// /// +// public static INinAction Huton { get; } = new NinAction(ActionID.Huton, Jin, Chi, Ten) +// { +// ActionCheck = (b, m) => HutonEndAfterGCD(), +// }; + +// /// +// /// +// /// +// public static INinAction Doton { get; } = new NinAction(ActionID.Doton, Jin, Ten, Chi) +// { +// StatusProvide = new[] { StatusID.Doton }, +// }; + +// /// +// /// +// /// +// public static INinAction Suiton { get; } = new NinAction(ActionID.Suiton, Ten, Chi, Jin) +// { +// StatusProvide = new[] { StatusID.Suiton }, +// }; + +// /// +// /// +// /// +// public static INinAction GokaMekkyaku { get; } = new NinAction(ActionID.GokaMekkyaku, Chi, Ten); + +// /// +// /// +// /// +// public static INinAction HyoshoRanryu { get; } = new NinAction(ActionID.HyoshoRanryu, Ten, Jin); + +// /// +// /// +// /// +// public static IBaseAction FleetingRaiju { get; } = new BaseAction(ActionID.FleetingRaiju) +// { +// StatusNeed = new[] { StatusID.RaijuReady }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ForkedRaiju { get; } = new BaseAction(ActionID.ForkedRaiju) +// { +// StatusNeed = FleetingRaiju.StatusNeed, +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait AllFours { get; } = new BaseTrait(90); + +// /// +// /// +// /// +// public static IBaseTrait FleetOfFoot { get; } = new BaseTrait(93); + +// /// +// /// +// /// +// public static IBaseTrait Shukiho { get; } = new BaseTrait(165); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedShukuchi { get; } = new BaseTrait(166); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedMug { get; } = new BaseTrait(167); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedKassatsu { get; } = new BaseTrait(250); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedShukuchi2 { get; } = new BaseTrait(279); + +// /// +// /// +// /// +// public static IBaseTrait Shukiho2 { get; } = new BaseTrait(280); + +// /// +// /// +// /// +// public static IBaseTrait Shukiho3 { get; } = new BaseTrait(439); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedMeisui { get; } = new BaseTrait(440); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedRaiton { get; } = new BaseTrait(441); + +// /// +// /// +// /// +// public static IBaseTrait AdeptAssassination { get; } = new BaseTrait(515); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(516); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery2 { get; } = new BaseTrait(522); +// #endregion + +// private protected override IBaseAction LimitBreak => Chimatsuri; + +// /// +// /// LB +// /// +// public static IBaseAction Chimatsuri { get; } = new BaseAction(ActionID.Chimatsuri) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// /// +// /// +// public static IBaseAction Shukuchi { get; } = new BaseAction(ActionID.Shukuchi, ActionOption.EndSpecial); + +// /// +// [RotationDesc(ActionID.Shukuchi)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Shukuchi.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Feint)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Feint.CanUse(out act)) return true; +// return base.DefenseAreaAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.ShadeShift)] +// protected override bool DefenseSingleAbility(out IAction act) +// { +// if (ShadeShift.CanUse(out act)) return true; +// return base.DefenseSingleAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/PLD_Base.cs b/RotationSolver.Basic/Rotations/Basic/PLD_Base.cs index f958fb5bd..4338b2355 100644 --- a/RotationSolver.Basic/Rotations/Basic/PLD_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/PLD_Base.cs @@ -1,346 +1,346 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of PLD. -/// -public abstract class PLD_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.PLD, Job.GLA }; - - /// - /// - /// - public override bool CanHealSingleSpell => DataCenter.PartyMembers.Count() == 1 && base.CanHealSingleSpell; - - /// - /// - /// - public override bool CanHealAreaAbility => false; - - /// - /// - /// - public static bool HasDivineMight => !Player.WillStatusEndGCD(0, 0, true, StatusID.DivineMight); - - /// - /// - /// - public static bool HasFightOrFlight => !Player.WillStatusEndGCD(0, 0, true, StatusID.FightOrFlight); - - #region Job Gauge - private static PLDGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte OathGauge => JobGauge.OathGauge; - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction FastBlade { get; } = new BaseAction(ActionID.FastBlade); - - /// - /// 2 - /// - public static IBaseAction RiotBlade { get; } = new BaseAction(ActionID.RiotBlade); - - /// - /// 3 - /// - public static IBaseAction RageOfHalone { get; } = new BaseAction(ActionID.RageOfHalone); - - /// - /// - /// - public static IBaseAction GoringBlade { get; } = new BaseAction(ActionID.GoringBlade); - - /// - /// - /// - public static IBaseAction Atonement { get; } = new BaseAction(ActionID.Atonement) - { - StatusNeed = new[] { StatusID.SwordOath }, - }; - - /// - /// - /// - public static IBaseAction ShieldBash { get; } = new BaseAction(ActionID.ShieldBash) - { - FilterForHostiles = LowBlow.FilterForHostiles, - ActionCheck = (b, m) => LowBlow.IsCoolingDown, - StatusProvide = new StatusID[] { StatusID.Stun }, - }; - - /// - /// - /// - public static IBaseAction ShieldLob { get; } = new BaseAction(ActionID.ShieldLob) - { - FilterForHostiles = TargetFilter.TankRangeTarget, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction HolySpirit { get; } = new BaseAction(ActionID.HolySpirit); - - /// - /// - /// - public static IBaseAction Intervene { get; } = new BaseAction(ActionID.Intervene, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - /// - /// - /// - public static IBaseAction SpiritsWithin { get; } = new BaseAction(ActionID.SpiritsWithin); - - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction TotalEclipse { get; } = new BaseAction(ActionID.TotalEclipse); - - /// - /// 2 - /// - public static IBaseAction Prominence { get; } = new BaseAction(ActionID.Prominence); - - /// - /// - /// - public static IBaseAction CircleOfScorn { get; } = new BaseAction(ActionID.CircleOfScorn); - - /// - /// - /// - public static IBaseAction HolyCircle { get; } = new BaseAction(ActionID.HolyCircle); - - /// - /// - /// - public static IBaseAction Confiteor { get; } = new BaseAction(ActionID.Confiteor); - #endregion - - #region Heal - private protected sealed override IBaseAction TankStance => IronWill; - - /// - /// - /// - public static IBaseAction IronWill { get; } = new BaseAction(ActionID.IronWill, ActionOption.Friendly); - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Requiescat { get; } = new BaseAction(ActionID.Requiescat, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction FightOrFlight { get; } = new BaseAction(ActionID.FightOrFlight, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction HallowedGround { get; } = new BaseAction(ActionID.HallowedGround, ActionOption.Defense | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction DivineVeil { get; } = new BaseAction(ActionID.DivineVeil, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Sentinel { get; } = new BaseAction(ActionID.Sentinel, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction PassageOfArms { get; } = new BaseAction(ActionID.PassageOfArms, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Cover { get; } = new BaseAction(ActionID.Cover, ActionOption.Defense | ActionOption.UseResources) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - ActionCheck = (b, m) => OathGauge >= 50, - }; - - /// - /// - /// - public static IBaseAction Intervention { get; } = new BaseAction(ActionID.Intervention, ActionOption.Defense | ActionOption.UseResources) - { - ActionCheck = Cover.ActionCheck, - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction Sheltron { get; } = new BaseAction(ActionID.Sheltron, ActionOption.Defense) - { - ActionCheck = (b, m) => BaseAction.TankDefenseSelf(b, m) && Cover.ActionCheck(b, m), - }; - - /// - /// - /// - public static IBaseAction Bulwark { get; } = new BaseAction(ActionID.Bulwark, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction Clemency { get; } = new BaseAction(ActionID.Clemency, ActionOption.Defense | ActionOption.EndSpecial); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait DivineMagicMastery { get; } = new BaseTrait(207); - - /// - /// - /// - public static IBaseTrait OathMastery { get; } = new BaseTrait(209); - - /// - /// - /// - public static IBaseTrait Chivalry { get; } = new BaseTrait(246); - - /// - /// - /// - public static IBaseTrait RageOfHaloneMastery { get; } = new BaseTrait(260); - - /// - /// - /// - public static IBaseTrait EnhancedProminence { get; } = new BaseTrait(261); - - /// - /// - /// - public static IBaseTrait EnhancedSheltron { get; } = new BaseTrait(262); - - /// - /// - /// - public static IBaseTrait EnhancedRequiescat { get; } = new BaseTrait(263); - - /// - /// - /// - public static IBaseTrait SwordOath { get; } = new BaseTrait(264); - - /// - /// - /// - public static IBaseTrait TankMastery { get; } = new BaseTrait(317); - - /// - /// - /// - public static IBaseTrait SheltronMastery { get; } = new BaseTrait(412); - - /// - /// - /// - public static IBaseTrait EnhancedIntervention { get; } = new BaseTrait(413); - - /// - /// - /// - public static IBaseTrait DivineMagicMastery2 { get; } = new BaseTrait(414); - - /// - /// - /// - public static IBaseTrait SpiritsWithinMastery { get; } = new BaseTrait(415); - - /// - /// - /// - public static IBaseTrait EnhancedDivineVeil { get; } = new BaseTrait(416); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(504); - #endregion - - private protected override IBaseAction LimitBreak => LastBastion; - - /// - /// LB - /// - public static IBaseAction LastBastion { get; } = new BaseAction(ActionID.LastBastion, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - protected override bool EmergencyAbility(IAction nextGCD, out IAction act) - { - if (HallowedGround.CanUse(out act) && BaseAction.CanTankBurst()) return true; - return base.EmergencyAbility(nextGCD, out act); - } - - /// - [RotationDesc(ActionID.Intervene)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Intervene.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Clemency)] - protected sealed override bool HealSingleGCD(out IAction act) - { - if (Clemency.CanUse(out act)) return true; - return base.HealSingleGCD(out act); - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of PLD. +///// +//public abstract class PLD_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.PLD, Job.GLA }; + +// /// +// /// +// /// +// public override bool CanHealSingleSpell => DataCenter.PartyMembers.Count() == 1 && base.CanHealSingleSpell; + +// /// +// /// +// /// +// public override bool CanHealAreaAbility => false; + +// /// +// /// +// /// +// public static bool HasDivineMight => !Player.WillStatusEndGCD(0, 0, true, StatusID.DivineMight); + +// /// +// /// +// /// +// public static bool HasFightOrFlight => !Player.WillStatusEndGCD(0, 0, true, StatusID.FightOrFlight); + +// #region Job Gauge +// private static PLDGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte OathGauge => JobGauge.OathGauge; +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction FastBlade { get; } = new BaseAction(ActionID.FastBlade); + +// /// +// /// 2 +// /// +// public static IBaseAction RiotBlade { get; } = new BaseAction(ActionID.RiotBlade); + +// /// +// /// 3 +// /// +// public static IBaseAction RageOfHalone { get; } = new BaseAction(ActionID.RageOfHalone); + +// /// +// /// +// /// +// public static IBaseAction GoringBlade { get; } = new BaseAction(ActionID.GoringBlade); + +// /// +// /// +// /// +// public static IBaseAction Atonement { get; } = new BaseAction(ActionID.Atonement) +// { +// StatusNeed = new[] { StatusID.SwordOath }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ShieldBash { get; } = new BaseAction(ActionID.ShieldBash) +// { +// FilterForHostiles = LowBlow.FilterForHostiles, +// ActionCheck = (b, m) => LowBlow.IsCoolingDown, +// StatusProvide = new StatusID[] { StatusID.Stun }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ShieldLob { get; } = new BaseAction(ActionID.ShieldLob) +// { +// FilterForHostiles = TargetFilter.TankRangeTarget, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction HolySpirit { get; } = new BaseAction(ActionID.HolySpirit); + +// /// +// /// +// /// +// public static IBaseAction Intervene { get; } = new BaseAction(ActionID.Intervene, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// /// +// /// +// /// +// public static IBaseAction SpiritsWithin { get; } = new BaseAction(ActionID.SpiritsWithin); + +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction TotalEclipse { get; } = new BaseAction(ActionID.TotalEclipse); + +// /// +// /// 2 +// /// +// public static IBaseAction Prominence { get; } = new BaseAction(ActionID.Prominence); + +// /// +// /// +// /// +// public static IBaseAction CircleOfScorn { get; } = new BaseAction(ActionID.CircleOfScorn); + +// /// +// /// +// /// +// public static IBaseAction HolyCircle { get; } = new BaseAction(ActionID.HolyCircle); + +// /// +// /// +// /// +// public static IBaseAction Confiteor { get; } = new BaseAction(ActionID.Confiteor); +// #endregion + +// #region Heal +// private protected sealed override IBaseAction TankStance => IronWill; + +// /// +// /// +// /// +// public static IBaseAction IronWill { get; } = new BaseAction(ActionID.IronWill, ActionOption.Friendly); +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction Requiescat { get; } = new BaseAction(ActionID.Requiescat, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction FightOrFlight { get; } = new BaseAction(ActionID.FightOrFlight, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction HallowedGround { get; } = new BaseAction(ActionID.HallowedGround, ActionOption.Defense | ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBaseAction DivineVeil { get; } = new BaseAction(ActionID.DivineVeil, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Sentinel { get; } = new BaseAction(ActionID.Sentinel, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction PassageOfArms { get; } = new BaseAction(ActionID.PassageOfArms, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Cover { get; } = new BaseAction(ActionID.Cover, ActionOption.Defense | ActionOption.UseResources) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// ActionCheck = (b, m) => OathGauge >= 50, +// }; + +// /// +// /// +// /// +// public static IBaseAction Intervention { get; } = new BaseAction(ActionID.Intervention, ActionOption.Defense | ActionOption.UseResources) +// { +// ActionCheck = Cover.ActionCheck, +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction Sheltron { get; } = new BaseAction(ActionID.Sheltron, ActionOption.Defense) +// { +// ActionCheck = (b, m) => BaseAction.TankDefenseSelf(b, m) && Cover.ActionCheck(b, m), +// }; + +// /// +// /// +// /// +// public static IBaseAction Bulwark { get; } = new BaseAction(ActionID.Bulwark, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction Clemency { get; } = new BaseAction(ActionID.Clemency, ActionOption.Defense | ActionOption.EndSpecial); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait DivineMagicMastery { get; } = new BaseTrait(207); + +// /// +// /// +// /// +// public static IBaseTrait OathMastery { get; } = new BaseTrait(209); + +// /// +// /// +// /// +// public static IBaseTrait Chivalry { get; } = new BaseTrait(246); + +// /// +// /// +// /// +// public static IBaseTrait RageOfHaloneMastery { get; } = new BaseTrait(260); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedProminence { get; } = new BaseTrait(261); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSheltron { get; } = new BaseTrait(262); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedRequiescat { get; } = new BaseTrait(263); + +// /// +// /// +// /// +// public static IBaseTrait SwordOath { get; } = new BaseTrait(264); + +// /// +// /// +// /// +// public static IBaseTrait TankMastery { get; } = new BaseTrait(317); + +// /// +// /// +// /// +// public static IBaseTrait SheltronMastery { get; } = new BaseTrait(412); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedIntervention { get; } = new BaseTrait(413); + +// /// +// /// +// /// +// public static IBaseTrait DivineMagicMastery2 { get; } = new BaseTrait(414); + +// /// +// /// +// /// +// public static IBaseTrait SpiritsWithinMastery { get; } = new BaseTrait(415); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDivineVeil { get; } = new BaseTrait(416); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(504); +// #endregion + +// private protected override IBaseAction LimitBreak => LastBastion; + +// /// +// /// LB +// /// +// public static IBaseAction LastBastion { get; } = new BaseAction(ActionID.LastBastion, ActionOption.Defense) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// protected override bool EmergencyAbility(IAction nextGCD, out IAction act) +// { +// if (HallowedGround.CanUse(out act) && BaseAction.CanTankBurst()) return true; +// return base.EmergencyAbility(nextGCD, out act); +// } + +// /// +// [RotationDesc(ActionID.Intervene)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Intervene.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Clemency)] +// protected sealed override bool HealSingleGCD(out IAction act) +// { +// if (Clemency.CanUse(out act)) return true; +// return base.HealSingleGCD(out act); +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/RDM_Base.cs b/RotationSolver.Basic/Rotations/Basic/RDM_Base.cs index 54c2fcd75..007aca2bc 100644 --- a/RotationSolver.Basic/Rotations/Basic/RDM_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/RDM_Base.cs @@ -1,347 +1,347 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of RDM. -/// -public abstract class RDM_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Intelligence; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.RDM }; - - /// - /// - /// - public override bool CanHealSingleSpell => DataCenter.PartyMembers.Count() == 1 && base.CanHealSingleSpell; - - #region Job Gauge - static RDMGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte WhiteMana => JobGauge.WhiteMana; - - /// - /// - /// - public static byte BlackMana => JobGauge.BlackMana; - - /// - /// - /// - public static byte ManaStacks => JobGauge.ManaStacks; - - /// - /// Is larger than - /// - public static bool IsWhiteManaLargerThanBlackMana => WhiteMana > BlackMana; - #endregion - - #region Attack Single - /// - /// - /// - public static IBaseAction Jolt { get; } = new BaseAction(ActionID.Jolt) - { - StatusProvide = Swiftcast.StatusProvide.Union(new[] { StatusID.Acceleration }).ToArray(), - }; - - /// - /// - /// - public static IBaseAction Verfire { get; } = new BaseAction(ActionID.Verfire) - { - StatusNeed = new[] { StatusID.VerfireReady }, - StatusProvide = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Verstone { get; } = new BaseAction(ActionID.Verstone) - { - StatusNeed = new[] { StatusID.VerstoneReady }, - StatusProvide = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Verthunder { get; } = new BaseAction(ActionID.Verthunder) - { - StatusNeed = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Veraero { get; } = new BaseAction(ActionID.Veraero) - { - StatusNeed = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Riposte { get; } = new BaseAction(ActionID.Riposte, ActionOption.UseResources) - { - ActionCheck = (b, m) => BlackMana >= 20 && WhiteMana >= 20, - }; - - /// - /// - /// - public static IBaseAction Zwerchhau { get; } = new BaseAction(ActionID.Zwerchhau, ActionOption.UseResources) - { - ActionCheck = (b, m) => BlackMana >= 15 && WhiteMana >= 15, - }; - - /// - /// - /// - public static IBaseAction Redoublement { get; } = new BaseAction(ActionID.Redoublement, ActionOption.UseResources) - { - ActionCheck = (b, m) => BlackMana >= 15 && WhiteMana >= 15, - }; - - /// - /// - /// - public static IBaseAction Engagement { get; } = new BaseAction(ActionID.Engagement); - - /// - /// - /// - public static IBaseAction Fleche { get; } = new BaseAction(ActionID.Fleche); - - /// - /// - /// - public static IBaseAction CorpsACorps { get; } = new BaseAction(ActionID.Corpsacorps, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - #endregion - - #region Attack Area - /// - /// - /// - public static IBaseAction Scatter { get; } = new BaseAction(ActionID.Scatter) - { - StatusNeed = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Verthunder2 { get; } = new BaseAction(ActionID.VerthunderIi) - { - StatusProvide = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Veraero2 { get; } = new BaseAction(ActionID.VeraeroIi) - { - StatusProvide = Jolt.StatusProvide, - }; - - /// - /// - /// - public static IBaseAction Moulinet { get; } = new BaseAction(ActionID.Moulinet, ActionOption.UseResources) - { - ActionCheck = (b, m) => BlackMana >= 20 && WhiteMana >= 20, - }; - - /// - /// - /// - public static IBaseAction Verflare { get; } = new BaseAction(ActionID.Verflare); - - /// - /// - /// - public static IBaseAction Verholy { get; } = new BaseAction(ActionID.Verholy); - - /// - /// - /// - public static IBaseAction Scorch { get; } = new BaseAction(ActionID.Scorch) - { - ComboIds = new[] { ActionID.Verholy }, - }; - - /// - /// - /// - public static IBaseAction Resolution { get; } = new BaseAction(ActionID.Resolution); - - /// - /// - /// - public static IBaseAction ContreSixte { get; } = new BaseAction(ActionID.ContreSixte); - #endregion - - #region Support - private protected sealed override IBaseAction Raise => Verraise; - - /// - /// - /// - public static IBaseAction Verraise { get; } = new BaseAction(ActionID.Verraise, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Acceleration { get; } = new BaseAction(ActionID.Acceleration, ActionOption.Buff) - { - StatusProvide = new[] { StatusID.Acceleration }, - }; - - /// - /// - /// - public static IBaseAction Vercure { get; } = new BaseAction(ActionID.Vercure, ActionOption.Heal) - { - StatusProvide = Swiftcast.StatusProvide.Union(Acceleration.StatusProvide).ToArray(), - }; - - /// - /// - /// - public static IBaseAction MagickBarrier { get; } = new BaseAction(ActionID.MagickBarrier, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Embolden { get; } = new BaseAction(ActionID.Embolden, ActionOption.Buff) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Manafication { get; } = new BaseAction(ActionID.Manafication) - { - ActionCheck = (b, m) => WhiteMana <= 50 && BlackMana <= 50 && InCombat && ManaStacks == 0 && IsLongerThan(10), - ComboIdsNot = new[] { ActionID.Riposte, ActionID.Zwerchhau, ActionID.Scorch, ActionID.Verflare, ActionID.Verholy }, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait EnhancedJolt { get; } = new BaseTrait(195); - - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(200); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(201); - - /// - /// - /// - public static IBaseTrait Dualcast { get; } = new BaseTrait(216); - - /// - /// - /// - public static IBaseTrait ScatterMastery { get; } = new BaseTrait(303); - - /// - /// - /// - public static IBaseTrait EnhancedDisplacement { get; } = new BaseTrait(304); - - /// - /// - /// - public static IBaseTrait EnhancedManafication { get; } = new BaseTrait(305); - - /// - /// - /// - public static IBaseTrait RedMagicMastery { get; } = new BaseTrait(306); - - /// - /// - /// - public static IBaseTrait ManaStack { get; } = new BaseTrait(482); - - /// - /// - /// - public static IBaseTrait RedMagicMastery2 { get; } = new BaseTrait(483); - - /// - /// - /// - public static IBaseTrait RedMagicMastery3 { get; } = new BaseTrait(484); - - /// - /// - /// - public static IBaseTrait EnhancedAcceleration { get; } = new BaseTrait(485); - - /// - /// - /// - public static IBaseTrait EnhancedManafication2 { get; } = new BaseTrait(486); - #endregion - - private protected override IBaseAction LimitBreak => VermilionScourge; - - /// - /// LB - /// - public static IBaseAction VermilionScourge { get; } = new BaseAction(ActionID.VermilionScourge) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.Vercure)] - protected sealed override bool HealSingleGCD(out IAction act) - { - if (Vercure.CanUse(out act, CanUseOption.MustUse)) return true; - return base.HealSingleGCD(out act); - } - - /// - [RotationDesc(ActionID.Corpsacorps)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (CorpsACorps.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Addle, ActionID.MagickBarrier)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Addle.CanUse(out act)) return true; - if (MagickBarrier.CanUse(out act, CanUseOption.MustUse)) return true; - return base.DefenseAreaAbility(out act); - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of RDM. +///// +//public abstract class RDM_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Intelligence; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.RDM }; + +// /// +// /// +// /// +// public override bool CanHealSingleSpell => DataCenter.PartyMembers.Count() == 1 && base.CanHealSingleSpell; + +// #region Job Gauge +// static RDMGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte WhiteMana => JobGauge.WhiteMana; + +// /// +// /// +// /// +// public static byte BlackMana => JobGauge.BlackMana; + +// /// +// /// +// /// +// public static byte ManaStacks => JobGauge.ManaStacks; + +// /// +// /// Is larger than +// /// +// public static bool IsWhiteManaLargerThanBlackMana => WhiteMana > BlackMana; +// #endregion + +// #region Attack Single +// /// +// /// +// /// +// public static IBaseAction Jolt { get; } = new BaseAction(ActionID.Jolt) +// { +// StatusProvide = Swiftcast.StatusProvide.Union(new[] { StatusID.Acceleration }).ToArray(), +// }; + +// /// +// /// +// /// +// public static IBaseAction Verfire { get; } = new BaseAction(ActionID.Verfire) +// { +// StatusNeed = new[] { StatusID.VerfireReady }, +// StatusProvide = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Verstone { get; } = new BaseAction(ActionID.Verstone) +// { +// StatusNeed = new[] { StatusID.VerstoneReady }, +// StatusProvide = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Verthunder { get; } = new BaseAction(ActionID.Verthunder) +// { +// StatusNeed = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Veraero { get; } = new BaseAction(ActionID.Veraero) +// { +// StatusNeed = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Riposte { get; } = new BaseAction(ActionID.Riposte, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BlackMana >= 20 && WhiteMana >= 20, +// }; + +// /// +// /// +// /// +// public static IBaseAction Zwerchhau { get; } = new BaseAction(ActionID.Zwerchhau, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BlackMana >= 15 && WhiteMana >= 15, +// }; + +// /// +// /// +// /// +// public static IBaseAction Redoublement { get; } = new BaseAction(ActionID.Redoublement, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BlackMana >= 15 && WhiteMana >= 15, +// }; + +// /// +// /// +// /// +// public static IBaseAction Engagement { get; } = new BaseAction(ActionID.Engagement); + +// /// +// /// +// /// +// public static IBaseAction Fleche { get; } = new BaseAction(ActionID.Fleche); + +// /// +// /// +// /// +// public static IBaseAction CorpsACorps { get; } = new BaseAction(ActionID.Corpsacorps, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; +// #endregion + +// #region Attack Area +// /// +// /// +// /// +// public static IBaseAction Scatter { get; } = new BaseAction(ActionID.Scatter) +// { +// StatusNeed = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Verthunder2 { get; } = new BaseAction(ActionID.VerthunderIi) +// { +// StatusProvide = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Veraero2 { get; } = new BaseAction(ActionID.VeraeroIi) +// { +// StatusProvide = Jolt.StatusProvide, +// }; + +// /// +// /// +// /// +// public static IBaseAction Moulinet { get; } = new BaseAction(ActionID.Moulinet, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BlackMana >= 20 && WhiteMana >= 20, +// }; + +// /// +// /// +// /// +// public static IBaseAction Verflare { get; } = new BaseAction(ActionID.Verflare); + +// /// +// /// +// /// +// public static IBaseAction Verholy { get; } = new BaseAction(ActionID.Verholy); + +// /// +// /// +// /// +// public static IBaseAction Scorch { get; } = new BaseAction(ActionID.Scorch) +// { +// ComboIds = new[] { ActionID.Verholy }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Resolution { get; } = new BaseAction(ActionID.Resolution); + +// /// +// /// +// /// +// public static IBaseAction ContreSixte { get; } = new BaseAction(ActionID.ContreSixte); +// #endregion + +// #region Support +// private protected sealed override IBaseAction Raise => Verraise; + +// /// +// /// +// /// +// public static IBaseAction Verraise { get; } = new BaseAction(ActionID.Verraise, ActionOption.Friendly); + +// /// +// /// +// /// +// public static IBaseAction Acceleration { get; } = new BaseAction(ActionID.Acceleration, ActionOption.Buff) +// { +// StatusProvide = new[] { StatusID.Acceleration }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Vercure { get; } = new BaseAction(ActionID.Vercure, ActionOption.Heal) +// { +// StatusProvide = Swiftcast.StatusProvide.Union(Acceleration.StatusProvide).ToArray(), +// }; + +// /// +// /// +// /// +// public static IBaseAction MagickBarrier { get; } = new BaseAction(ActionID.MagickBarrier, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Embolden { get; } = new BaseAction(ActionID.Embolden, ActionOption.Buff) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction Manafication { get; } = new BaseAction(ActionID.Manafication) +// { +// ActionCheck = (b, m) => WhiteMana <= 50 && BlackMana <= 50 && InCombat && ManaStacks == 0 && IsLongerThan(10), +// ComboIdsNot = new[] { ActionID.Riposte, ActionID.Zwerchhau, ActionID.Scorch, ActionID.Verflare, ActionID.Verholy }, +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait EnhancedJolt { get; } = new BaseTrait(195); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(200); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(201); + +// /// +// /// +// /// +// public static IBaseTrait Dualcast { get; } = new BaseTrait(216); + +// /// +// /// +// /// +// public static IBaseTrait ScatterMastery { get; } = new BaseTrait(303); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDisplacement { get; } = new BaseTrait(304); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedManafication { get; } = new BaseTrait(305); + +// /// +// /// +// /// +// public static IBaseTrait RedMagicMastery { get; } = new BaseTrait(306); + +// /// +// /// +// /// +// public static IBaseTrait ManaStack { get; } = new BaseTrait(482); + +// /// +// /// +// /// +// public static IBaseTrait RedMagicMastery2 { get; } = new BaseTrait(483); + +// /// +// /// +// /// +// public static IBaseTrait RedMagicMastery3 { get; } = new BaseTrait(484); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAcceleration { get; } = new BaseTrait(485); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedManafication2 { get; } = new BaseTrait(486); +// #endregion + +// private protected override IBaseAction LimitBreak => VermilionScourge; + +// /// +// /// LB +// /// +// public static IBaseAction VermilionScourge { get; } = new BaseAction(ActionID.VermilionScourge) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.Vercure)] +// protected sealed override bool HealSingleGCD(out IAction act) +// { +// if (Vercure.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.HealSingleGCD(out act); +// } + +// /// +// [RotationDesc(ActionID.Corpsacorps)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (CorpsACorps.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Addle, ActionID.MagickBarrier)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Addle.CanUse(out act)) return true; +// if (MagickBarrier.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.DefenseAreaAbility(out act); +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/RPR_Base.cs b/RotationSolver.Basic/Rotations/Basic/RPR_Base.cs index 0da48d5f4..9f0af16ab 100644 --- a/RotationSolver.Basic/Rotations/Basic/RPR_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/RPR_Base.cs @@ -1,407 +1,407 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of RPR. -/// -public abstract class RPR_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.RPR }; - - /// - /// - /// - public static bool HasEnshrouded => Player.HasStatus(true, StatusID.Enshrouded); - - /// - /// - /// - public static bool HasSoulReaver => Player.HasStatus(true, StatusID.SoulReaver); - - #region JobGauge - static RPRGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Soul => JobGauge.Soul; - - /// - /// - /// - public static byte Shroud => JobGauge.Shroud; - - /// - /// - /// - public static byte LemureShroud => JobGauge.LemureShroud; - - /// - /// - /// - public static byte VoidShroud => JobGauge.VoidShroud; - #endregion - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction Slice { get; } = new BaseAction(ActionID.Slice) - { - ActionCheck = (b, m) => !HasEnshrouded && !HasSoulReaver, - }; - - /// - /// 2 - /// - public static IBaseAction WaxingSlice { get; } = new BaseAction(ActionID.WaxingSlice) - { - ActionCheck = Slice.ActionCheck, - }; - - /// - /// 3 - /// - public static IBaseAction InfernalSlice { get; } = new BaseAction(ActionID.InfernalSlice) - { - ActionCheck = Slice.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction ShadowOfDeath { get; } = new BaseAction(ActionID.ShadowOfDeath, ActionOption.Dot) - { - TargetStatus = new[] { StatusID.DeathsDesign }, - ActionCheck = (b, m) => !HasSoulReaver, - }; - - /// - /// - /// - public static IBaseAction SoulSlice { get; } = new BaseAction(ActionID.SoulSlice) - { - ActionCheck = (b, m) => Slice.ActionCheck(b, m) && Soul <= 50, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction SpinningScythe { get; } = new BaseAction(ActionID.SpinningScythe) - { - ActionCheck = Slice.ActionCheck, - }; - - /// - /// 2 - /// - public static IBaseAction NightmareScythe { get; } = new BaseAction(ActionID.NightmareScythe) - { - ActionCheck = Slice.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction WhorlOfDeath { get; } = new BaseAction(ActionID.WhorlOfDeath, ActionOption.Dot) - { - TargetStatus = new[] { StatusID.DeathsDesign }, - ActionCheck = ShadowOfDeath.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction SoulScythe { get; } = new BaseAction(ActionID.SoulScythe) - { - ActionCheck = SoulSlice.ActionCheck, - }; - #endregion - - #region Soul Reaver - /// - /// - /// - public static IBaseAction Gibbet { get; } = new BaseAction(ActionID.Gibbet) - { - StatusNeed = new[] { StatusID.SoulReaver } - }; - - /// - /// - /// - public static IBaseAction Gallows { get; } = new BaseAction(ActionID.Gallows) - { - StatusNeed = new[] { StatusID.SoulReaver } - }; - - /// - /// - /// - public static IBaseAction Guillotine { get; } = new BaseAction(ActionID.Guillotine) - { - StatusNeed = new[] { StatusID.SoulReaver } - }; - #endregion - - #region Soul - /// - /// - /// - public static IBaseAction BloodStalk { get; } = new BaseAction(ActionID.BloodStalk, ActionOption.UseResources) - { - StatusProvide = new[] { StatusID.SoulReaver }, - ActionCheck = (b, m) => Slice.ActionCheck(b, m) && Soul >= 50 - }; - - /// - /// - /// - public static IBaseAction GrimSwathe { get; } = new BaseAction(ActionID.GrimSwathe, ActionOption.UseResources) - { - StatusProvide = new[] { StatusID.SoulReaver }, - ActionCheck = BloodStalk.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction Gluttony { get; } = new BaseAction(ActionID.Gluttony, ActionOption.UseResources) - { - StatusProvide = new[] { StatusID.SoulReaver }, - ActionCheck = BloodStalk.ActionCheck, - }; - #endregion - - #region Burst - /// - /// - /// - public static IBaseAction ArcaneCircle { get; } = new BaseAction(ActionID.ArcaneCircle, ActionOption.Buff) - { - StatusProvide = [StatusID.BloodsownCircle_2972], - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction PlentifulHarvest { get; } = new BaseAction(ActionID.PlentifulHarvest) - { - StatusNeed = new[] { StatusID.ImmortalSacrifice }, - ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BloodsownCircle_2972) - }; - #endregion - - #region Shroud - /// - /// - /// - public static IBaseAction Enshroud { get; } = new BaseAction(ActionID.Enshroud, ActionOption.UseResources) - { - StatusProvide = new[] { StatusID.Enshrouded }, - ActionCheck = (b, m) => Shroud >= 50 && Slice.ActionCheck(b, m) - }; - - /// - /// - /// - public static IBaseAction Communio { get; } = new BaseAction(ActionID.Communio) - { - StatusNeed = new[] { StatusID.Enshrouded }, - ActionCheck = (b, m) => LemureShroud == 1 - }; - - /// - /// - /// - public static IBaseAction LemuresSlice { get; } = new BaseAction(ActionID.LemuresSlice) - { - StatusNeed = new[] { StatusID.Enshrouded }, - ActionCheck = (b, m) => VoidShroud >= 2, - }; - - /// - /// - /// - public static IBaseAction LemuresScythe { get; } = new BaseAction(ActionID.LemuresScythe) - { - StatusNeed = new[] { StatusID.Enshrouded }, - ActionCheck = LemuresSlice.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction VoidReaping { get; } = new BaseAction(ActionID.VoidReaping) - { - StatusNeed = new[] { StatusID.Enshrouded }, - }; - - /// - /// - /// - public static IBaseAction CrossReaping { get; } = new BaseAction(ActionID.CrossReaping) - { - StatusNeed = new[] { StatusID.Enshrouded }, - }; - - /// - /// - /// - public static IBaseAction GrimReaping { get; } = new BaseAction(ActionID.GrimReaping) - { - StatusNeed = new[] { StatusID.Enshrouded }, - }; - #endregion - - #region Others - /// - /// - /// - public static IBaseAction Harpe { get; } = new BaseAction(ActionID.Harpe) - { - ActionCheck = (b, m) => !HasSoulReaver && !IsLastAction(IActionHelper.MovingActions), - FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, - }; - - /// - /// - /// - public static IBaseAction HellsIngress { get; } = new BaseAction(ActionID.HellsIngress) - { - StatusProvide = new[] { StatusID.EnhancedHarpe }, - ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.Bind) - }; - - /// - /// - /// - public static IBaseAction HellsEgress { get; } = new BaseAction(ActionID.HellsEgress) - { - StatusProvide = HellsIngress.StatusProvide, - ActionCheck = HellsIngress.ActionCheck - }; - - /// - /// - /// - public static IBaseAction SoulSow { get; } = new BaseAction(ActionID.Soulsow) - { - StatusProvide = new[] { StatusID.Soulsow }, - ActionCheck = (b, m) => !InCombat, - }; - - /// - /// - /// - public static IBaseAction HarvestMoon { get; } = new BaseAction(ActionID.HarvestMoon) - { - StatusNeed = new[] { StatusID.Soulsow }, - }; - - /// - /// - /// - public static IBaseAction ArcaneCrest { get; } = new BaseAction(ActionID.ArcaneCrest, ActionOption.Defense); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait SoulGauge { get; } = new BaseTrait(379); - - /// - /// - /// - public static IBaseTrait DeathScytheMastery { get; } = new BaseTrait(380); - - /// - /// - /// - public static IBaseTrait EnhancedAvatar { get; } = new BaseTrait(381); - - /// - /// - /// - public static IBaseTrait Hellsgate { get; } = new BaseTrait(382); - - /// - /// - /// - public static IBaseTrait TemperedSoul { get; } = new BaseTrait(383); - - /// - /// - /// - public static IBaseTrait ShroudGauge { get; } = new BaseTrait(384); - - /// - /// - /// - public static IBaseTrait EnhancedArcaneCrest { get; } = new BaseTrait(385); - - /// - /// - /// - public static IBaseTrait EnhancedShroud { get; } = new BaseTrait(386); - - /// - /// - /// - public static IBaseTrait EnhancedArcaneCircle { get; } = new BaseTrait(387); - - /// - /// - /// - public static IBaseTrait DeathScytheMastery2 { get; } = new BaseTrait(523); - #endregion - - private protected override IBaseAction LimitBreak => TheEnd; - - /// - /// LB - /// - public static IBaseAction TheEnd { get; } = new BaseAction(ActionID.TheEnd) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.HellsIngress)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (HellsIngress.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Feint)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (!HasSoulReaver && !HasEnshrouded && Feint.CanUse(out act)) return true; - return base.DefenseAreaAbility(out act); - } - - /// - [RotationDesc(ActionID.ArcaneCrest)] - protected override bool DefenseSingleAbility(out IAction act) - { - if (!HasSoulReaver && !HasEnshrouded && ArcaneCrest.CanUse(out act)) return true; - return base.DefenseSingleAbility(out act); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of RPR. +///// +//public abstract class RPR_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.RPR }; + +// /// +// /// +// /// +// public static bool HasEnshrouded => Player.HasStatus(true, StatusID.Enshrouded); + +// /// +// /// +// /// +// public static bool HasSoulReaver => Player.HasStatus(true, StatusID.SoulReaver); + +// #region JobGauge +// static RPRGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Soul => JobGauge.Soul; + +// /// +// /// +// /// +// public static byte Shroud => JobGauge.Shroud; + +// /// +// /// +// /// +// public static byte LemureShroud => JobGauge.LemureShroud; + +// /// +// /// +// /// +// public static byte VoidShroud => JobGauge.VoidShroud; +// #endregion + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction Slice { get; } = new BaseAction(ActionID.Slice) +// { +// ActionCheck = (b, m) => !HasEnshrouded && !HasSoulReaver, +// }; + +// /// +// /// 2 +// /// +// public static IBaseAction WaxingSlice { get; } = new BaseAction(ActionID.WaxingSlice) +// { +// ActionCheck = Slice.ActionCheck, +// }; + +// /// +// /// 3 +// /// +// public static IBaseAction InfernalSlice { get; } = new BaseAction(ActionID.InfernalSlice) +// { +// ActionCheck = Slice.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction ShadowOfDeath { get; } = new BaseAction(ActionID.ShadowOfDeath, ActionOption.Dot) +// { +// TargetStatus = new[] { StatusID.DeathsDesign }, +// ActionCheck = (b, m) => !HasSoulReaver, +// }; + +// /// +// /// +// /// +// public static IBaseAction SoulSlice { get; } = new BaseAction(ActionID.SoulSlice) +// { +// ActionCheck = (b, m) => Slice.ActionCheck(b, m) && Soul <= 50, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction SpinningScythe { get; } = new BaseAction(ActionID.SpinningScythe) +// { +// ActionCheck = Slice.ActionCheck, +// }; + +// /// +// /// 2 +// /// +// public static IBaseAction NightmareScythe { get; } = new BaseAction(ActionID.NightmareScythe) +// { +// ActionCheck = Slice.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction WhorlOfDeath { get; } = new BaseAction(ActionID.WhorlOfDeath, ActionOption.Dot) +// { +// TargetStatus = new[] { StatusID.DeathsDesign }, +// ActionCheck = ShadowOfDeath.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction SoulScythe { get; } = new BaseAction(ActionID.SoulScythe) +// { +// ActionCheck = SoulSlice.ActionCheck, +// }; +// #endregion + +// #region Soul Reaver +// /// +// /// +// /// +// public static IBaseAction Gibbet { get; } = new BaseAction(ActionID.Gibbet) +// { +// StatusNeed = new[] { StatusID.SoulReaver } +// }; + +// /// +// /// +// /// +// public static IBaseAction Gallows { get; } = new BaseAction(ActionID.Gallows) +// { +// StatusNeed = new[] { StatusID.SoulReaver } +// }; + +// /// +// /// +// /// +// public static IBaseAction Guillotine { get; } = new BaseAction(ActionID.Guillotine) +// { +// StatusNeed = new[] { StatusID.SoulReaver } +// }; +// #endregion + +// #region Soul +// /// +// /// +// /// +// public static IBaseAction BloodStalk { get; } = new BaseAction(ActionID.BloodStalk, ActionOption.UseResources) +// { +// StatusProvide = new[] { StatusID.SoulReaver }, +// ActionCheck = (b, m) => Slice.ActionCheck(b, m) && Soul >= 50 +// }; + +// /// +// /// +// /// +// public static IBaseAction GrimSwathe { get; } = new BaseAction(ActionID.GrimSwathe, ActionOption.UseResources) +// { +// StatusProvide = new[] { StatusID.SoulReaver }, +// ActionCheck = BloodStalk.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction Gluttony { get; } = new BaseAction(ActionID.Gluttony, ActionOption.UseResources) +// { +// StatusProvide = new[] { StatusID.SoulReaver }, +// ActionCheck = BloodStalk.ActionCheck, +// }; +// #endregion + +// #region Burst +// /// +// /// +// /// +// public static IBaseAction ArcaneCircle { get; } = new BaseAction(ActionID.ArcaneCircle, ActionOption.Buff) +// { +// StatusProvide = [StatusID.BloodsownCircle_2972], +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction PlentifulHarvest { get; } = new BaseAction(ActionID.PlentifulHarvest) +// { +// StatusNeed = new[] { StatusID.ImmortalSacrifice }, +// ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.BloodsownCircle_2972) +// }; +// #endregion + +// #region Shroud +// /// +// /// +// /// +// public static IBaseAction Enshroud { get; } = new BaseAction(ActionID.Enshroud, ActionOption.UseResources) +// { +// StatusProvide = new[] { StatusID.Enshrouded }, +// ActionCheck = (b, m) => Shroud >= 50 && Slice.ActionCheck(b, m) +// }; + +// /// +// /// +// /// +// public static IBaseAction Communio { get; } = new BaseAction(ActionID.Communio) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// ActionCheck = (b, m) => LemureShroud == 1 +// }; + +// /// +// /// +// /// +// public static IBaseAction LemuresSlice { get; } = new BaseAction(ActionID.LemuresSlice) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// ActionCheck = (b, m) => VoidShroud >= 2, +// }; + +// /// +// /// +// /// +// public static IBaseAction LemuresScythe { get; } = new BaseAction(ActionID.LemuresScythe) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// ActionCheck = LemuresSlice.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction VoidReaping { get; } = new BaseAction(ActionID.VoidReaping) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// }; + +// /// +// /// +// /// +// public static IBaseAction CrossReaping { get; } = new BaseAction(ActionID.CrossReaping) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// }; + +// /// +// /// +// /// +// public static IBaseAction GrimReaping { get; } = new BaseAction(ActionID.GrimReaping) +// { +// StatusNeed = new[] { StatusID.Enshrouded }, +// }; +// #endregion + +// #region Others +// /// +// /// +// /// +// public static IBaseAction Harpe { get; } = new BaseAction(ActionID.Harpe) +// { +// ActionCheck = (b, m) => !HasSoulReaver && !IsLastAction(IActionHelper.MovingActions), +// FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, +// }; + +// /// +// /// +// /// +// public static IBaseAction HellsIngress { get; } = new BaseAction(ActionID.HellsIngress) +// { +// StatusProvide = new[] { StatusID.EnhancedHarpe }, +// ActionCheck = (b, m) => !Player.HasStatus(true, StatusID.Bind) +// }; + +// /// +// /// +// /// +// public static IBaseAction HellsEgress { get; } = new BaseAction(ActionID.HellsEgress) +// { +// StatusProvide = HellsIngress.StatusProvide, +// ActionCheck = HellsIngress.ActionCheck +// }; + +// /// +// /// +// /// +// public static IBaseAction SoulSow { get; } = new BaseAction(ActionID.Soulsow) +// { +// StatusProvide = new[] { StatusID.Soulsow }, +// ActionCheck = (b, m) => !InCombat, +// }; + +// /// +// /// +// /// +// public static IBaseAction HarvestMoon { get; } = new BaseAction(ActionID.HarvestMoon) +// { +// StatusNeed = new[] { StatusID.Soulsow }, +// }; + +// /// +// /// +// /// +// public static IBaseAction ArcaneCrest { get; } = new BaseAction(ActionID.ArcaneCrest, ActionOption.Defense); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait SoulGauge { get; } = new BaseTrait(379); + +// /// +// /// +// /// +// public static IBaseTrait DeathScytheMastery { get; } = new BaseTrait(380); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAvatar { get; } = new BaseTrait(381); + +// /// +// /// +// /// +// public static IBaseTrait Hellsgate { get; } = new BaseTrait(382); + +// /// +// /// +// /// +// public static IBaseTrait TemperedSoul { get; } = new BaseTrait(383); + +// /// +// /// +// /// +// public static IBaseTrait ShroudGauge { get; } = new BaseTrait(384); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedArcaneCrest { get; } = new BaseTrait(385); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedShroud { get; } = new BaseTrait(386); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedArcaneCircle { get; } = new BaseTrait(387); + +// /// +// /// +// /// +// public static IBaseTrait DeathScytheMastery2 { get; } = new BaseTrait(523); +// #endregion + +// private protected override IBaseAction LimitBreak => TheEnd; + +// /// +// /// LB +// /// +// public static IBaseAction TheEnd { get; } = new BaseAction(ActionID.TheEnd) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.HellsIngress)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (HellsIngress.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Feint)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (!HasSoulReaver && !HasEnshrouded && Feint.CanUse(out act)) return true; +// return base.DefenseAreaAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.ArcaneCrest)] +// protected override bool DefenseSingleAbility(out IAction act) +// { +// if (!HasSoulReaver && !HasEnshrouded && ArcaneCrest.CanUse(out act)) return true; +// return base.DefenseSingleAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/SAM_Base.cs b/RotationSolver.Basic/Rotations/Basic/SAM_Base.cs index 88259e758..1e89ee34f 100644 --- a/RotationSolver.Basic/Rotations/Basic/SAM_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/SAM_Base.cs @@ -1,397 +1,397 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of SAM. -/// -public abstract class SAM_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.SAM }; - - /// - /// - /// - public static bool HasMoon => Player.HasStatus(true, StatusID.Fugetsu); - - /// - /// - /// - public static bool HasFlower => Player.HasStatus(true, StatusID.Fuka); - - /// - /// - /// - public static bool IsMoonTimeLessThanFlower - => Player.StatusTime(true, StatusID.Fugetsu) < Player.StatusTime(true, StatusID.Fuka); - - #region JobGauge - static SAMGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static bool HasSetsu => JobGauge.HasSetsu; - - /// - /// - /// - public static bool HasGetsu => JobGauge.HasGetsu; - - /// - /// - /// - public static bool HasKa => JobGauge.HasKa; - - /// - /// - /// - public static byte Kenki => JobGauge.Kenki; - - /// - /// - /// - public static byte MeditationStacks => JobGauge.MeditationStacks; - - /// - /// - /// - public static byte SenCount => (byte)((HasGetsu ? 1 : 0) + (HasSetsu ? 1 : 0) + (HasKa ? 1 : 0)); - #endregion - - #region Attack Single - /// - /// - /// - public static IBaseAction Hakaze { get; } = new BaseAction(ActionID.Hakaze); - - /// - /// - /// - public static IBaseAction Jinpu { get; } = new BaseAction(ActionID.Jinpu); - - /// - /// - /// - public static IBaseAction Gekko { get; } = new BaseAction(ActionID.Gekko); - - /// - /// - /// - public static IBaseAction Shifu { get; } = new BaseAction(ActionID.Shifu); - - /// - /// - /// - public static IBaseAction Kasha { get; } = new BaseAction(ActionID.Kasha); - - /// - /// - /// - public static IBaseAction Yukikaze { get; } = new BaseAction(ActionID.Yukikaze); - - /// - /// - /// - public static IBaseAction Shoha { get; } = new BaseAction(ActionID.Shoha) - { - ActionCheck = (b, m) => MeditationStacks == 3 - }; - #endregion - - #region Attack Area - /// - /// - /// - public static IBaseAction Fuga { get; } = new BaseAction(ActionID.Fuga); - - /// - /// - /// - public static IBaseAction Fuko { get; } = new BaseAction(ActionID.Fuko); - - /// - /// - /// - public static IBaseAction Mangetsu { get; } = new BaseAction(ActionID.Mangetsu) - { - ComboIds = new[] - { - ActionID.Fuga,ActionID.Fuko - } - }; - - /// - /// - /// - public static IBaseAction Oka { get; } = new BaseAction(ActionID.Oka) - { - ComboIds = new[] - { - ActionID.Fuga,ActionID.Fuko - } - }; - - /// - /// - /// - public static IBaseAction Shoha2 { get; } = new BaseAction(ActionID.ShohaIi) - { - ActionCheck = (b, m) => MeditationStacks == 3 - }; - - /// - /// - /// - public static IBaseAction OgiNamikiri { get; } = new BaseAction(ActionID.OgiNamikiri) - { - StatusNeed = new[] { StatusID.OgiNamikiriReady }, - ActionCheck = (b, m) => !IsMoving - }; - - /// - /// - /// - public static IBaseAction KaeshiNamikiri { get; } = new BaseAction(ActionID.KaeshiNamikiri) - { - ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.NAMIKIRI - }; - #endregion - - #region Sen - /// - /// - /// - public static IBaseAction Higanbana { get; } = new BaseAction(ActionID.Higanbana, ActionOption.Dot | ActionOption.UseResources) - { - ActionCheck = (b, m) => !IsMoving && SenCount == 1, - TargetStatus = new[] { StatusID.Higanbana }, - }; - - /// - /// - /// - public static IBaseAction TenkaGoken { get; } = new BaseAction(ActionID.TenkaGoken, ActionOption.UseResources) - { - ActionCheck = (b, m) => !IsMoving && SenCount == 2, - }; - - /// - /// - /// - public static IBaseAction MidareSetsugekka { get; } = new BaseAction(ActionID.MidareSetsugekka, ActionOption.UseResources) - { - ActionCheck = (b, m) => !IsMoving && SenCount == 3, - }; - - /// - /// - /// - public static IBaseAction TsubameGaeshi { get; } = new BaseAction(ActionID.Tsubamegaeshi); - - /// - /// - /// - public static IBaseAction KaeshiGoken { get; } = new BaseAction(ActionID.KaeshiGoken) - { - ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.GOKEN - }; - - /// - /// - /// - public static IBaseAction KaeshiSetsugekka { get; } = new BaseAction(ActionID.KaeshiSetsugekka) - { - ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.SETSUGEKKA - }; - #endregion - - #region Range - /// - /// - /// - public static IBaseAction ThirdEye { get; } = new BaseAction(ActionID.ThirdEye, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Enpi { get; } = new BaseAction(ActionID.Enpi) - { - FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction MeikyoShisui { get; } = new BaseAction(ActionID.MeikyoShisui) - { - StatusProvide = new[] { StatusID.MeikyoShisui }, - ActionCheck = (b, m) => IsLongerThan(8), - }; - - /// - /// - /// - public static IBaseAction Hagakure { get; } = new BaseAction(ActionID.Hagakure, ActionOption.UseResources) - { - ActionCheck = (b, m) => SenCount > 0 - }; - - /// - /// - /// - public static IBaseAction Ikishoten { get; } = new BaseAction(ActionID.Ikishoten) - { - StatusProvide = new[] { StatusID.OgiNamikiriReady }, - ActionCheck = (b, m) => InCombat - }; - #endregion - - #region Kenki - /// - /// - /// - public static IBaseAction HissatsuShinten { get; } = new BaseAction(ActionID.HissatsuShinten) - { - ActionCheck = (b, m) => Kenki >= 25 - }; - - /// - /// - /// - public static IBaseAction HissatsuGyoten { get; } = new BaseAction(ActionID.HissatsuGyoten) - { - ActionCheck = (b, m) => Kenki >= 10 && !Player.HasStatus(true, StatusID.Bind), - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - /// - /// - /// - public static IBaseAction HissatsuYaten { get; } = new BaseAction(ActionID.HissatsuYaten) - { - ActionCheck = HissatsuGyoten.ActionCheck - }; - - /// - /// - /// - public static IBaseAction HissatsuKyuten { get; } = new BaseAction(ActionID.HissatsuKyuten) - { - ActionCheck = (b, m) => Kenki >= 25 - }; - - /// - /// - /// - public static IBaseAction HissatsuGuren { get; } = new BaseAction(ActionID.HissatsuGuren) - { - ActionCheck = HissatsuKyuten.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction HissatsuSenei { get; } = new BaseAction(ActionID.HissatsuSenei) - { - ActionCheck = HissatsuKyuten.ActionCheck, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait KenkiMastery2 { get; } = new BaseTrait(208); - - /// - /// - /// - public static IBaseTrait KenkiMastery { get; } = new BaseTrait(215); - - /// - /// - /// - public static IBaseTrait EnhancedIaijutsu { get; } = new BaseTrait(277); - - /// - /// - /// - public static IBaseTrait EnhancedFugetsuAndFuka { get; } = new BaseTrait(278); - - /// - /// - /// - public static IBaseTrait EnhancedTsubameGaeshi { get; } = new BaseTrait(442); - - /// - /// - /// - public static IBaseTrait EnhancedMeikyoShisui { get; } = new BaseTrait(443); - - /// - /// - /// - public static IBaseTrait EnhancedIkishoten { get; } = new BaseTrait(514); - - /// - /// - /// - public static IBaseTrait FugaMastery { get; } = new BaseTrait(519); - - /// - /// - /// - public static IBaseTrait WayOfTheSamurai { get; } = new BaseTrait(520); - - /// - /// - /// - public static IBaseTrait WayOfTheSamurai2 { get; } = new BaseTrait(521); - #endregion - - private protected override IBaseAction LimitBreak => DoomOfTheLiving; - - /// - /// LB - /// - public static IBaseAction DoomOfTheLiving { get; } = new BaseAction(ActionID.DoomOfTheLiving) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.HissatsuGyoten)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (HissatsuGyoten.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } - - /// - [RotationDesc(ActionID.Feint)] - protected sealed override bool DefenseAreaAbility(out IAction act) - { - if (Feint.CanUse(out act)) return true; - return base.DefenseAreaAbility(out act); - } - - /// - [RotationDesc(ActionID.ThirdEye)] - protected override bool DefenseSingleAbility(out IAction act) - { - if (ThirdEye.CanUse(out act)) return true; - return base.DefenseSingleAbility(out act); - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of SAM. +///// +//public abstract class SAM_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.SAM }; + +// /// +// /// +// /// +// public static bool HasMoon => Player.HasStatus(true, StatusID.Fugetsu); + +// /// +// /// +// /// +// public static bool HasFlower => Player.HasStatus(true, StatusID.Fuka); + +// /// +// /// +// /// +// public static bool IsMoonTimeLessThanFlower +// => Player.StatusTime(true, StatusID.Fugetsu) < Player.StatusTime(true, StatusID.Fuka); + +// #region JobGauge +// static SAMGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static bool HasSetsu => JobGauge.HasSetsu; + +// /// +// /// +// /// +// public static bool HasGetsu => JobGauge.HasGetsu; + +// /// +// /// +// /// +// public static bool HasKa => JobGauge.HasKa; + +// /// +// /// +// /// +// public static byte Kenki => JobGauge.Kenki; + +// /// +// /// +// /// +// public static byte MeditationStacks => JobGauge.MeditationStacks; + +// /// +// /// +// /// +// public static byte SenCount => (byte)((HasGetsu ? 1 : 0) + (HasSetsu ? 1 : 0) + (HasKa ? 1 : 0)); +// #endregion + +// #region Attack Single +// /// +// /// +// /// +// public static IBaseAction Hakaze { get; } = new BaseAction(ActionID.Hakaze); + +// /// +// /// +// /// +// public static IBaseAction Jinpu { get; } = new BaseAction(ActionID.Jinpu); + +// /// +// /// +// /// +// public static IBaseAction Gekko { get; } = new BaseAction(ActionID.Gekko); + +// /// +// /// +// /// +// public static IBaseAction Shifu { get; } = new BaseAction(ActionID.Shifu); + +// /// +// /// +// /// +// public static IBaseAction Kasha { get; } = new BaseAction(ActionID.Kasha); + +// /// +// /// +// /// +// public static IBaseAction Yukikaze { get; } = new BaseAction(ActionID.Yukikaze); + +// /// +// /// +// /// +// public static IBaseAction Shoha { get; } = new BaseAction(ActionID.Shoha) +// { +// ActionCheck = (b, m) => MeditationStacks == 3 +// }; +// #endregion + +// #region Attack Area +// /// +// /// +// /// +// public static IBaseAction Fuga { get; } = new BaseAction(ActionID.Fuga); + +// /// +// /// +// /// +// public static IBaseAction Fuko { get; } = new BaseAction(ActionID.Fuko); + +// /// +// /// +// /// +// public static IBaseAction Mangetsu { get; } = new BaseAction(ActionID.Mangetsu) +// { +// ComboIds = new[] +// { +// ActionID.Fuga,ActionID.Fuko +// } +// }; + +// /// +// /// +// /// +// public static IBaseAction Oka { get; } = new BaseAction(ActionID.Oka) +// { +// ComboIds = new[] +// { +// ActionID.Fuga,ActionID.Fuko +// } +// }; + +// /// +// /// +// /// +// public static IBaseAction Shoha2 { get; } = new BaseAction(ActionID.ShohaIi) +// { +// ActionCheck = (b, m) => MeditationStacks == 3 +// }; + +// /// +// /// +// /// +// public static IBaseAction OgiNamikiri { get; } = new BaseAction(ActionID.OgiNamikiri) +// { +// StatusNeed = new[] { StatusID.OgiNamikiriReady }, +// ActionCheck = (b, m) => !IsMoving +// }; + +// /// +// /// +// /// +// public static IBaseAction KaeshiNamikiri { get; } = new BaseAction(ActionID.KaeshiNamikiri) +// { +// ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.NAMIKIRI +// }; +// #endregion + +// #region Sen +// /// +// /// +// /// +// public static IBaseAction Higanbana { get; } = new BaseAction(ActionID.Higanbana, ActionOption.Dot | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => !IsMoving && SenCount == 1, +// TargetStatus = new[] { StatusID.Higanbana }, +// }; + +// /// +// /// +// /// +// public static IBaseAction TenkaGoken { get; } = new BaseAction(ActionID.TenkaGoken, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => !IsMoving && SenCount == 2, +// }; + +// /// +// /// +// /// +// public static IBaseAction MidareSetsugekka { get; } = new BaseAction(ActionID.MidareSetsugekka, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => !IsMoving && SenCount == 3, +// }; + +// /// +// /// +// /// +// public static IBaseAction TsubameGaeshi { get; } = new BaseAction(ActionID.Tsubamegaeshi); + +// /// +// /// +// /// +// public static IBaseAction KaeshiGoken { get; } = new BaseAction(ActionID.KaeshiGoken) +// { +// ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.GOKEN +// }; + +// /// +// /// +// /// +// public static IBaseAction KaeshiSetsugekka { get; } = new BaseAction(ActionID.KaeshiSetsugekka) +// { +// ActionCheck = (b, m) => JobGauge.Kaeshi == Kaeshi.SETSUGEKKA +// }; +// #endregion + +// #region Range +// /// +// /// +// /// +// public static IBaseAction ThirdEye { get; } = new BaseAction(ActionID.ThirdEye, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Enpi { get; } = new BaseAction(ActionID.Enpi) +// { +// FilterForHostiles = TargetFilter.MeleeRangeTargetFilter, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction MeikyoShisui { get; } = new BaseAction(ActionID.MeikyoShisui) +// { +// StatusProvide = new[] { StatusID.MeikyoShisui }, +// ActionCheck = (b, m) => IsLongerThan(8), +// }; + +// /// +// /// +// /// +// public static IBaseAction Hagakure { get; } = new BaseAction(ActionID.Hagakure, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => SenCount > 0 +// }; + +// /// +// /// +// /// +// public static IBaseAction Ikishoten { get; } = new BaseAction(ActionID.Ikishoten) +// { +// StatusProvide = new[] { StatusID.OgiNamikiriReady }, +// ActionCheck = (b, m) => InCombat +// }; +// #endregion + +// #region Kenki +// /// +// /// +// /// +// public static IBaseAction HissatsuShinten { get; } = new BaseAction(ActionID.HissatsuShinten) +// { +// ActionCheck = (b, m) => Kenki >= 25 +// }; + +// /// +// /// +// /// +// public static IBaseAction HissatsuGyoten { get; } = new BaseAction(ActionID.HissatsuGyoten) +// { +// ActionCheck = (b, m) => Kenki >= 10 && !Player.HasStatus(true, StatusID.Bind), +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// /// +// /// +// /// +// public static IBaseAction HissatsuYaten { get; } = new BaseAction(ActionID.HissatsuYaten) +// { +// ActionCheck = HissatsuGyoten.ActionCheck +// }; + +// /// +// /// +// /// +// public static IBaseAction HissatsuKyuten { get; } = new BaseAction(ActionID.HissatsuKyuten) +// { +// ActionCheck = (b, m) => Kenki >= 25 +// }; + +// /// +// /// +// /// +// public static IBaseAction HissatsuGuren { get; } = new BaseAction(ActionID.HissatsuGuren) +// { +// ActionCheck = HissatsuKyuten.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction HissatsuSenei { get; } = new BaseAction(ActionID.HissatsuSenei) +// { +// ActionCheck = HissatsuKyuten.ActionCheck, +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait KenkiMastery2 { get; } = new BaseTrait(208); + +// /// +// /// +// /// +// public static IBaseTrait KenkiMastery { get; } = new BaseTrait(215); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedIaijutsu { get; } = new BaseTrait(277); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedFugetsuAndFuka { get; } = new BaseTrait(278); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedTsubameGaeshi { get; } = new BaseTrait(442); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedMeikyoShisui { get; } = new BaseTrait(443); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedIkishoten { get; } = new BaseTrait(514); + +// /// +// /// +// /// +// public static IBaseTrait FugaMastery { get; } = new BaseTrait(519); + +// /// +// /// +// /// +// public static IBaseTrait WayOfTheSamurai { get; } = new BaseTrait(520); + +// /// +// /// +// /// +// public static IBaseTrait WayOfTheSamurai2 { get; } = new BaseTrait(521); +// #endregion + +// private protected override IBaseAction LimitBreak => DoomOfTheLiving; + +// /// +// /// LB +// /// +// public static IBaseAction DoomOfTheLiving { get; } = new BaseAction(ActionID.DoomOfTheLiving) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.HissatsuGyoten)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (HissatsuGyoten.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Feint)] +// protected sealed override bool DefenseAreaAbility(out IAction act) +// { +// if (Feint.CanUse(out act)) return true; +// return base.DefenseAreaAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.ThirdEye)] +// protected override bool DefenseSingleAbility(out IAction act) +// { +// if (ThirdEye.CanUse(out act)) return true; +// return base.DefenseSingleAbility(out act); +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/SCH_Base.cs b/RotationSolver.Basic/Rotations/Basic/SCH_Base.cs index 3f708064f..1f0a4b40e 100644 --- a/RotationSolver.Basic/Rotations/Basic/SCH_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/SCH_Base.cs @@ -1,330 +1,330 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of SCH. -/// -public abstract class SCH_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Mind; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.SCH }; - - #region Job Gauge - static SCHGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte FairyGauge => JobGauge.FairyGauge; - - /// - /// - /// - public static bool HasAetherflow => JobGauge.Aetherflow > 0; - - static float SeraphTimeRaw => JobGauge.SeraphTimer / 1000f; - - /// - /// - /// - public static float SeraphTime => SeraphTimeRaw - DataCenter.WeaponRemain; - #endregion - - #region Heal - private sealed protected override IBaseAction Raise => Resurrection; - - /// - /// - /// - public static IBaseAction Physick { get; } = new BaseAction(ActionID.Physick, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Adloquium { get; } = new BaseAction(ActionID.Adloquium, ActionOption.Heal) - { - ActionCheck = (b, m) => !b.HasStatus(false, StatusID.EukrasianDiagnosis, - StatusID.EukrasianPrognosis, StatusID.Galvanize), - }; - - /// - /// - /// - public static IBaseAction Resurrection { get; } = new BaseAction(ActionID.Resurrection, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Succor { get; } = new BaseAction(ActionID.Succor, ActionOption.Heal) - { - StatusProvide = new[] { StatusID.Galvanize }, - }; - - /// - /// - /// - public static IBaseAction Lustrate { get; } = new BaseAction(ActionID.Lustrate, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflow - }; - - /// - /// - /// - public static IBaseAction SacredSoil { get; } = new BaseAction(ActionID.SacredSoil, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflow && !IsMoving, - }; - - /// - /// - /// - public static IBaseAction Indomitability { get; } = new BaseAction(ActionID.Indomitability, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflow - }; - - /// - /// - /// - public static IBaseAction Excogitation { get; } = new BaseAction(ActionID.Excogitation, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflow - }; - - /// - /// - /// - public static IBaseAction Consolation { get; } = new BaseAction(ActionID.Consolation, ActionOption.Heal) - { - ActionCheck = (b, m) => SeraphTime > 0, - }; - - /// - /// - /// - public static IBaseAction Protraction { get; } = new BaseAction(ActionID.Protraction, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - #endregion - - #region Attack - /// - /// - /// - public static IBaseAction Bio { get; } = new BaseAction(ActionID.Bio, ActionOption.Dot) - { - TargetStatus = [StatusID.Bio, StatusID.BioIi, StatusID.Biolysis], - }; - - /// - /// - /// - public static IBaseAction Ruin { get; } = new BaseAction(ActionID.Ruin); - - /// - /// - /// - public static IBaseAction Ruin2 { get; } = new BaseAction(ActionID.RuinIi_17870); - - /// - /// - /// - public static IBaseAction EnergyDrain { get; } = new BaseAction(ActionID.EnergyDrain, ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflow - }; - - /// - /// - /// - public static IBaseAction ArtOfWar { get; } = new BaseAction(ActionID.ArtOfWar); - #endregion - - #region Seraph - /// - /// - /// - public static IBaseAction SummonSeraph { get; } = new BaseAction(ActionID.SummonSeraph, ActionOption.Heal) - { - ActionCheck = (b, m) => DataCenter.HasPet, - }; - - /// - /// - /// - public static IBaseAction SummonEos { get; } = new BaseAction(ActionID.SummonEos)//夕月召唤 17216 - { - ActionCheck = (b, m) => !DataCenter.HasPet && (!Player.HasStatus(true, StatusID.Dissipation) || Dissipation.WillHaveOneCharge(30) && Dissipation.EnoughLevel), - }; - - /// - /// - /// - public static IBaseAction WhisperingDawn { get; } = new BaseAction(ActionID.WhisperingDawn, ActionOption.Heal) - { - ActionCheck = (b, m) => DataCenter.HasPet, - }; - - /// - /// - /// - public static IBaseAction FeyIllumination { get; } = new BaseAction(ActionID.FeyIllumination, ActionOption.Heal) - { - ActionCheck = (b, m) => DataCenter.HasPet, - }; - - /// - /// - /// - public static IBaseAction Dissipation { get; } = new BaseAction(ActionID.Dissipation) - { - StatusProvide = new[] { StatusID.Dissipation }, - ActionCheck = (b, m) => !HasAetherflow && SeraphTime <= 0 && InCombat && DataCenter.HasPet, - }; - - /// - /// - /// - public static IBaseAction Aetherpact { get; } = new BaseAction(ActionID.Aetherpact, ActionOption.Heal) - { - ActionCheck = (b, m) => JobGauge.FairyGauge >= 10 && DataCenter.HasPet && SeraphTime <= 0 - }; - - /// - /// - /// - public static IBaseAction FeyBlessing { get; } = new BaseAction(ActionID.FeyBlessing, ActionOption.Heal) - { - ActionCheck = (b, m) => SeraphTime <= 0 && DataCenter.HasPet, - }; - #endregion - - #region Others - /// - /// - /// - public static IBaseAction Aetherflow { get; } = new BaseAction(ActionID.Aetherflow) - { - ActionCheck = (b, m) => InCombat && !HasAetherflow - }; - - /// - /// - /// - public static IBaseAction Recitation { get; } = new BaseAction(ActionID.Recitation, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction ChainStratagem { get; } = new BaseAction(ActionID.ChainStratagem) - { - ActionCheck = (b, m) => InCombat && IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction DeploymentTactics { get; } = new BaseAction(ActionID.DeploymentTactics, ActionOption.Heal) - { - ChoiceTarget = (friends, mustUse) => - { - foreach (var friend in friends) - { - if (friend.HasStatus(true, StatusID.Galvanize)) return friend; - } - return null; - }, - }; - - /// - /// - /// - public static IBaseAction EmergencyTactics { get; } = new BaseAction(ActionID.EmergencyTactics, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Expedient { get; } = new BaseAction(ActionID.Expedient, ActionOption.Heal); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait BroilMastery2 { get; } = new BaseTrait(184); - - /// - /// - /// - public static IBaseTrait BroilMastery { get; } = new BaseTrait(214); - - /// - /// - /// - public static IBaseTrait CorruptionMastery2 { get; } = new BaseTrait(311); - - /// - /// - /// - public static IBaseTrait BroilMastery3 { get; } = new BaseTrait(312); - - /// - /// - /// - public static IBaseTrait EnhancedSacredSoil { get; } = new BaseTrait(313); - - /// - /// - /// - public static IBaseTrait CorruptionMastery { get; } = new BaseTrait(324); - - /// - /// - /// - public static IBaseTrait BroilMastery4 { get; } = new BaseTrait(491); - - /// - /// - /// - public static IBaseTrait ArtOfWarMastery { get; } = new BaseTrait(492); - - /// - /// - /// - public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(493); - - /// - /// - /// - public static IBaseTrait EnhancedDeploymentTactics { get; } = new BaseTrait(494); - #endregion - - private protected override IBaseAction LimitBreak => AngelFeathers; - - /// - /// LB - /// - public static IBaseAction AngelFeathers { get; } = new BaseAction(ActionID.AngelFeathers, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - protected override bool SpeedAbility(out IAction act) - { - if (InCombat && Expedient.CanUse(out act, CanUseOption.MustUse)) return true; - return base.SpeedAbility(out act); - } -} +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of SCH. +///// +//public abstract class SCH_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Mind; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.SCH }; + +// #region Job Gauge +// static SCHGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte FairyGauge => JobGauge.FairyGauge; + +// /// +// /// +// /// +// public static bool HasAetherflow => JobGauge.Aetherflow > 0; + +// static float SeraphTimeRaw => JobGauge.SeraphTimer / 1000f; + +// /// +// /// +// /// +// public static float SeraphTime => SeraphTimeRaw - DataCenter.WeaponRemain; +// #endregion + +// #region Heal +// private sealed protected override IBaseAction Raise => Resurrection; + +// /// +// /// +// /// +// public static IBaseAction Physick { get; } = new BaseAction(ActionID.Physick, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Adloquium { get; } = new BaseAction(ActionID.Adloquium, ActionOption.Heal) +// { +// ActionCheck = (b, m) => !b.HasStatus(false, StatusID.EukrasianDiagnosis, +// StatusID.EukrasianPrognosis, StatusID.Galvanize), +// }; + +// /// +// /// +// /// +// public static IBaseAction Resurrection { get; } = new BaseAction(ActionID.Resurrection, ActionOption.Friendly); + +// /// +// /// +// /// +// public static IBaseAction Succor { get; } = new BaseAction(ActionID.Succor, ActionOption.Heal) +// { +// StatusProvide = new[] { StatusID.Galvanize }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Lustrate { get; } = new BaseAction(ActionID.Lustrate, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflow +// }; + +// /// +// /// +// /// +// public static IBaseAction SacredSoil { get; } = new BaseAction(ActionID.SacredSoil, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflow && !IsMoving, +// }; + +// /// +// /// +// /// +// public static IBaseAction Indomitability { get; } = new BaseAction(ActionID.Indomitability, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflow +// }; + +// /// +// /// +// /// +// public static IBaseAction Excogitation { get; } = new BaseAction(ActionID.Excogitation, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflow +// }; + +// /// +// /// +// /// +// public static IBaseAction Consolation { get; } = new BaseAction(ActionID.Consolation, ActionOption.Heal) +// { +// ActionCheck = (b, m) => SeraphTime > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Protraction { get; } = new BaseAction(ActionID.Protraction, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; +// #endregion + +// #region Attack +// /// +// /// +// /// +// public static IBaseAction Bio { get; } = new BaseAction(ActionID.Bio, ActionOption.Dot) +// { +// TargetStatus = [StatusID.Bio, StatusID.BioIi, StatusID.Biolysis], +// }; + +// /// +// /// +// /// +// public static IBaseAction Ruin { get; } = new BaseAction(ActionID.Ruin); + +// /// +// /// +// /// +// public static IBaseAction Ruin2 { get; } = new BaseAction(ActionID.RuinIi_17870); + +// /// +// /// +// /// +// public static IBaseAction EnergyDrain { get; } = new BaseAction(ActionID.EnergyDrain, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflow +// }; + +// /// +// /// +// /// +// public static IBaseAction ArtOfWar { get; } = new BaseAction(ActionID.ArtOfWar); +// #endregion + +// #region Seraph +// /// +// /// +// /// +// public static IBaseAction SummonSeraph { get; } = new BaseAction(ActionID.SummonSeraph, ActionOption.Heal) +// { +// ActionCheck = (b, m) => DataCenter.HasPet, +// }; + +// /// +// /// +// /// +// public static IBaseAction SummonEos { get; } = new BaseAction(ActionID.SummonEos)//夕月召唤 17216 +// { +// ActionCheck = (b, m) => !DataCenter.HasPet && (!Player.HasStatus(true, StatusID.Dissipation) || Dissipation.WillHaveOneCharge(30) && Dissipation.EnoughLevel), +// }; + +// /// +// /// +// /// +// public static IBaseAction WhisperingDawn { get; } = new BaseAction(ActionID.WhisperingDawn, ActionOption.Heal) +// { +// ActionCheck = (b, m) => DataCenter.HasPet, +// }; + +// /// +// /// +// /// +// public static IBaseAction FeyIllumination { get; } = new BaseAction(ActionID.FeyIllumination, ActionOption.Heal) +// { +// ActionCheck = (b, m) => DataCenter.HasPet, +// }; + +// /// +// /// +// /// +// public static IBaseAction Dissipation { get; } = new BaseAction(ActionID.Dissipation) +// { +// StatusProvide = new[] { StatusID.Dissipation }, +// ActionCheck = (b, m) => !HasAetherflow && SeraphTime <= 0 && InCombat && DataCenter.HasPet, +// }; + +// /// +// /// +// /// +// public static IBaseAction Aetherpact { get; } = new BaseAction(ActionID.Aetherpact, ActionOption.Heal) +// { +// ActionCheck = (b, m) => JobGauge.FairyGauge >= 10 && DataCenter.HasPet && SeraphTime <= 0 +// }; + +// /// +// /// +// /// +// public static IBaseAction FeyBlessing { get; } = new BaseAction(ActionID.FeyBlessing, ActionOption.Heal) +// { +// ActionCheck = (b, m) => SeraphTime <= 0 && DataCenter.HasPet, +// }; +// #endregion + +// #region Others +// /// +// /// +// /// +// public static IBaseAction Aetherflow { get; } = new BaseAction(ActionID.Aetherflow) +// { +// ActionCheck = (b, m) => InCombat && !HasAetherflow +// }; + +// /// +// /// +// /// +// public static IBaseAction Recitation { get; } = new BaseAction(ActionID.Recitation, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction ChainStratagem { get; } = new BaseAction(ActionID.ChainStratagem) +// { +// ActionCheck = (b, m) => InCombat && IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction DeploymentTactics { get; } = new BaseAction(ActionID.DeploymentTactics, ActionOption.Heal) +// { +// ChoiceTarget = (friends, mustUse) => +// { +// foreach (var friend in friends) +// { +// if (friend.HasStatus(true, StatusID.Galvanize)) return friend; +// } +// return null; +// }, +// }; + +// /// +// /// +// /// +// public static IBaseAction EmergencyTactics { get; } = new BaseAction(ActionID.EmergencyTactics, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Expedient { get; } = new BaseAction(ActionID.Expedient, ActionOption.Heal); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait BroilMastery2 { get; } = new BaseTrait(184); + +// /// +// /// +// /// +// public static IBaseTrait BroilMastery { get; } = new BaseTrait(214); + +// /// +// /// +// /// +// public static IBaseTrait CorruptionMastery2 { get; } = new BaseTrait(311); + +// /// +// /// +// /// +// public static IBaseTrait BroilMastery3 { get; } = new BaseTrait(312); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSacredSoil { get; } = new BaseTrait(313); + +// /// +// /// +// /// +// public static IBaseTrait CorruptionMastery { get; } = new BaseTrait(324); + +// /// +// /// +// /// +// public static IBaseTrait BroilMastery4 { get; } = new BaseTrait(491); + +// /// +// /// +// /// +// public static IBaseTrait ArtOfWarMastery { get; } = new BaseTrait(492); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(493); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDeploymentTactics { get; } = new BaseTrait(494); +// #endregion + +// private protected override IBaseAction LimitBreak => AngelFeathers; + +// /// +// /// LB +// /// +// public static IBaseAction AngelFeathers { get; } = new BaseAction(ActionID.AngelFeathers, ActionOption.Heal) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// protected override bool SpeedAbility(out IAction act) +// { +// if (InCombat && Expedient.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.SpeedAbility(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/SGE_Base.cs b/RotationSolver.Basic/Rotations/Basic/SGE_Base.cs index 0bbdb6f2b..95299fbd9 100644 --- a/RotationSolver.Basic/Rotations/Basic/SGE_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/SGE_Base.cs @@ -1,368 +1,368 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of SGE. -/// -public abstract class SGE_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Mind; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.SGE }; - - #region Job Gauge - static SGEGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static bool HasEukrasia => JobGauge.Eukrasia; - - /// - /// - /// - public static byte Addersgall => JobGauge.Addersgall; - - /// - /// - /// - public static byte Addersting => JobGauge.Addersting; - - static float AddersgallTimerRaw => JobGauge.AddersgallTimer / 1000f; - - /// - /// - /// - public static float AddersgallTime => AddersgallTimerRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool AddersgallEndAfter(float time) => AddersgallTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool AddersgallEndAfterGCD(uint gctCount = 0, float offset = 0) - => AddersgallEndAfter(GCDTime(gctCount, offset)); - #endregion - - #region Attack - /// - /// - /// - public static IBaseAction Dosis { get; } = new BaseAction(ActionID.Dosis); - - /// - /// - /// - public static IBaseAction EukrasianDosis { get; } = new BaseAction(ActionID.EukrasianDosis, ActionOption.Dot) - { - TargetStatus = - [ - StatusID.EukrasianDosis, - StatusID.EukrasianDosisIi, - StatusID.EukrasianDosisIii - ], - }; - - /// - /// - /// - public static IBaseAction Dyskrasia { get; } = new BaseAction(ActionID.Dyskrasia); - - /// - /// - /// - public static IBaseAction Phlegma { get; } = new BaseAction(ActionID.Phlegma); - - /// - /// - /// - public static IBaseAction Phlegma2 { get; } = new BaseAction(ActionID.PhlegmaIi); - - /// - /// - /// - public static IBaseAction Phlegma3 { get; } = new BaseAction(ActionID.PhlegmaIii); - - /// - /// - /// - public static IBaseAction Toxikon { get; } = new BaseAction(ActionID.Toxikon) - { - ActionCheck = (b, m) => Addersting > 0, - }; - - /// - /// - /// - public static IBaseAction Rhizomata { get; } = new BaseAction(ActionID.Rhizomata) - { - ActionCheck = (b, m) => Addersgall < 3, - }; - - /// - /// - /// - public static IBaseAction Pneuma { get; } = new BaseAction(ActionID.Pneuma); - #endregion - - #region Heal - private protected sealed override IBaseAction Raise => Egeiro; - - /// - /// - /// - public static IBaseAction Egeiro { get; } = new BaseAction(ActionID.Egeiro, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Diagnosis { get; } = new BaseAction(ActionID.Diagnosis, ActionOption.Heal); - - static RandomDelay noTankDelay = new(() => (3, 5)); - /// - /// - /// - public static IBaseAction Kardia { get; } = new BaseAction(ActionID.Kardia, ActionOption.Heal) - { - ChoiceTarget = (Targets, mustUse) => - { - var targets = Targets.GetJobCategory(JobRole.Tank); - if (noTankDelay.Delay(!targets.Any())) - { - targets = targets.Any() ? targets : Targets; - } - - if (!targets.Any()) return null; - - return TargetFilter.FindAttackedTarget(targets, mustUse); - }, - - TargetStatus = [StatusID.Kardion], - }; - - /// - /// - /// - public static IBaseAction Prognosis { get; } = new BaseAction(ActionID.Prognosis, ActionOption.Heal | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction Physis { get; } = new BaseAction(ActionID.Physis, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Physis2 { get; } = new BaseAction(ActionID.PhysisIi, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Eukrasia { get; } = new BaseAction(ActionID.Eukrasia, ActionOption.Heal) - { - ActionCheck = (b, m) => !HasEukrasia, - }; - - /// - /// - /// - public static IBaseAction Soteria { get; } = new BaseAction(ActionID.Soteria, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Kerachole { get; } = new BaseAction(ActionID.Kerachole, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => Addersgall > 0, - }; - - /// - /// - /// - public static IBaseAction Ixochole { get; } = new BaseAction(ActionID.Ixochole, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => Addersgall > 0, - }; - - /// - /// - /// - public static IBaseAction Zoe { get; } = new BaseAction(ActionID.Zoe, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Taurochole { get; } = new BaseAction(ActionID.Taurochole, ActionOption.Heal | ActionOption.UseResources) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - ActionCheck = (b, m) => Addersgall > 0, - }; - - /// - /// - /// - public static IBaseAction Druochole { get; } = new BaseAction(ActionID.Druochole, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => Addersgall > 0, - }; - - /// - /// - /// - public static IBaseAction Pepsis { get; } = new BaseAction(ActionID.Pepsis, ActionOption.Heal) - { - ActionCheck = (b, m) => - { - foreach (var chara in DataCenter.PartyMembers) - { - if (chara.HasStatus(true, StatusID.EukrasianDiagnosis, StatusID.EukrasianPrognosis) - && b.WillStatusEndGCD(2, 0, true, StatusID.EukrasianDiagnosis, StatusID.EukrasianPrognosis) - && chara.GetHealthRatio() < 0.9) return true; - } - - return false; - }, - }; - - /// - /// - /// - public static IBaseAction Haima { get; } = new BaseAction(ActionID.Haima, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction EukrasianDiagnosis { get; } = new BaseAction(ActionID.EukrasianDiagnosis, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction EukrasianPrognosis { get; } = new BaseAction(ActionID.EukrasianPrognosis, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Holos { get; } = new BaseAction(ActionID.Holos, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Panhaima { get; } = new BaseAction(ActionID.Panhaima, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Krasis { get; } = new BaseAction(ActionID.Krasis, ActionOption.Heal); - #endregion - - /// - /// - /// - public static IBaseAction Icarus { get; } = new BaseAction(ActionID.Icarus, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - #region Traits - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(368); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(369); - - /// - /// - /// - public static IBaseTrait AddersgallTrait { get; } = new BaseTrait(370); - - /// - /// - /// - public static IBaseTrait SomanouticOath { get; } = new BaseTrait(371); - - /// - /// - /// - public static IBaseTrait SomanouticOath2 { get; } = new BaseTrait(372); - - /// - /// - /// - public static IBaseTrait AdderstingTrait { get; } = new BaseTrait(373); - - /// - /// - /// - public static IBaseTrait OffensiveMagicMastery { get; } = new BaseTrait(374); - - /// - /// - /// - public static IBaseTrait EnhancedKerachole { get; } = new BaseTrait(375); - - /// - /// - /// - public static IBaseTrait OffensiveMagicMastery2 { get; } = new BaseTrait(376); - - /// - /// - /// - public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(377); - - /// - /// - /// - public static IBaseTrait EnhancedZoe { get; } = new BaseTrait(378); - - /// - /// - /// - public static IBaseTrait PhysisMastery { get; } = new BaseTrait(510); - #endregion - - private protected override IBaseAction LimitBreak => TechneMakre; - - /// - /// LB - /// - public static IBaseAction TechneMakre { get; } = new BaseAction(ActionID.TechneMakre, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.Icarus)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Icarus.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of SGE. +///// +//public abstract class SGE_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Mind; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.SGE }; + +// #region Job Gauge +// static SGEGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static bool HasEukrasia => JobGauge.Eukrasia; + +// /// +// /// +// /// +// public static byte Addersgall => JobGauge.Addersgall; + +// /// +// /// +// /// +// public static byte Addersting => JobGauge.Addersting; + +// static float AddersgallTimerRaw => JobGauge.AddersgallTimer / 1000f; + +// /// +// /// +// /// +// public static float AddersgallTime => AddersgallTimerRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool AddersgallEndAfter(float time) => AddersgallTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool AddersgallEndAfterGCD(uint gctCount = 0, float offset = 0) +// => AddersgallEndAfter(GCDTime(gctCount, offset)); +// #endregion + +// #region Attack +// /// +// /// +// /// +// public static IBaseAction Dosis { get; } = new BaseAction(ActionID.Dosis); + +// /// +// /// +// /// +// public static IBaseAction EukrasianDosis { get; } = new BaseAction(ActionID.EukrasianDosis, ActionOption.Dot) +// { +// TargetStatus = +// [ +// StatusID.EukrasianDosis, +// StatusID.EukrasianDosisIi, +// StatusID.EukrasianDosisIii +// ], +// }; + +// /// +// /// +// /// +// public static IBaseAction Dyskrasia { get; } = new BaseAction(ActionID.Dyskrasia); + +// /// +// /// +// /// +// public static IBaseAction Phlegma { get; } = new BaseAction(ActionID.Phlegma); + +// /// +// /// +// /// +// public static IBaseAction Phlegma2 { get; } = new BaseAction(ActionID.PhlegmaIi); + +// /// +// /// +// /// +// public static IBaseAction Phlegma3 { get; } = new BaseAction(ActionID.PhlegmaIii); + +// /// +// /// +// /// +// public static IBaseAction Toxikon { get; } = new BaseAction(ActionID.Toxikon) +// { +// ActionCheck = (b, m) => Addersting > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Rhizomata { get; } = new BaseAction(ActionID.Rhizomata) +// { +// ActionCheck = (b, m) => Addersgall < 3, +// }; + +// /// +// /// +// /// +// public static IBaseAction Pneuma { get; } = new BaseAction(ActionID.Pneuma); +// #endregion + +// #region Heal +// private protected sealed override IBaseAction Raise => Egeiro; + +// /// +// /// +// /// +// public static IBaseAction Egeiro { get; } = new BaseAction(ActionID.Egeiro, ActionOption.Friendly); + +// /// +// /// +// /// +// public static IBaseAction Diagnosis { get; } = new BaseAction(ActionID.Diagnosis, ActionOption.Heal); + +// static RandomDelay noTankDelay = new(() => (3, 5)); +// /// +// /// +// /// +// public static IBaseAction Kardia { get; } = new BaseAction(ActionID.Kardia, ActionOption.Heal) +// { +// ChoiceTarget = (Targets, mustUse) => +// { +// var targets = Targets.GetJobCategory(JobRole.Tank); +// if (noTankDelay.Delay(!targets.Any())) +// { +// targets = targets.Any() ? targets : Targets; +// } + +// if (!targets.Any()) return null; + +// return TargetFilter.FindAttackedTarget(targets, mustUse); +// }, + +// TargetStatus = [StatusID.Kardion], +// }; + +// /// +// /// +// /// +// public static IBaseAction Prognosis { get; } = new BaseAction(ActionID.Prognosis, ActionOption.Heal | ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBaseAction Physis { get; } = new BaseAction(ActionID.Physis, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Physis2 { get; } = new BaseAction(ActionID.PhysisIi, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Eukrasia { get; } = new BaseAction(ActionID.Eukrasia, ActionOption.Heal) +// { +// ActionCheck = (b, m) => !HasEukrasia, +// }; + +// /// +// /// +// /// +// public static IBaseAction Soteria { get; } = new BaseAction(ActionID.Soteria, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Kerachole { get; } = new BaseAction(ActionID.Kerachole, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Addersgall > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Ixochole { get; } = new BaseAction(ActionID.Ixochole, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Addersgall > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Zoe { get; } = new BaseAction(ActionID.Zoe, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Taurochole { get; } = new BaseAction(ActionID.Taurochole, ActionOption.Heal | ActionOption.UseResources) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// ActionCheck = (b, m) => Addersgall > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Druochole { get; } = new BaseAction(ActionID.Druochole, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Addersgall > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Pepsis { get; } = new BaseAction(ActionID.Pepsis, ActionOption.Heal) +// { +// ActionCheck = (b, m) => +// { +// foreach (var chara in DataCenter.PartyMembers) +// { +// if (chara.HasStatus(true, StatusID.EukrasianDiagnosis, StatusID.EukrasianPrognosis) +// && b.WillStatusEndGCD(2, 0, true, StatusID.EukrasianDiagnosis, StatusID.EukrasianPrognosis) +// && chara.GetHealthRatio() < 0.9) return true; +// } + +// return false; +// }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Haima { get; } = new BaseAction(ActionID.Haima, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction EukrasianDiagnosis { get; } = new BaseAction(ActionID.EukrasianDiagnosis, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction EukrasianPrognosis { get; } = new BaseAction(ActionID.EukrasianPrognosis, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Holos { get; } = new BaseAction(ActionID.Holos, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Panhaima { get; } = new BaseAction(ActionID.Panhaima, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Krasis { get; } = new BaseAction(ActionID.Krasis, ActionOption.Heal); +// #endregion + +// /// +// /// +// /// +// public static IBaseAction Icarus { get; } = new BaseAction(ActionID.Icarus, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(368); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(369); + +// /// +// /// +// /// +// public static IBaseTrait AddersgallTrait { get; } = new BaseTrait(370); + +// /// +// /// +// /// +// public static IBaseTrait SomanouticOath { get; } = new BaseTrait(371); + +// /// +// /// +// /// +// public static IBaseTrait SomanouticOath2 { get; } = new BaseTrait(372); + +// /// +// /// +// /// +// public static IBaseTrait AdderstingTrait { get; } = new BaseTrait(373); + +// /// +// /// +// /// +// public static IBaseTrait OffensiveMagicMastery { get; } = new BaseTrait(374); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedKerachole { get; } = new BaseTrait(375); + +// /// +// /// +// /// +// public static IBaseTrait OffensiveMagicMastery2 { get; } = new BaseTrait(376); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(377); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedZoe { get; } = new BaseTrait(378); + +// /// +// /// +// /// +// public static IBaseTrait PhysisMastery { get; } = new BaseTrait(510); +// #endregion + +// private protected override IBaseAction LimitBreak => TechneMakre; + +// /// +// /// LB +// /// +// public static IBaseAction TechneMakre { get; } = new BaseAction(ActionID.TechneMakre, ActionOption.Heal) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.Icarus)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Icarus.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/SMN_Base.cs b/RotationSolver.Basic/Rotations/Basic/SMN_Base.cs index 19fb3861b..770e47256 100644 --- a/RotationSolver.Basic/Rotations/Basic/SMN_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/SMN_Base.cs @@ -1,567 +1,567 @@ -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of SMN. -/// -public abstract class SMN_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Intelligence; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.SMN, Job.ACN }; - - /// - /// - /// - public override bool CanHealSingleSpell => false; - - /// - /// - /// - public static bool InBahamut => Service.GetAdjustedActionId(ActionID.AstralFlow) == ActionID.Deathflare; - - /// - /// - /// - public static bool InPhoenix => Service.GetAdjustedActionId(ActionID.AstralFlow) == ActionID.Rekindle; - - #region JobGauge - static SMNGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static bool HasAetherflowStacks => JobGauge.HasAetherflowStacks; - - /// - /// - /// - public static byte Attunement => JobGauge.Attunement; - - /// - /// - /// - public static bool IsIfritReady => JobGauge.IsIfritReady; - - /// - /// - /// - public static bool IsTitanReady => JobGauge.IsTitanReady; - - /// - /// - /// - public static bool IsGarudaReady => JobGauge.IsGarudaReady; - - /// - /// - /// - public static bool InIfrit => JobGauge.IsIfritAttuned; - - /// - /// - /// - public static bool InTitan => JobGauge.IsTitanAttuned; - - /// - /// - /// - public static bool InGaruda => JobGauge.IsGarudaAttuned; - - private static float SummonTimeRaw => JobGauge.SummonTimerRemaining / 1000f; - - /// - /// - /// - public static float SummonTime => SummonTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool SummonTimeEndAfter(float time) => SummonTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool SummonTimeEndAfterGCD(uint gcdCount = 0, float offset = 0) - => SummonTimeEndAfter(GCDTime(gcdCount, offset)); - - private static float AttunmentTimeRaw => JobGauge.AttunmentTimerRemaining / 1000f; - - /// - /// - /// - public static float AttunmentTime => AttunmentTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool AttunmentTimeEndAfter(float time) => AttunmentTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool AttunmentTimeEndAfterGCD(uint gcdCount = 0, float offset = 0) - => AttunmentTimeEndAfter(GCDTime(gcdCount, offset)); - - /// - /// - /// - private static bool HasSummon => DataCenter.HasPet && SummonTimeEndAfterGCD(); - #endregion - - /// - /// - /// - public override void DisplayStatus() - { - ImGui.Text("AttunmentTime: " + AttunmentTimeRaw.ToString()); - ImGui.Text("SummonTime: " + SummonTimeRaw.ToString()); - ImGui.Text("Pet: " + DataCenter.HasPet.ToString()); - } - - #region Summon - /// - /// - /// - public static IBaseAction SummonRuby { get; } = new BaseAction(ActionID.SummonRuby) - { - StatusProvide = new[] { StatusID.IfritsFavor }, - ActionCheck = (b, m) => HasSummon && IsIfritReady - }; - - /// - /// - /// - public static IBaseAction SummonTopaz { get; } = new BaseAction(ActionID.SummonTopaz) - { - ActionCheck = (b, m) => HasSummon && IsTitanReady, - }; - - /// - /// - /// - public static IBaseAction SummonEmerald { get; } = new BaseAction(ActionID.SummonEmerald) - { - StatusProvide = new[] { StatusID.GarudasFavor }, - ActionCheck = (b, m) => HasSummon && IsGarudaReady, - }; - - static RandomDelay _carbuncleDelay = new RandomDelay(() => (2, 2)); - /// - /// - /// - public static IBaseAction SummonCarbuncle { get; } = new BaseAction(ActionID.SummonCarbuncle) - { - ActionCheck = (b, m) => _carbuncleDelay.Delay(!DataCenter.HasPet && AttunmentTimeRaw == 0 && SummonTimeRaw == 0), - }; - #endregion - - #region Summon Actions - /// - /// - /// - public static IBaseAction Gemshine { get; } = new BaseAction(ActionID.Gemshine) - { - ActionCheck = (b, m) => Attunement > 0 && !AttunmentTimeEndAfter(Gemshine.CastTime), - }; - - /// - /// - /// - public static IBaseAction PreciousBrilliance { get; } = new BaseAction(ActionID.PreciousBrilliance) - { - ActionCheck = (b, m) => Attunement > 0 && !AttunmentTimeEndAfter(PreciousBrilliance.CastTime), - }; - - /// - /// - /// - public static IBaseAction AetherCharge { get; } = new BaseAction(ActionID.Aethercharge) - { - ActionCheck = (b, m) => InCombat && HasSummon - }; - - /// - /// - /// - public static IBaseAction SummonBahamut { get; } = new BaseAction(ActionID.SummonBahamut) - { - ActionCheck = AetherCharge.ActionCheck - }; - - /// - /// - /// - public static IBaseAction EnkindleBahamut { get; } = new BaseAction(ActionID.EnkindleBahamut) - { - ActionCheck = (b, m) => InBahamut || InPhoenix, - }; - - /// - /// - /// - public static IBaseAction DeathFlare { get; } = new BaseAction(ActionID.Deathflare) - { - ActionCheck = (b, m) => InBahamut, - }; - - /// - /// - /// - public static IBaseAction Rekindle { get; } = new BaseAction(ActionID.Rekindle, ActionOption.Buff) - { - ActionCheck = (b, m) => InPhoenix, - }; - - /// - /// - /// - public static IBaseAction CrimsonCyclone { get; } = new BaseAction(ActionID.CrimsonCyclone) - { - StatusNeed = new[] { StatusID.IfritsFavor }, - }; - - /// - /// - /// - public static IBaseAction CrimsonStrike { get; } = new BaseAction(ActionID.CrimsonStrike); - - /// - /// - /// - public static IBaseAction MountainBuster { get; } = new BaseAction(ActionID.MountainBuster) - { - StatusNeed = new[] { StatusID.TitansFavor }, - }; - - /// - /// - /// - public static IBaseAction Slipstream { get; } = new BaseAction(ActionID.Slipstream) - { - StatusNeed = new[] { StatusID.GarudasFavor }, - }; - #endregion - - #region Basic - /// - /// - /// - public static IBaseAction Ruin { get; } = new BaseAction(ActionID.Ruin); - - /// - /// - /// - public static IBaseAction RuinIV { get; } = new BaseAction(ActionID.RuinIv) - { - StatusNeed = new[] { StatusID.FurtherRuin }, - }; - - /// - /// - /// - public static IBaseAction Outburst { get; } = new BaseAction(ActionID.Outburst); - #endregion - - #region Abilities - /// - /// - /// - public static IBaseAction SearingLight { get; } = new BaseAction(ActionID.SearingLight, ActionOption.Buff) - { - StatusProvide = new[] { StatusID.SearingLight }, - ActionCheck = (b, m) => InCombat && IsLongerThan(15), - }; - - /// - /// - /// - public static IBaseAction RadiantAegis { get; } = new BaseAction(ActionID.RadiantAegis, ActionOption.Heal) - { - ActionCheck = (b, m) => HasSummon - }; - - /// - /// - /// - public static IBaseAction EnergyDrain { get; } = new BaseAction(ActionID.EnergyDrain_16508) - { - StatusProvide = new[] { StatusID.FurtherRuin }, - ActionCheck = (b, m) => !HasAetherflowStacks - }; - - /// - /// - /// - public static IBaseAction Fester { get; } = new BaseAction(ActionID.Fester, ActionOption.UseResources) - { - ActionCheck = (b, m) => HasAetherflowStacks - }; - - /// - /// - /// - public static IBaseAction EnergySiphon { get; } = new BaseAction(ActionID.EnergySiphon) - { - StatusProvide = new[] { StatusID.FurtherRuin }, - ActionCheck = EnergyDrain.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction PainFlare { get; } = new BaseAction(ActionID.Painflare) - { - ActionCheck = Fester.ActionCheck, - }; - #endregion - - #region Heal - private protected sealed override IBaseAction Raise => Resurrection; - - /// - /// - /// - public static IBaseAction Resurrection { get; } = new BaseAction(ActionID.Resurrection, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Physick { get; } = new BaseAction(ActionID.Physick, ActionOption.Heal); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(66); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(69); - - /// - /// - /// - public static IBaseTrait EnhancedDreadwyrmTrance { get; } = new BaseTrait(178); - - /// - /// - /// - public static IBaseTrait RuinMastery { get; } = new BaseTrait(217); - - /// - /// - /// - public static IBaseTrait EnhancedAethercharge { get; } = new BaseTrait(466); - - /// - /// - /// - public static IBaseTrait EnhancedAethercharge2 { get; } = new BaseTrait(467); - - /// - /// - /// - public static IBaseTrait RubySummoningMastery { get; } = new BaseTrait(468); - - /// - /// - /// - public static IBaseTrait TopazSummoningMastery { get; } = new BaseTrait(469); - - /// - /// - /// - public static IBaseTrait EmeraldSummoningMastery { get; } = new BaseTrait(470); - - /// - /// - /// - public static IBaseTrait Enkindle { get; } = new BaseTrait(471); - - /// - /// - /// - public static IBaseTrait RuinMastery2 { get; } = new BaseTrait(473); - - /// - /// - /// - public static IBaseTrait AetherchargeMastery { get; } = new BaseTrait(474); - - /// - /// - /// - public static IBaseTrait EnhancedEnergySiphon { get; } = new BaseTrait(475); - - /// - /// - /// - public static IBaseTrait RuinMastery3 { get; } = new BaseTrait(476); - - /// - /// - /// - public static IBaseTrait OutburstMastery { get; } = new BaseTrait(477); - - /// - /// - /// - public static IBaseTrait OutburstMastery2 { get; } = new BaseTrait(478); - - /// - /// - /// - public static IBaseTrait RuinMastery4 { get; } = new BaseTrait(479); - - /// - /// - /// - public static IBaseTrait EnhancedRadiantAegis { get; } = new BaseTrait(480); - - /// - /// - /// - public static IBaseTrait Enkindle2 { get; } = new BaseTrait(481); - - /// - /// - /// - public static IBaseTrait EnhancedSummonBahamut { get; } = new BaseTrait(502); - - /// - /// - /// - public static IBaseTrait ElementalMastery { get; } = new BaseTrait(503); - #endregion - - #region PVP - /// - /// - /// - public static IBaseAction PvP_Ruin3 { get; } = new BaseAction(ActionID.RuinIii_29664); - - /// - /// - /// - public static IBaseAction PvP_CrimsonCyclone { get; } = new BaseAction(ActionID.CrimsonCyclone_29667); - - /// - /// - /// - public static IBaseAction PvP_CrimsonStrike { get; } = new BaseAction(ActionID.CrimsonStrike_29668); - - /// - /// - /// - public static IBaseAction PvP_Slipstream { get; } = new BaseAction(ActionID.Slipstream_29669); - - /// - /// - /// - public static IBaseAction PvP_RadiantAegis { get; } = new BaseAction(ActionID.RadiantAegis_29670, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction PvP_MountainBuster { get; } = new BaseAction(ActionID.MountainBuster_29671); - - /// - /// - /// - public static IBaseAction PvP_Fester { get; } = new BaseAction(ActionID.Fester_29672); - - /// - /// - /// - public static IBaseAction PvP_SummonBahamut { get; } = new BaseAction(ActionID.SummonBahamut_29673) - { - ActionCheck = (t, m) => LimitBreakLevel >= 1, - }; - - /// - /// - /// - public static IBaseAction PvP_SummonPhoenix { get; } = new BaseAction(ActionID.SummonPhoenix_29678) - { - ActionCheck = (t, m) => LimitBreakLevel >= 1, - }; - - /// - /// - /// - public static IBaseAction PvP_AstralImpulse { get; } = new BaseAction(ActionID.AstralImpulse_29665); - - /// - /// - /// - public static IBaseAction PvP_FountainOfFire { get; } = new BaseAction(ActionID.FountainOfFire_29666); - - /// - /// - /// - public static IBaseAction PvP_EnkindleBahamut { get; } = new BaseAction(ActionID.EnkindleBahamut_29674); - - /// - /// - /// - public static IBaseAction PvP_EnkindlePhoenix { get; } = new BaseAction(ActionID.EnkindlePhoenix_29679); - - #endregion - - private protected override IBaseAction LimitBreak => Teraflare; - - /// - /// LB - /// - public static IBaseAction Teraflare { get; } = new BaseAction(ActionID.Teraflare) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; - - /// - [RotationDesc(ActionID.RadiantAegis)] - protected sealed override bool DefenseSingleAbility(out IAction act) - { - if (RadiantAegis.CanUse(out act)) return true; - return base.DefenseSingleAbility(out act); - } - - /// - [RotationDesc(ActionID.Physick)] - protected sealed override bool HealSingleGCD(out IAction act) - { - if (Physick.CanUse(out act)) return true; - return base.HealSingleGCD(out act); - } - - /// - [RotationDesc(ActionID.Addle)] - protected override bool DefenseAreaAbility(out IAction act) - { - if (Addle.CanUse(out act)) return true; - return base.DefenseAreaAbility(out act); - } -} \ No newline at end of file +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of SMN. +///// +//public abstract class SMN_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Intelligence; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.SMN, Job.ACN }; + +// /// +// /// +// /// +// public override bool CanHealSingleSpell => false; + +// /// +// /// +// /// +// public static bool InBahamut => Service.GetAdjustedActionId(ActionID.AstralFlow) == ActionID.Deathflare; + +// /// +// /// +// /// +// public static bool InPhoenix => Service.GetAdjustedActionId(ActionID.AstralFlow) == ActionID.Rekindle; + +// #region JobGauge +// static SMNGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static bool HasAetherflowStacks => JobGauge.HasAetherflowStacks; + +// /// +// /// +// /// +// public static byte Attunement => JobGauge.Attunement; + +// /// +// /// +// /// +// public static bool IsIfritReady => JobGauge.IsIfritReady; + +// /// +// /// +// /// +// public static bool IsTitanReady => JobGauge.IsTitanReady; + +// /// +// /// +// /// +// public static bool IsGarudaReady => JobGauge.IsGarudaReady; + +// /// +// /// +// /// +// public static bool InIfrit => JobGauge.IsIfritAttuned; + +// /// +// /// +// /// +// public static bool InTitan => JobGauge.IsTitanAttuned; + +// /// +// /// +// /// +// public static bool InGaruda => JobGauge.IsGarudaAttuned; + +// private static float SummonTimeRaw => JobGauge.SummonTimerRemaining / 1000f; + +// /// +// /// +// /// +// public static float SummonTime => SummonTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool SummonTimeEndAfter(float time) => SummonTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool SummonTimeEndAfterGCD(uint gcdCount = 0, float offset = 0) +// => SummonTimeEndAfter(GCDTime(gcdCount, offset)); + +// private static float AttunmentTimeRaw => JobGauge.AttunmentTimerRemaining / 1000f; + +// /// +// /// +// /// +// public static float AttunmentTime => AttunmentTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool AttunmentTimeEndAfter(float time) => AttunmentTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool AttunmentTimeEndAfterGCD(uint gcdCount = 0, float offset = 0) +// => AttunmentTimeEndAfter(GCDTime(gcdCount, offset)); + +// /// +// /// +// /// +// private static bool HasSummon => DataCenter.HasPet && SummonTimeEndAfterGCD(); +// #endregion + +// /// +// /// +// /// +// public override void DisplayStatus() +// { +// ImGui.Text("AttunmentTime: " + AttunmentTimeRaw.ToString()); +// ImGui.Text("SummonTime: " + SummonTimeRaw.ToString()); +// ImGui.Text("Pet: " + DataCenter.HasPet.ToString()); +// } + +// #region Summon +// /// +// /// +// /// +// public static IBaseAction SummonRuby { get; } = new BaseAction(ActionID.SummonRuby) +// { +// StatusProvide = new[] { StatusID.IfritsFavor }, +// ActionCheck = (b, m) => HasSummon && IsIfritReady +// }; + +// /// +// /// +// /// +// public static IBaseAction SummonTopaz { get; } = new BaseAction(ActionID.SummonTopaz) +// { +// ActionCheck = (b, m) => HasSummon && IsTitanReady, +// }; + +// /// +// /// +// /// +// public static IBaseAction SummonEmerald { get; } = new BaseAction(ActionID.SummonEmerald) +// { +// StatusProvide = new[] { StatusID.GarudasFavor }, +// ActionCheck = (b, m) => HasSummon && IsGarudaReady, +// }; + +// static RandomDelay _carbuncleDelay = new RandomDelay(() => (2, 2)); +// /// +// /// +// /// +// public static IBaseAction SummonCarbuncle { get; } = new BaseAction(ActionID.SummonCarbuncle) +// { +// ActionCheck = (b, m) => _carbuncleDelay.Delay(!DataCenter.HasPet && AttunmentTimeRaw == 0 && SummonTimeRaw == 0), +// }; +// #endregion + +// #region Summon Actions +// /// +// /// +// /// +// public static IBaseAction Gemshine { get; } = new BaseAction(ActionID.Gemshine) +// { +// ActionCheck = (b, m) => Attunement > 0 && !AttunmentTimeEndAfter(Gemshine.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction PreciousBrilliance { get; } = new BaseAction(ActionID.PreciousBrilliance) +// { +// ActionCheck = (b, m) => Attunement > 0 && !AttunmentTimeEndAfter(PreciousBrilliance.CastTime), +// }; + +// /// +// /// +// /// +// public static IBaseAction AetherCharge { get; } = new BaseAction(ActionID.Aethercharge) +// { +// ActionCheck = (b, m) => InCombat && HasSummon +// }; + +// /// +// /// +// /// +// public static IBaseAction SummonBahamut { get; } = new BaseAction(ActionID.SummonBahamut) +// { +// ActionCheck = AetherCharge.ActionCheck +// }; + +// /// +// /// +// /// +// public static IBaseAction EnkindleBahamut { get; } = new BaseAction(ActionID.EnkindleBahamut) +// { +// ActionCheck = (b, m) => InBahamut || InPhoenix, +// }; + +// /// +// /// +// /// +// public static IBaseAction DeathFlare { get; } = new BaseAction(ActionID.Deathflare) +// { +// ActionCheck = (b, m) => InBahamut, +// }; + +// /// +// /// +// /// +// public static IBaseAction Rekindle { get; } = new BaseAction(ActionID.Rekindle, ActionOption.Buff) +// { +// ActionCheck = (b, m) => InPhoenix, +// }; + +// /// +// /// +// /// +// public static IBaseAction CrimsonCyclone { get; } = new BaseAction(ActionID.CrimsonCyclone) +// { +// StatusNeed = new[] { StatusID.IfritsFavor }, +// }; + +// /// +// /// +// /// +// public static IBaseAction CrimsonStrike { get; } = new BaseAction(ActionID.CrimsonStrike); + +// /// +// /// +// /// +// public static IBaseAction MountainBuster { get; } = new BaseAction(ActionID.MountainBuster) +// { +// StatusNeed = new[] { StatusID.TitansFavor }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Slipstream { get; } = new BaseAction(ActionID.Slipstream) +// { +// StatusNeed = new[] { StatusID.GarudasFavor }, +// }; +// #endregion + +// #region Basic +// /// +// /// +// /// +// public static IBaseAction Ruin { get; } = new BaseAction(ActionID.Ruin); + +// /// +// /// +// /// +// public static IBaseAction RuinIV { get; } = new BaseAction(ActionID.RuinIv) +// { +// StatusNeed = new[] { StatusID.FurtherRuin }, +// }; + +// /// +// /// +// /// +// public static IBaseAction Outburst { get; } = new BaseAction(ActionID.Outburst); +// #endregion + +// #region Abilities +// /// +// /// +// /// +// public static IBaseAction SearingLight { get; } = new BaseAction(ActionID.SearingLight, ActionOption.Buff) +// { +// StatusProvide = new[] { StatusID.SearingLight }, +// ActionCheck = (b, m) => InCombat && IsLongerThan(15), +// }; + +// /// +// /// +// /// +// public static IBaseAction RadiantAegis { get; } = new BaseAction(ActionID.RadiantAegis, ActionOption.Heal) +// { +// ActionCheck = (b, m) => HasSummon +// }; + +// /// +// /// +// /// +// public static IBaseAction EnergyDrain { get; } = new BaseAction(ActionID.EnergyDrain_16508) +// { +// StatusProvide = new[] { StatusID.FurtherRuin }, +// ActionCheck = (b, m) => !HasAetherflowStacks +// }; + +// /// +// /// +// /// +// public static IBaseAction Fester { get; } = new BaseAction(ActionID.Fester, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => HasAetherflowStacks +// }; + +// /// +// /// +// /// +// public static IBaseAction EnergySiphon { get; } = new BaseAction(ActionID.EnergySiphon) +// { +// StatusProvide = new[] { StatusID.FurtherRuin }, +// ActionCheck = EnergyDrain.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction PainFlare { get; } = new BaseAction(ActionID.Painflare) +// { +// ActionCheck = Fester.ActionCheck, +// }; +// #endregion + +// #region Heal +// private protected sealed override IBaseAction Raise => Resurrection; + +// /// +// /// +// /// +// public static IBaseAction Resurrection { get; } = new BaseAction(ActionID.Resurrection, ActionOption.Friendly); + +// /// +// /// +// /// +// public static IBaseAction Physick { get; } = new BaseAction(ActionID.Physick, ActionOption.Heal); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(66); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(69); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDreadwyrmTrance { get; } = new BaseTrait(178); + +// /// +// /// +// /// +// public static IBaseTrait RuinMastery { get; } = new BaseTrait(217); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAethercharge { get; } = new BaseTrait(466); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAethercharge2 { get; } = new BaseTrait(467); + +// /// +// /// +// /// +// public static IBaseTrait RubySummoningMastery { get; } = new BaseTrait(468); + +// /// +// /// +// /// +// public static IBaseTrait TopazSummoningMastery { get; } = new BaseTrait(469); + +// /// +// /// +// /// +// public static IBaseTrait EmeraldSummoningMastery { get; } = new BaseTrait(470); + +// /// +// /// +// /// +// public static IBaseTrait Enkindle { get; } = new BaseTrait(471); + +// /// +// /// +// /// +// public static IBaseTrait RuinMastery2 { get; } = new BaseTrait(473); + +// /// +// /// +// /// +// public static IBaseTrait AetherchargeMastery { get; } = new BaseTrait(474); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEnergySiphon { get; } = new BaseTrait(475); + +// /// +// /// +// /// +// public static IBaseTrait RuinMastery3 { get; } = new BaseTrait(476); + +// /// +// /// +// /// +// public static IBaseTrait OutburstMastery { get; } = new BaseTrait(477); + +// /// +// /// +// /// +// public static IBaseTrait OutburstMastery2 { get; } = new BaseTrait(478); + +// /// +// /// +// /// +// public static IBaseTrait RuinMastery4 { get; } = new BaseTrait(479); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedRadiantAegis { get; } = new BaseTrait(480); + +// /// +// /// +// /// +// public static IBaseTrait Enkindle2 { get; } = new BaseTrait(481); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedSummonBahamut { get; } = new BaseTrait(502); + +// /// +// /// +// /// +// public static IBaseTrait ElementalMastery { get; } = new BaseTrait(503); +// #endregion + +// #region PVP +// /// +// /// +// /// +// public static IBaseAction PvP_Ruin3 { get; } = new BaseAction(ActionID.RuinIii_29664); + +// /// +// /// +// /// +// public static IBaseAction PvP_CrimsonCyclone { get; } = new BaseAction(ActionID.CrimsonCyclone_29667); + +// /// +// /// +// /// +// public static IBaseAction PvP_CrimsonStrike { get; } = new BaseAction(ActionID.CrimsonStrike_29668); + +// /// +// /// +// /// +// public static IBaseAction PvP_Slipstream { get; } = new BaseAction(ActionID.Slipstream_29669); + +// /// +// /// +// /// +// public static IBaseAction PvP_RadiantAegis { get; } = new BaseAction(ActionID.RadiantAegis_29670, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction PvP_MountainBuster { get; } = new BaseAction(ActionID.MountainBuster_29671); + +// /// +// /// +// /// +// public static IBaseAction PvP_Fester { get; } = new BaseAction(ActionID.Fester_29672); + +// /// +// /// +// /// +// public static IBaseAction PvP_SummonBahamut { get; } = new BaseAction(ActionID.SummonBahamut_29673) +// { +// ActionCheck = (t, m) => LimitBreakLevel >= 1, +// }; + +// /// +// /// +// /// +// public static IBaseAction PvP_SummonPhoenix { get; } = new BaseAction(ActionID.SummonPhoenix_29678) +// { +// ActionCheck = (t, m) => LimitBreakLevel >= 1, +// }; + +// /// +// /// +// /// +// public static IBaseAction PvP_AstralImpulse { get; } = new BaseAction(ActionID.AstralImpulse_29665); + +// /// +// /// +// /// +// public static IBaseAction PvP_FountainOfFire { get; } = new BaseAction(ActionID.FountainOfFire_29666); + +// /// +// /// +// /// +// public static IBaseAction PvP_EnkindleBahamut { get; } = new BaseAction(ActionID.EnkindleBahamut_29674); + +// /// +// /// +// /// +// public static IBaseAction PvP_EnkindlePhoenix { get; } = new BaseAction(ActionID.EnkindlePhoenix_29679); + +// #endregion + +// private protected override IBaseAction LimitBreak => Teraflare; + +// /// +// /// LB +// /// +// public static IBaseAction Teraflare { get; } = new BaseAction(ActionID.Teraflare) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; + +// /// +// [RotationDesc(ActionID.RadiantAegis)] +// protected sealed override bool DefenseSingleAbility(out IAction act) +// { +// if (RadiantAegis.CanUse(out act)) return true; +// return base.DefenseSingleAbility(out act); +// } + +// /// +// [RotationDesc(ActionID.Physick)] +// protected sealed override bool HealSingleGCD(out IAction act) +// { +// if (Physick.CanUse(out act)) return true; +// return base.HealSingleGCD(out act); +// } + +// /// +// [RotationDesc(ActionID.Addle)] +// protected override bool DefenseAreaAbility(out IAction act) +// { +// if (Addle.CanUse(out act)) return true; +// return base.DefenseAreaAbility(out act); +// } +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/Basic/WAR_Base.cs b/RotationSolver.Basic/Rotations/Basic/WAR_Base.cs index 1d50572be..757aa713e 100644 --- a/RotationSolver.Basic/Rotations/Basic/WAR_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/WAR_Base.cs @@ -1,397 +1,397 @@ -using Dalamud.Game.ClientState.Objects.SubKinds; -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of war. -/// -public abstract class WAR_Base : CustomRotation -{ - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Strength; - - /// - /// - /// - public sealed override Job[] Jobs => new[] { Job.WAR, Job.MRD }; - - static WARGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte BeastGauge => JobGauge.BeastGauge; - - #region Attack Single - /// - /// 1 - /// - public static IBaseAction HeavySwing { get; } = new BaseAction(ActionID.HeavySwing); - - /// - /// 2 - /// - public static IBaseAction Maim { get; } = new BaseAction(ActionID.Maim); - - /// - /// 3 - /// - public static IBaseAction StormsPath { get; } = new BaseAction(ActionID.StormsPath); - - /// - /// 4 - /// - public static IBaseAction StormsEye { get; } = new BaseAction(ActionID.StormsEye) - { - ActionCheck = (b, m) => Player.WillStatusEndGCD(9, 0, true, StatusID.SurgingTempest), - }; - - /// - /// - /// - public static IBaseAction InnerBeast { get; } = new BaseAction(ActionID.InnerBeast, ActionOption.UseResources) - { - ActionCheck = (b, m) => BeastGauge >= 50 || Player.HasStatus(true, StatusID.InnerRelease), - }; - - /// - /// - /// - public static IBaseAction Tomahawk { get; } = new BaseAction(ActionID.Tomahawk) - { - FilterForHostiles = TargetFilter.TankRangeTarget, - ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), - }; - - /// - /// - /// - public static IBaseAction Onslaught { get; } = new BaseAction(ActionID.Onslaught, ActionOption.EndSpecial) - { - ChoiceTarget = TargetFilter.FindTargetForMoving, - }; - - /// - /// - /// - public static IBaseAction Upheaval { get; } = new BaseAction(ActionID.Upheaval) - { - //TODO: Why is that status? - StatusNeed = new StatusID[] { StatusID.SurgingTempest }, - }; - #endregion - - #region Attack Area - /// - /// 1 - /// - public static IBaseAction Overpower { get; } = new BaseAction(ActionID.Overpower); - - /// - /// 2 - /// - public static IBaseAction MythrilTempest { get; } = new BaseAction(ActionID.MythrilTempest); - - /// - /// - /// - public static IBaseAction SteelCyclone { get; } = new BaseAction(ActionID.SteelCyclone) - { - ActionCheck = InnerBeast.ActionCheck, - }; - - /// - /// - /// - public static IBaseAction PrimalRend { get; } = new BaseAction(ActionID.PrimalRend) - { - StatusNeed = new[] { StatusID.PrimalRendReady } - }; - - /// - /// - /// - public static IBaseAction Orogeny { get; } = new BaseAction(ActionID.Orogeny); - #endregion - - #region Heal - private sealed protected override IBaseAction TankStance => Defiance; - - /// - /// - /// - public static IBaseAction Defiance { get; } = new BaseAction(ActionID.Defiance, ActionOption.Defense | ActionOption.EndSpecial); - #endregion - - #region Support - /// - /// - /// - public static IBaseAction Infuriate { get; } = new BaseAction(ActionID.Infuriate) - { - StatusProvide = new[] { StatusID.NascentChaos }, - ActionCheck = (b, m) => HasHostilesInRange && BeastGauge <= 50 && InCombat && IsLongerThan(5), - }; - - /// - /// - /// - public static IBaseAction InnerRelease { get; } = new BaseAction(ActionID.InnerRelease) - { - ActionCheck = (b, m) => IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction Berserk { get; } = new BaseAction(ActionID.Berserk) - { - ActionCheck = (b, m) => HasHostilesInRange && !InnerRelease.IsCoolingDown && IsLongerThan(10), - }; - #endregion - - #region Defense Ability - /// - /// - /// - public static IBaseAction ThrillOfBattle { get; } = new BaseAction(ActionID.ThrillOfBattle, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Equilibrium { get; } = new BaseAction(ActionID.Equilibrium, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Vengeance { get; } = new BaseAction(ActionID.Vengeance, ActionOption.Defense) - { - StatusProvide = Rampart.StatusProvide, - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction RawIntuition { get; } = new BaseAction(ActionID.RawIntuition, ActionOption.Defense) - { - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction NascentFlash { get; } = new BaseAction(ActionID.NascentFlash, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction ShakeItOff { get; } = new BaseAction(ActionID.ShakeItOff, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction Holmgang { get; } = new BaseAction(ActionID.Holmgang, ActionOption.Defense) - { - ChoiceTarget = (tars, mustUse) => Player, - }; - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait EnhancedInfuriate { get; } = new BaseTrait(157); - - /// - /// - /// - public static IBaseTrait BerserkMastery { get; } = new BaseTrait(218); - - /// - /// - /// - public static IBaseTrait TheBeastWithin { get; } = new BaseTrait(249); - - /// - /// - /// - public static IBaseTrait InnerBeastMastery { get; } = new BaseTrait(265); - - /// - /// - /// - public static IBaseTrait SteelCycloneMastery { get; } = new BaseTrait(266); - - /// - /// - /// - public static IBaseTrait NascentChaos { get; } = new BaseTrait(267); - - /// - /// - /// - public static IBaseTrait MasteringTheBeast { get; } = new BaseTrait(268); - - /// - /// - /// - public static IBaseTrait EnhancedThrillOfBattle { get; } = new BaseTrait(269); - - /// - /// - /// - public static IBaseTrait TankMastery { get; } = new BaseTrait(318); - - /// - /// - /// - public static IBaseTrait EnhancedShakeItOff { get; } = new BaseTrait(417); - - /// - /// - /// - public static IBaseTrait RawIntuitionMastery { get; } = new BaseTrait(418); - - /// - /// - /// - public static IBaseTrait EnhancedNascentFlash { get; } = new BaseTrait(419); - - /// - /// - /// - public static IBaseTrait EnhancedEquilibrium { get; } = new BaseTrait(420); - - /// - /// - /// - public static IBaseTrait EnhancedOnslaught { get; } = new BaseTrait(421); - - /// - /// - /// - public static IBaseTrait MeleeMastery { get; } = new BaseTrait(505); - #endregion +//using Dalamud.Game.ClientState.Objects.SubKinds; +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of war. +///// +//public abstract class WAR_Base : CustomRotation +//{ +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Strength; + +// /// +// /// +// /// +// public sealed override Job[] Jobs => new[] { Job.WAR, Job.MRD }; + +// static WARGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte BeastGauge => JobGauge.BeastGauge; + +// #region Attack Single +// /// +// /// 1 +// /// +// public static IBaseAction HeavySwing { get; } = new BaseAction(ActionID.HeavySwing); + +// /// +// /// 2 +// /// +// public static IBaseAction Maim { get; } = new BaseAction(ActionID.Maim); + +// /// +// /// 3 +// /// +// public static IBaseAction StormsPath { get; } = new BaseAction(ActionID.StormsPath); + +// /// +// /// 4 +// /// +// public static IBaseAction StormsEye { get; } = new BaseAction(ActionID.StormsEye) +// { +// ActionCheck = (b, m) => Player.WillStatusEndGCD(9, 0, true, StatusID.SurgingTempest), +// }; + +// /// +// /// +// /// +// public static IBaseAction InnerBeast { get; } = new BaseAction(ActionID.InnerBeast, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BeastGauge >= 50 || Player.HasStatus(true, StatusID.InnerRelease), +// }; + +// /// +// /// +// /// +// public static IBaseAction Tomahawk { get; } = new BaseAction(ActionID.Tomahawk) +// { +// FilterForHostiles = TargetFilter.TankRangeTarget, +// ActionCheck = (b, m) => !IsLastAction(IActionHelper.MovingActions), +// }; + +// /// +// /// +// /// +// public static IBaseAction Onslaught { get; } = new BaseAction(ActionID.Onslaught, ActionOption.EndSpecial) +// { +// ChoiceTarget = TargetFilter.FindTargetForMoving, +// }; + +// /// +// /// +// /// +// public static IBaseAction Upheaval { get; } = new BaseAction(ActionID.Upheaval) +// { +// //TODO: Why is that status? +// StatusNeed = new StatusID[] { StatusID.SurgingTempest }, +// }; +// #endregion + +// #region Attack Area +// /// +// /// 1 +// /// +// public static IBaseAction Overpower { get; } = new BaseAction(ActionID.Overpower); + +// /// +// /// 2 +// /// +// public static IBaseAction MythrilTempest { get; } = new BaseAction(ActionID.MythrilTempest); + +// /// +// /// +// /// +// public static IBaseAction SteelCyclone { get; } = new BaseAction(ActionID.SteelCyclone) +// { +// ActionCheck = InnerBeast.ActionCheck, +// }; + +// /// +// /// +// /// +// public static IBaseAction PrimalRend { get; } = new BaseAction(ActionID.PrimalRend) +// { +// StatusNeed = new[] { StatusID.PrimalRendReady } +// }; + +// /// +// /// +// /// +// public static IBaseAction Orogeny { get; } = new BaseAction(ActionID.Orogeny); +// #endregion + +// #region Heal +// private sealed protected override IBaseAction TankStance => Defiance; + +// /// +// /// +// /// +// public static IBaseAction Defiance { get; } = new BaseAction(ActionID.Defiance, ActionOption.Defense | ActionOption.EndSpecial); +// #endregion + +// #region Support +// /// +// /// +// /// +// public static IBaseAction Infuriate { get; } = new BaseAction(ActionID.Infuriate) +// { +// StatusProvide = new[] { StatusID.NascentChaos }, +// ActionCheck = (b, m) => HasHostilesInRange && BeastGauge <= 50 && InCombat && IsLongerThan(5), +// }; + +// /// +// /// +// /// +// public static IBaseAction InnerRelease { get; } = new BaseAction(ActionID.InnerRelease) +// { +// ActionCheck = (b, m) => IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction Berserk { get; } = new BaseAction(ActionID.Berserk) +// { +// ActionCheck = (b, m) => HasHostilesInRange && !InnerRelease.IsCoolingDown && IsLongerThan(10), +// }; +// #endregion + +// #region Defense Ability +// /// +// /// +// /// +// public static IBaseAction ThrillOfBattle { get; } = new BaseAction(ActionID.ThrillOfBattle, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Equilibrium { get; } = new BaseAction(ActionID.Equilibrium, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Vengeance { get; } = new BaseAction(ActionID.Vengeance, ActionOption.Defense) +// { +// StatusProvide = Rampart.StatusProvide, +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction RawIntuition { get; } = new BaseAction(ActionID.RawIntuition, ActionOption.Defense) +// { +// ActionCheck = BaseAction.TankDefenseSelf, +// }; + +// /// +// /// +// /// +// public static IBaseAction NascentFlash { get; } = new BaseAction(ActionID.NascentFlash, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction ShakeItOff { get; } = new BaseAction(ActionID.ShakeItOff, ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction Holmgang { get; } = new BaseAction(ActionID.Holmgang, ActionOption.Defense) +// { +// ChoiceTarget = (tars, mustUse) => Player, +// }; +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait EnhancedInfuriate { get; } = new BaseTrait(157); + +// /// +// /// +// /// +// public static IBaseTrait BerserkMastery { get; } = new BaseTrait(218); + +// /// +// /// +// /// +// public static IBaseTrait TheBeastWithin { get; } = new BaseTrait(249); + +// /// +// /// +// /// +// public static IBaseTrait InnerBeastMastery { get; } = new BaseTrait(265); + +// /// +// /// +// /// +// public static IBaseTrait SteelCycloneMastery { get; } = new BaseTrait(266); + +// /// +// /// +// /// +// public static IBaseTrait NascentChaos { get; } = new BaseTrait(267); + +// /// +// /// +// /// +// public static IBaseTrait MasteringTheBeast { get; } = new BaseTrait(268); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedThrillOfBattle { get; } = new BaseTrait(269); + +// /// +// /// +// /// +// public static IBaseTrait TankMastery { get; } = new BaseTrait(318); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedShakeItOff { get; } = new BaseTrait(417); + +// /// +// /// +// /// +// public static IBaseTrait RawIntuitionMastery { get; } = new BaseTrait(418); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedNascentFlash { get; } = new BaseTrait(419); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedEquilibrium { get; } = new BaseTrait(420); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedOnslaught { get; } = new BaseTrait(421); + +// /// +// /// +// /// +// public static IBaseTrait MeleeMastery { get; } = new BaseTrait(505); +// #endregion - #region PvP +// #region PvP - /// - /// - /// - public static IBaseAction PvP_HeavySwing { get; } = new BaseAction(ActionID.HeavySwing_29074); +// /// +// /// +// /// +// public static IBaseAction PvP_HeavySwing { get; } = new BaseAction(ActionID.HeavySwing_29074); - /// - /// - /// - public static IBaseAction PvP_Maim { get; } = new BaseAction(ActionID.Maim_29075); +// /// +// /// +// /// +// public static IBaseAction PvP_Maim { get; } = new BaseAction(ActionID.Maim_29075); - /// - /// - /// - public static IBaseAction PvP_StormsPath { get; } = new BaseAction(ActionID.StormsPath_29076); +// /// +// /// +// /// +// public static IBaseAction PvP_StormsPath { get; } = new BaseAction(ActionID.StormsPath_29076); - /// - /// - /// - public static IBaseAction PvP_PrimalRend { get; } = new BaseAction(ActionID.PrimalRend_29084); +// /// +// /// +// /// +// public static IBaseAction PvP_PrimalRend { get; } = new BaseAction(ActionID.PrimalRend_29084); - /// - /// - /// - public static IBaseAction PvP_Onslaught { get; } = new BaseAction(ActionID.Onslaught_29079); +// /// +// /// +// /// +// public static IBaseAction PvP_Onslaught { get; } = new BaseAction(ActionID.Onslaught_29079); - /// - /// - /// - public static IBaseAction PvP_Orogeny { get; } = new BaseAction(ActionID.Orogeny_29080,ActionOption.Buff); +// /// +// /// +// /// +// public static IBaseAction PvP_Orogeny { get; } = new BaseAction(ActionID.Orogeny_29080,ActionOption.Buff); - /// - /// - /// - public static IBaseAction PvP_Blota { get; } = new BaseAction(ActionID.Blota); +// /// +// /// +// /// +// public static IBaseAction PvP_Blota { get; } = new BaseAction(ActionID.Blota); - /// - /// - /// - public static IBaseAction PvP_Bloodwhetting { get; } = new BaseAction(ActionID.Bloodwhetting_29082,ActionOption.Buff); +// /// +// /// +// /// +// public static IBaseAction PvP_Bloodwhetting { get; } = new BaseAction(ActionID.Bloodwhetting_29082,ActionOption.Buff); - /// - /// - /// - public static IBaseAction PvP_FellCleave { get; } = new BaseAction(ActionID.FellCleave_29078) - { - StatusNeed = new StatusID[] { StatusID.InnerRelease_1303 }, - }; +// /// +// /// +// /// +// public static IBaseAction PvP_FellCleave { get; } = new BaseAction(ActionID.FellCleave_29078) +// { +// StatusNeed = new StatusID[] { StatusID.InnerRelease_1303 }, +// }; - /// - /// - /// - public static IBaseAction PvP_ChaoticCyclone { get; } = new BaseAction(ActionID.ChaoticCyclone_29736,ActionOption.Buff) - { - StatusNeed = new StatusID[] { StatusID.NascentChaos_1992 }, - }; +// /// +// /// +// /// +// public static IBaseAction PvP_ChaoticCyclone { get; } = new BaseAction(ActionID.ChaoticCyclone_29736,ActionOption.Buff) +// { +// StatusNeed = new StatusID[] { StatusID.NascentChaos_1992 }, +// }; - /// - /// - /// - public static IBaseAction PvP_PrimalScream { get; } = new BaseAction(ActionID.PrimalScream) - { - FilterForHostiles = tars => tars.Where(t => t is PlayerCharacter), - ActionCheck = (t, m) => LimitBreakLevel >= 1, - }; +// /// +// /// +// /// +// public static IBaseAction PvP_PrimalScream { get; } = new BaseAction(ActionID.PrimalScream) +// { +// FilterForHostiles = tars => tars.Where(t => t is PlayerCharacter), +// ActionCheck = (t, m) => LimitBreakLevel >= 1, +// }; - #endregion +// #endregion - private protected override IBaseAction LimitBreak => LandWaker; +// private protected override IBaseAction LimitBreak => LandWaker; - /// - /// LB - /// - public static IBaseAction LandWaker { get; } = new BaseAction(ActionID.LandWaker, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; +// /// +// /// LB +// /// +// public static IBaseAction LandWaker { get; } = new BaseAction(ActionID.LandWaker, ActionOption.Defense) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; - /// - protected override bool EmergencyAbility(IAction nextGCD, out IAction act) - { - if (Holmgang.CanUse(out act) && BaseAction.CanTankBurst()) return true; - return base.EmergencyAbility(nextGCD, out act); - } +// /// +// protected override bool EmergencyAbility(IAction nextGCD, out IAction act) +// { +// if (Holmgang.CanUse(out act) && BaseAction.CanTankBurst()) return true; +// return base.EmergencyAbility(nextGCD, out act); +// } - /// - [RotationDesc(ActionID.Onslaught)] - protected sealed override bool MoveForwardAbility(out IAction act) - { - if (Onslaught.CanUse(out act)) return true; - return base.MoveForwardAbility(out act); - } +// /// +// [RotationDesc(ActionID.Onslaught)] +// protected sealed override bool MoveForwardAbility(out IAction act) +// { +// if (Onslaught.CanUse(out act)) return true; +// return base.MoveForwardAbility(out act); +// } - /// - [RotationDesc(ActionID.PrimalRend)] - protected sealed override bool MoveForwardGCD(out IAction act) - { - if (PrimalRend.CanUse(out act, CanUseOption.MustUse)) return true; - return base.MoveForwardGCD(out act); - } -} +// /// +// [RotationDesc(ActionID.PrimalRend)] +// protected sealed override bool MoveForwardGCD(out IAction act) +// { +// if (PrimalRend.CanUse(out act, CanUseOption.MustUse)) return true; +// return base.MoveForwardGCD(out act); +// } +//} diff --git a/RotationSolver.Basic/Rotations/Basic/WHM_Base.cs b/RotationSolver.Basic/Rotations/Basic/WHM_Base.cs index 2df466a6a..449dbebf3 100644 --- a/RotationSolver.Basic/Rotations/Basic/WHM_Base.cs +++ b/RotationSolver.Basic/Rotations/Basic/WHM_Base.cs @@ -1,368 +1,368 @@ -using Dalamud.Game.ClientState.Objects.SubKinds; -using ECommons.DalamudServices; -using ECommons.ExcelServices; -using RotationSolver.Basic.Traits; - -namespace RotationSolver.Basic.Rotations.Basic; - -/// -/// The base class of WHM -/// -public abstract class WHM_Base : CustomRotation -{ - /// - /// - /// - public sealed override Job[] Jobs => new Job[] { Job.WHM, Job.CNJ }; - - /// - /// - /// - public override MedicineType MedicineType => MedicineType.Mind; - - #region Job Gauge - private static WHMGauge JobGauge => Svc.Gauges.Get(); - - /// - /// - /// - public static byte Lily => JobGauge.Lily; - - /// - /// - /// - public static byte BloodLily => JobGauge.BloodLily; - - static float LilyTimeRaw => JobGauge.LilyTimer / 1000f; - - /// - /// - /// - public static float LilyTime => LilyTimeRaw - DataCenter.WeaponRemain; - - /// - /// - /// - /// - /// - protected static bool LilyAfter(float time) => LilyTime <= time; - - /// - /// - /// - /// - /// - /// - protected static bool LilyAfterGCD(uint gcdCount = 0, float offset = 0) - => LilyAfter(GCDTime(gcdCount, offset)); - #endregion - - #region Heal - private protected sealed override IBaseAction Raise => Raise1; - - /// - /// - /// - public static IBaseAction Raise1 { get; } = new BaseAction(ActionID.Raise, ActionOption.Friendly); - - /// - /// - /// - public static IBaseAction Cure { get; } = new BaseAction(ActionID.Cure, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Medica { get; } = new BaseAction(ActionID.Medica, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Cure2 { get; } = new BaseAction(ActionID.CureIi, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Medica2 { get; } = new BaseAction(ActionID.MedicaIi, ActionOption.Hot) - { - StatusProvide = [StatusID.MedicaIi, StatusID.TrueMedicaIi], - }; - - /// - /// - /// - public static IBaseAction Regen { get; } = new BaseAction(ActionID.Regen, ActionOption.Hot) - { - TargetStatus = - [ - StatusID.Regen, - StatusID.Regen_897, - StatusID.Regen_1330, - ] - }; - - /// - /// - /// - public static IBaseAction Cure3 { get; } = new BaseAction(ActionID.CureIii, ActionOption.Heal | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction Benediction { get; } = new BaseAction(ActionID.Benediction, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Asylum { get; } = new BaseAction(ActionID.Asylum, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction AfflatusSolace { get; } = new BaseAction(ActionID.AfflatusSolace, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => Lily > 0, - }; - - /// - /// - /// - public static IBaseAction Tetragrammaton { get; } = new BaseAction(ActionID.Tetragrammaton, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction DivineBenison { get; } = new BaseAction(ActionID.DivineBenison, ActionOption.Defense) - { - StatusProvide = [StatusID.DivineBenison], - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction AfflatusRapture { get; } = new BaseAction(ActionID.AfflatusRapture, ActionOption.Heal | ActionOption.UseResources) - { - ActionCheck = (b, m) => Lily > 0, - }; - - /// - /// - /// - public static IBaseAction Aquaveil { get; } = new BaseAction(ActionID.Aquaveil, ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - }; - - /// - /// - /// - public static IBaseAction LiturgyOfTheBell { get; } = new BaseAction(ActionID.LiturgyOfTheBell, ActionOption.Heal); - #endregion - - #region Attack - /// - /// - /// - public static IBaseAction Stone { get; } = new BaseAction(ActionID.Stone); - - /// - /// - /// - public static IBaseAction Aero { get; } = new BaseAction(ActionID.Aero, ActionOption.Dot) - { - TargetStatus = - [ - StatusID.Aero, - StatusID.AeroIi, - StatusID.Dia, - ], - }; - - /// - /// - /// - public static IBaseAction Holy { get; } = new BaseAction(ActionID.Holy); - - /// - /// - /// - public static IBaseAction Assize { get; } = new BaseAction(ActionID.Assize); - - /// - /// - /// - public static IBaseAction AfflatusMisery { get; } = new BaseAction(ActionID.AfflatusMisery, ActionOption.UseResources) - { - ActionCheck = (b, m) => BloodLily == 3, - }; - #endregion - - #region buff - /// - /// - /// - public static IBaseAction PresenceOfMind { get; } = new BaseAction(ActionID.PresenceOfMind, ActionOption.Buff) - { - ActionCheck = (b, m) => !IsMoving && IsLongerThan(10), - }; - - /// - /// - /// - public static IBaseAction ThinAir { get; } = new BaseAction(ActionID.ThinAir, ActionOption.Buff); - - /// - /// - /// - public static IBaseAction PlenaryIndulgence { get; } = new BaseAction(ActionID.PlenaryIndulgence, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Temperance { get; } = new BaseAction(ActionID.Temperance, ActionOption.Heal); - #endregion - - #region Traits - /// - /// - /// - public static IBaseTrait MaimAndMend { get; } = new BaseTrait(23); - - /// - /// - /// - public static IBaseTrait Freecure { get; } = new BaseTrait(25); - - /// - /// - /// - public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(26); - - /// - /// - /// - public static IBaseTrait StoneMastery { get; } = new BaseTrait(179); - - /// - /// - /// - public static IBaseTrait AeroMastery { get; } = new BaseTrait(180); - - /// - /// - /// - public static IBaseTrait StoneMastery2 { get; } = new BaseTrait(181); - - /// - /// - /// - public static IBaseTrait StoneMastery3 { get; } = new BaseTrait(182); - - /// - /// - /// - public static IBaseTrait SecretOfTheLily { get; } = new BaseTrait(196); - - /// - /// - /// - public static IBaseTrait AeroMastery2 { get; } = new BaseTrait(307); - - /// - /// - /// - public static IBaseTrait StoneMastery4 { get; } = new BaseTrait(308); - - /// - /// - /// - public static IBaseTrait TranscendentAfflatus { get; } = new BaseTrait(309); - - /// - /// - /// - public static IBaseTrait EnhancedAsylum { get; } = new BaseTrait(310); - - /// - /// - /// - public static IBaseTrait GlareMastery { get; } = new BaseTrait(487); - - /// - /// - /// - public static IBaseTrait HolyMastery { get; } = new BaseTrait(488); - - /// - /// - /// - public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(489); - - /// - /// - /// - public static IBaseTrait EnhancedDivineBenison { get; } = new BaseTrait(490); - #endregion +//using Dalamud.Game.ClientState.Objects.SubKinds; +//using ECommons.DalamudServices; +//using ECommons.ExcelServices; +//using RotationSolver.Basic.Traits; + +//namespace RotationSolver.Basic.Rotations.Basic; + +///// +///// The base class of WHM +///// +//public abstract class WHM_Base : CustomRotation +//{ +// /// +// /// +// /// +// public sealed override Job[] Jobs => new Job[] { Job.WHM, Job.CNJ }; + +// /// +// /// +// /// +// public override MedicineType MedicineType => MedicineType.Mind; + +// #region Job Gauge +// private static WHMGauge JobGauge => Svc.Gauges.Get(); + +// /// +// /// +// /// +// public static byte Lily => JobGauge.Lily; + +// /// +// /// +// /// +// public static byte BloodLily => JobGauge.BloodLily; + +// static float LilyTimeRaw => JobGauge.LilyTimer / 1000f; + +// /// +// /// +// /// +// public static float LilyTime => LilyTimeRaw - DataCenter.WeaponRemain; + +// /// +// /// +// /// +// /// +// /// +// protected static bool LilyAfter(float time) => LilyTime <= time; + +// /// +// /// +// /// +// /// +// /// +// /// +// protected static bool LilyAfterGCD(uint gcdCount = 0, float offset = 0) +// => LilyAfter(GCDTime(gcdCount, offset)); +// #endregion + +// #region Heal +// private protected sealed override IBaseAction Raise => Raise1; + +// /// +// /// +// /// +// public static IBaseAction Raise1 { get; } = new BaseAction(ActionID.Raise, ActionOption.Friendly); + +// /// +// /// +// /// +// public static IBaseAction Cure { get; } = new BaseAction(ActionID.Cure, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Medica { get; } = new BaseAction(ActionID.Medica, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Cure2 { get; } = new BaseAction(ActionID.CureIi, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Medica2 { get; } = new BaseAction(ActionID.MedicaIi, ActionOption.Hot) +// { +// StatusProvide = [StatusID.MedicaIi, StatusID.TrueMedicaIi], +// }; + +// /// +// /// +// /// +// public static IBaseAction Regen { get; } = new BaseAction(ActionID.Regen, ActionOption.Hot) +// { +// TargetStatus = +// [ +// StatusID.Regen, +// StatusID.Regen_897, +// StatusID.Regen_1330, +// ] +// }; + +// /// +// /// +// /// +// public static IBaseAction Cure3 { get; } = new BaseAction(ActionID.CureIii, ActionOption.Heal | ActionOption.EndSpecial); + +// /// +// /// +// /// +// public static IBaseAction Benediction { get; } = new BaseAction(ActionID.Benediction, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Asylum { get; } = new BaseAction(ActionID.Asylum, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction AfflatusSolace { get; } = new BaseAction(ActionID.AfflatusSolace, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Lily > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Tetragrammaton { get; } = new BaseAction(ActionID.Tetragrammaton, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction DivineBenison { get; } = new BaseAction(ActionID.DivineBenison, ActionOption.Defense) +// { +// StatusProvide = [StatusID.DivineBenison], +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction AfflatusRapture { get; } = new BaseAction(ActionID.AfflatusRapture, ActionOption.Heal | ActionOption.UseResources) +// { +// ActionCheck = (b, m) => Lily > 0, +// }; + +// /// +// /// +// /// +// public static IBaseAction Aquaveil { get; } = new BaseAction(ActionID.Aquaveil, ActionOption.Defense) +// { +// ChoiceTarget = TargetFilter.FindAttackedTarget, +// }; + +// /// +// /// +// /// +// public static IBaseAction LiturgyOfTheBell { get; } = new BaseAction(ActionID.LiturgyOfTheBell, ActionOption.Heal); +// #endregion + +// #region Attack +// /// +// /// +// /// +// public static IBaseAction Stone { get; } = new BaseAction(ActionID.Stone); + +// /// +// /// +// /// +// public static IBaseAction Aero { get; } = new BaseAction(ActionID.Aero, ActionOption.Dot) +// { +// TargetStatus = +// [ +// StatusID.Aero, +// StatusID.AeroIi, +// StatusID.Dia, +// ], +// }; + +// /// +// /// +// /// +// public static IBaseAction Holy { get; } = new BaseAction(ActionID.Holy); + +// /// +// /// +// /// +// public static IBaseAction Assize { get; } = new BaseAction(ActionID.Assize); + +// /// +// /// +// /// +// public static IBaseAction AfflatusMisery { get; } = new BaseAction(ActionID.AfflatusMisery, ActionOption.UseResources) +// { +// ActionCheck = (b, m) => BloodLily == 3, +// }; +// #endregion + +// #region buff +// /// +// /// +// /// +// public static IBaseAction PresenceOfMind { get; } = new BaseAction(ActionID.PresenceOfMind, ActionOption.Buff) +// { +// ActionCheck = (b, m) => !IsMoving && IsLongerThan(10), +// }; + +// /// +// /// +// /// +// public static IBaseAction ThinAir { get; } = new BaseAction(ActionID.ThinAir, ActionOption.Buff); + +// /// +// /// +// /// +// public static IBaseAction PlenaryIndulgence { get; } = new BaseAction(ActionID.PlenaryIndulgence, ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction Temperance { get; } = new BaseAction(ActionID.Temperance, ActionOption.Heal); +// #endregion + +// #region Traits +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend { get; } = new BaseTrait(23); + +// /// +// /// +// /// +// public static IBaseTrait Freecure { get; } = new BaseTrait(25); + +// /// +// /// +// /// +// public static IBaseTrait MaimAndMend2 { get; } = new BaseTrait(26); + +// /// +// /// +// /// +// public static IBaseTrait StoneMastery { get; } = new BaseTrait(179); + +// /// +// /// +// /// +// public static IBaseTrait AeroMastery { get; } = new BaseTrait(180); + +// /// +// /// +// /// +// public static IBaseTrait StoneMastery2 { get; } = new BaseTrait(181); + +// /// +// /// +// /// +// public static IBaseTrait StoneMastery3 { get; } = new BaseTrait(182); + +// /// +// /// +// /// +// public static IBaseTrait SecretOfTheLily { get; } = new BaseTrait(196); + +// /// +// /// +// /// +// public static IBaseTrait AeroMastery2 { get; } = new BaseTrait(307); + +// /// +// /// +// /// +// public static IBaseTrait StoneMastery4 { get; } = new BaseTrait(308); + +// /// +// /// +// /// +// public static IBaseTrait TranscendentAfflatus { get; } = new BaseTrait(309); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedAsylum { get; } = new BaseTrait(310); + +// /// +// /// +// /// +// public static IBaseTrait GlareMastery { get; } = new BaseTrait(487); + +// /// +// /// +// /// +// public static IBaseTrait HolyMastery { get; } = new BaseTrait(488); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedHealingMagic { get; } = new BaseTrait(489); + +// /// +// /// +// /// +// public static IBaseTrait EnhancedDivineBenison { get; } = new BaseTrait(490); +// #endregion - #region PvP - - /// - /// - /// - public static IBaseAction PvP_Glare3 { get; } = new BaseAction(ActionID.GlareIii_29223); - - /// - /// - /// - public static IBaseAction PvP_Cure2 { get; } = new BaseAction(ActionID.CureIi_29224,ActionOption.Heal); - - /// - /// - /// - public static IBaseAction PvP_AfflatusMisery { get; } = new BaseAction(ActionID.AfflatusMisery_29226); - - /// - /// - /// - public static IBaseAction PvP_Aquaveil { get; } = new BaseAction(ActionID.Aquaveil_29227,ActionOption.Defense); - - /// - /// - /// - public static IBaseAction PvP_MiracleOfNature { get; } = new BaseAction(ActionID.MiracleOfNature); - - /// - /// - /// - public static IBaseAction PvP_SeraphStrike { get; } = new BaseAction(ActionID.SeraphStrike); - - /// - /// - /// - public static IBaseAction PvP_Cure3 { get; } = new BaseAction(ActionID.CureIii_29225,ActionOption.Heal) - { - StatusNeed = [StatusID.CureIiiReady], - }; - - /// - /// - /// - public static IBaseAction PvP_AfflatusPurgation { get; } = new BaseAction(ActionID.AfflatusPurgation) - { - FilterForHostiles = tars => tars.Where(t => t is PlayerCharacter), - ActionCheck = (t, m) => LimitBreakLevel >= 1, - }; - - #endregion - - private protected override IBaseAction LimitBreak => PulseOfLife; - - /// - /// LB - /// - public static IBaseAction PulseOfLife { get; } = new BaseAction(ActionID.PulseOfLife, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 3, - }; -} \ No newline at end of file +// #region PvP + +// /// +// /// +// /// +// public static IBaseAction PvP_Glare3 { get; } = new BaseAction(ActionID.GlareIii_29223); + +// /// +// /// +// /// +// public static IBaseAction PvP_Cure2 { get; } = new BaseAction(ActionID.CureIi_29224,ActionOption.Heal); + +// /// +// /// +// /// +// public static IBaseAction PvP_AfflatusMisery { get; } = new BaseAction(ActionID.AfflatusMisery_29226); + +// /// +// /// +// /// +// public static IBaseAction PvP_Aquaveil { get; } = new BaseAction(ActionID.Aquaveil_29227,ActionOption.Defense); + +// /// +// /// +// /// +// public static IBaseAction PvP_MiracleOfNature { get; } = new BaseAction(ActionID.MiracleOfNature); + +// /// +// /// +// /// +// public static IBaseAction PvP_SeraphStrike { get; } = new BaseAction(ActionID.SeraphStrike); + +// /// +// /// +// /// +// public static IBaseAction PvP_Cure3 { get; } = new BaseAction(ActionID.CureIii_29225,ActionOption.Heal) +// { +// StatusNeed = [StatusID.CureIiiReady], +// }; + +// /// +// /// +// /// +// public static IBaseAction PvP_AfflatusPurgation { get; } = new BaseAction(ActionID.AfflatusPurgation) +// { +// FilterForHostiles = tars => tars.Where(t => t is PlayerCharacter), +// ActionCheck = (t, m) => LimitBreakLevel >= 1, +// }; + +// #endregion + +// private protected override IBaseAction LimitBreak => PulseOfLife; + +// /// +// /// LB +// /// +// public static IBaseAction PulseOfLife { get; } = new BaseAction(ActionID.PulseOfLife, ActionOption.Heal) +// { +// ActionCheck = (b, m) => LimitBreakLevel == 3, +// }; +//} \ No newline at end of file diff --git a/RotationSolver.Basic/Rotations/CustomRotation_Ability.cs b/RotationSolver.Basic/Rotations/CustomRotation_Ability.cs index 4bcd61599..e3f227076 100644 --- a/RotationSolver.Basic/Rotations/CustomRotation_Ability.cs +++ b/RotationSolver.Basic/Rotations/CustomRotation_Ability.cs @@ -374,7 +374,7 @@ protected virtual bool DefenseAreaAbility(out IAction act) /// Can we use it. [RotationDesc(DescType.SpeedAbility)] - [RotationDesc(ActionID.Sprint)] + [RotationDesc(ActionID.Sprint_PvE)] protected virtual bool SpeedAbility(out IAction act) { if (PvP_Sprint.CanUse(out act)) return true; diff --git a/RotationSolver.Basic/Rotations/CustomRotation_Actions.cs b/RotationSolver.Basic/Rotations/CustomRotation_Actions.cs index 35c349b71..7c7792545 100644 --- a/RotationSolver.Basic/Rotations/CustomRotation_Actions.cs +++ b/RotationSolver.Basic/Rotations/CustomRotation_Actions.cs @@ -23,567 +23,567 @@ public override bool CanUse(out IAction act, CanUseOption option = CanUseOption. } } - #region PvE - /// - /// - /// - public static IBaseAction Addle { get; } = new RoleAction(ActionID.Addle, [JobRole.RangedMagical], ActionOption.Defense) - { - ActionCheck = (b, m) => !b.HasStatus(false, StatusID.Addle), - }; - - /// - /// - /// - public static IBaseAction Swiftcast { get; } = new RoleAction(ActionID.Swiftcast, [JobRole.RangedMagical, JobRole.Healer], ActionOption.Buff) - { - StatusProvide = - [ - StatusID.Swiftcast, - StatusID.Triplecast, - StatusID.Dualcast, - ] - }; - - /// - /// - /// - public static IBaseAction Esuna { get; } = new RoleAction(ActionID.Esuna, [JobRole.Healer], ActionOption.Heal) - { - ChoiceTarget = (tars, mustUse) => - { - if (DyingPeople.Any()) - { - return DyingPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); - } - else if (WeakenPeople.Any()) - { - return WeakenPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); - } - return null; - }, - }; - - /// - /// - /// - public static IBaseAction Rescue { get; } = new RoleAction(ActionID.Rescue, [JobRole.Healer], ActionOption.Heal); - - /// - /// - /// - public static IBaseAction Repose { get; } = new RoleAction(ActionID.Repose, [JobRole.Healer]); - - /// - /// - /// - public static IBaseAction LucidDreaming { get; } = new RoleAction(ActionID.LucidDreaming, - [JobRole.Healer, JobRole.RangedMagical], ActionOption.Buff) - { - ActionCheck = (b, m) => Player.CurrentMp < 6000 && InCombat, - }; - - /// - /// - /// - public static IBaseAction SecondWind { get; } = new RoleAction(ActionID.SecondWind, - [JobRole.RangedPhysical, JobRole.Melee], ActionOption.Heal) - { - ActionCheck = (b, m) => Player?.GetHealthRatio() < Service.Config.GetValue(Configuration.JobConfigFloat.HealthSingleAbility) && InCombat, - }; - - /// - /// - /// - public static IBaseAction ArmsLength { get; } = new RoleAction(ActionID.ArmsLength, [JobRole.Tank, JobRole.Melee, JobRole.RangedPhysical], ActionOption.Defense | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction Rampart { get; } = new RoleAction(ActionID.Rampart, [JobRole.Tank], ActionOption.Defense) - { - StatusProvide = new StatusID[] - { - StatusID.Superbolide, StatusID.HallowedGround, - StatusID.Rampart, StatusID.Bulwark, - StatusID.Bloodwhetting, - StatusID.Vengeance, - StatusID.Sentinel, - StatusID.ShadowWall, - StatusID.Nebula, - - //TODO:BLU Debuff - }.Union(StatusHelper.NoNeedHealingStatus).ToArray(), - ActionCheck = BaseAction.TankDefenseSelf, - }; - - /// - /// - /// - public static IBaseAction Provoke { get; } = new RoleAction(ActionID.Provoke, [JobRole.Tank]) - { - FilterForHostiles = b => TargetFilter.ProvokeTarget(b), - }; - - /// - /// - /// - public static IBaseAction Reprisal { get; } = new RoleAction(ActionID.Reprisal, new JobRole[] { JobRole.Tank }); - - /// - /// - /// - public static IBaseAction Shirk { get; } = new RoleAction(ActionID.Shirk, new JobRole[] { JobRole.Tank }, ActionOption.Friendly) - { - ChoiceTarget = (friends, mustUse) => TargetFilter.GetJobCategory(friends, JobRole.Tank)?.FirstOrDefault(), - }; - - /// - /// - /// - public static IBaseAction Bloodbath { get; } = new RoleAction(ActionID.Bloodbath, new JobRole[] { JobRole.Melee }, ActionOption.Heal) - { - ActionCheck = (t, m) => SecondWind.ActionCheck(t, m) && HasHostilesInRange, - }; - - /// - /// - /// - public static IBaseAction Feint { get; } = new RoleAction(ActionID.Feint, new JobRole[] { JobRole.Melee }, ActionOption.Defense) - { - ActionCheck = (b, m) => !b.HasStatus(false, StatusID.Feint), - }; - - /// - /// - /// - public static IBaseAction Interject { get; } = new RoleAction(ActionID.Interject, new JobRole[] { JobRole.Tank }) - { - FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), - }; - - /// - /// - /// - public static IBaseAction LowBlow { get; } = new RoleAction(ActionID.LowBlow, new JobRole[] { JobRole.Tank }) - { - FilterForHostiles = bs => bs.Where((Func)(b => - { - if (b.IsBossFromIcon() || IsMoving || b.CastActionId == 0) return false; - - if (!b.IsCastInterruptible || Interject.IsCoolingDown) return true; - return false; - })), - }; - - /// - /// - /// - public static IBaseAction LegSweep { get; } = new RoleAction(ActionID.LegSweep, new JobRole[] { JobRole.Melee }) - { - FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), - }; - - /// - /// - /// - public static IBaseAction HeadGraze { get; } = new RoleAction(ActionID.HeadGraze, new JobRole[] { JobRole.RangedPhysical }) - { - FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), - }; - - /// - /// - /// - public static IBaseAction SureCast { get; } = new RoleAction(ActionID.Surecast, - new JobRole[] { JobRole.RangedMagical, JobRole.Healer }, ActionOption.Heal); - - /// - /// - /// - public static IBaseAction TrueNorth { get; } = new RoleAction(ActionID.TrueNorth, - new JobRole[] { JobRole.Melee }, ActionOption.Heal) - { - StatusProvide = new StatusID[] { StatusID.TrueNorth, StatusID.RightEye }, - }; - - /// - /// - /// - public static IBaseAction Peloton { get; } = new RoleAction(ActionID.Peloton, new JobRole[] { JobRole.RangedPhysical }, ActionOption.Friendly) - { - ActionCheck = (b, m) => - { - if (!NotInCombatDelay) return false; - var players = PartyMembers.GetObjectInRadius(20); - if (players.Any(ObjectHelper.InCombat)) return false; - return players.Any(p => p.WillStatusEnd(3, false, StatusID.Peloton)); - }, - }; - - /// - /// - /// - public static IBaseAction Sprint { get; } = new BaseAction(ActionID.Sprint, ActionOption.Friendly) - { - StatusProvide = new StatusID[] { StatusID.Dualcast }, - }; + //#region PvE + ///// + ///// + ///// + //public static IBaseAction Addle { get; } = new RoleAction(ActionID.Addle, [JobRole.RangedMagical], ActionOption.Defense) + //{ + // ActionCheck = (b, m) => !b.HasStatus(false, StatusID.Addle), + //}; + + ///// + ///// + ///// + //public static IBaseAction Swiftcast { get; } = new RoleAction(ActionID.Swiftcast, [JobRole.RangedMagical, JobRole.Healer], ActionOption.Buff) + //{ + // StatusProvide = + // [ + // StatusID.Swiftcast, + // StatusID.Triplecast, + // StatusID.Dualcast, + // ] + //}; + + ///// + ///// + ///// + //public static IBaseAction Esuna { get; } = new RoleAction(ActionID.Esuna, [JobRole.Healer], ActionOption.Heal) + //{ + // ChoiceTarget = (tars, mustUse) => + // { + // if (DyingPeople.Any()) + // { + // return DyingPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); + // } + // else if (WeakenPeople.Any()) + // { + // return WeakenPeople.OrderBy(ObjectHelper.DistanceToPlayer).First(); + // } + // return null; + // }, + //}; + + ///// + ///// + ///// + //public static IBaseAction Rescue { get; } = new RoleAction(ActionID.Rescue, [JobRole.Healer], ActionOption.Heal); + + ///// + ///// + ///// + //public static IBaseAction Repose { get; } = new RoleAction(ActionID.Repose, [JobRole.Healer]); + + ///// + ///// + ///// + //public static IBaseAction LucidDreaming { get; } = new RoleAction(ActionID.LucidDreaming, + // [JobRole.Healer, JobRole.RangedMagical], ActionOption.Buff) + //{ + // ActionCheck = (b, m) => Player.CurrentMp < 6000 && InCombat, + //}; + + ///// + ///// + ///// + //public static IBaseAction SecondWind { get; } = new RoleAction(ActionID.SecondWind, + // [JobRole.RangedPhysical, JobRole.Melee], ActionOption.Heal) + //{ + // ActionCheck = (b, m) => Player?.GetHealthRatio() < Service.Config.GetValue(Configuration.JobConfigFloat.HealthSingleAbility) && InCombat, + //}; + + ///// + ///// + ///// + //public static IBaseAction ArmsLength { get; } = new RoleAction(ActionID.ArmsLength, [JobRole.Tank, JobRole.Melee, JobRole.RangedPhysical], ActionOption.Defense | ActionOption.EndSpecial); + + ///// + ///// + ///// + //public static IBaseAction Rampart { get; } = new RoleAction(ActionID.Rampart, [JobRole.Tank], ActionOption.Defense) + //{ + // StatusProvide = new StatusID[] + // { + // StatusID.Superbolide, StatusID.HallowedGround, + // StatusID.Rampart, StatusID.Bulwark, + // StatusID.Bloodwhetting, + // StatusID.Vengeance, + // StatusID.Sentinel, + // StatusID.ShadowWall, + // StatusID.Nebula, + + // //TODO:BLU Debuff + // }.Union(StatusHelper.NoNeedHealingStatus).ToArray(), + // ActionCheck = BaseAction.TankDefenseSelf, + //}; + + ///// + ///// + ///// + //public static IBaseAction Provoke { get; } = new RoleAction(ActionID.Provoke, [JobRole.Tank]) + //{ + // FilterForHostiles = b => TargetFilter.ProvokeTarget(b), + //}; + + ///// + ///// + ///// + //public static IBaseAction Reprisal { get; } = new RoleAction(ActionID.Reprisal, new JobRole[] { JobRole.Tank }); + + ///// + ///// + ///// + //public static IBaseAction Shirk { get; } = new RoleAction(ActionID.Shirk, new JobRole[] { JobRole.Tank }, ActionOption.Friendly) + //{ + // ChoiceTarget = (friends, mustUse) => TargetFilter.GetJobCategory(friends, JobRole.Tank)?.FirstOrDefault(), + //}; + + ///// + ///// + ///// + //public static IBaseAction Bloodbath { get; } = new RoleAction(ActionID.Bloodbath, new JobRole[] { JobRole.Melee }, ActionOption.Heal) + //{ + // ActionCheck = (t, m) => SecondWind.ActionCheck(t, m) && HasHostilesInRange, + //}; + + ///// + ///// + ///// + //public static IBaseAction Feint { get; } = new RoleAction(ActionID.Feint, new JobRole[] { JobRole.Melee }, ActionOption.Defense) + //{ + // ActionCheck = (b, m) => !b.HasStatus(false, StatusID.Feint), + //}; + + ///// + ///// + ///// + //public static IBaseAction Interject { get; } = new RoleAction(ActionID.Interject, new JobRole[] { JobRole.Tank }) + //{ + // FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), + //}; + + ///// + ///// + ///// + //public static IBaseAction LowBlow { get; } = new RoleAction(ActionID.LowBlow, new JobRole[] { JobRole.Tank }) + //{ + // FilterForHostiles = bs => bs.Where((Func)(b => + // { + // if (b.IsBossFromIcon() || IsMoving || b.CastActionId == 0) return false; + + // if (!b.IsCastInterruptible || Interject.IsCoolingDown) return true; + // return false; + // })), + //}; + + ///// + ///// + ///// + //public static IBaseAction LegSweep { get; } = new RoleAction(ActionID.LegSweep, new JobRole[] { JobRole.Melee }) + //{ + // FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), + //}; + + ///// + ///// + ///// + //public static IBaseAction HeadGraze { get; } = new RoleAction(ActionID.HeadGraze, new JobRole[] { JobRole.RangedPhysical }) + //{ + // FilterForHostiles = b => b.Where(ObjectHelper.CanInterrupt), + //}; + + ///// + ///// + ///// + //public static IBaseAction SureCast { get; } = new RoleAction(ActionID.Surecast, + // new JobRole[] { JobRole.RangedMagical, JobRole.Healer }, ActionOption.Heal); + + ///// + ///// + ///// + //public static IBaseAction TrueNorth { get; } = new RoleAction(ActionID.TrueNorth, + // new JobRole[] { JobRole.Melee }, ActionOption.Heal) + //{ + // StatusProvide = new StatusID[] { StatusID.TrueNorth, StatusID.RightEye }, + //}; + + ///// + ///// + ///// + //public static IBaseAction Peloton { get; } = new RoleAction(ActionID.Peloton, new JobRole[] { JobRole.RangedPhysical }, ActionOption.Friendly) + //{ + // ActionCheck = (b, m) => + // { + // if (!NotInCombatDelay) return false; + // var players = PartyMembers.GetObjectInRadius(20); + // if (players.Any(ObjectHelper.InCombat)) return false; + // return players.Any(p => p.WillStatusEnd(3, false, StatusID.Peloton)); + // }, + //}; + + ///// + ///// + ///// + //public static IBaseAction Sprint { get; } = new BaseAction(ActionID.Sprint, ActionOption.Friendly) + //{ + // StatusProvide = new StatusID[] { StatusID.Dualcast }, + //}; private protected virtual IBaseAction Raise => null; private protected virtual IBaseAction LimitBreak => null; private protected virtual IBaseAction TankStance => null; - #endregion - - #region PvE Limitbreak - /// - /// - /// - public static IBaseAction ShieldWall { get; } = new RoleAction(ActionID.ShieldWall, new JobRole[] { JobRole.Tank }, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 1, - }; - - /// - /// - /// - public static IBaseAction Stronghold { get; } = new RoleAction(ActionID.Stronghold, new JobRole[] { JobRole.Tank }, ActionOption.Defense) - { - ActionCheck = (b, m) => LimitBreakLevel == 2, - }; - - /// - /// - /// - public static IBaseAction HealingWind { get; } = new RoleAction(ActionID.HealingWind, new JobRole[] { JobRole.Healer }, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 1, - }; - - /// - /// - /// - public static IBaseAction BreathOfTheEarth { get; } = new RoleAction(ActionID.BreathOfTheEarth, new JobRole[] { JobRole.Healer }, ActionOption.Heal) - { - ActionCheck = (b, m) => LimitBreakLevel == 2, - }; - - /// - /// - /// - public static IBaseAction Braver { get; } = new RoleAction(ActionID.Braver, new JobRole[] { JobRole.Melee }) - { - ActionCheck = (b, m) => LimitBreakLevel == 1, - }; - - /// - /// - /// - public static IBaseAction Bladedance { get; } = new RoleAction(ActionID.Bladedance, new JobRole[] { JobRole.Melee }) - { - ActionCheck = (b, m) => LimitBreakLevel == 2, - }; - - /// - /// - /// - public static IBaseAction BigShot { get; } = new RoleAction(ActionID.BigShot, new JobRole[] { JobRole.RangedPhysical }) - { - ActionCheck = (b, m) => LimitBreakLevel == 1, - }; - - /// - /// - /// - public static IBaseAction Desperado { get; } = new RoleAction(ActionID.Desperado, new JobRole[] { JobRole.RangedPhysical }) - { - ActionCheck = (b, m) => LimitBreakLevel == 2, - }; - - /// - /// - /// - public static IBaseAction Skyshard { get; } = new RoleAction(ActionID.Skyshard, new JobRole[] { JobRole.RangedMagical }) - { - ActionCheck = (b, m) => LimitBreakLevel == 1, - }; - - /// - /// - /// - public static IBaseAction Starstorm { get; } = new RoleAction(ActionID.Starstorm, new JobRole[] { JobRole.RangedMagical }) - { - ActionCheck = (b, m) => LimitBreakLevel == 2, - }; - #endregion - - #region Duty Action - /// - /// - /// - public static IBaseAction VariantRaise { get; } = new RoleAction(ActionID.VariantRaise, - new JobRole[] { JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical, }, - ActionOption.Friendly | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantRaise2 { get; } = new RoleAction(ActionID.VariantRaiseIi, - [JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical,], - ActionOption.Friendly | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantUltimatum { get; } = new BaseAction(ActionID.VariantUltimatum, ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantCure { get; } = new RoleAction(ActionID.VariantCure, - [JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical], - ActionOption.Heal | ActionOption.DutyAction | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction VariantCure2 { get; } = new RoleAction(ActionID.VariantCure_33862, - [JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical], - ActionOption.Heal | ActionOption.DutyAction | ActionOption.EndSpecial); - - /// - /// - /// - public static IBaseAction VariantSpiritDart { get; } = new RoleAction(ActionID.VariantSpiritDart, - [JobRole.Healer, JobRole.Tank], ActionOption.Dot | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantSpiritDart2 { get; } = new RoleAction(ActionID.VariantSpiritDart_33863, - [JobRole.Healer, JobRole.Tank], ActionOption.Dot | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantRampart { get; } = new RoleAction(ActionID.VariantRampart, - [JobRole.Melee, JobRole.Healer, JobRole.RangedMagical, JobRole.RangedPhysical,], ActionOption.Buff | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction VariantRampart2 { get; } = new RoleAction(ActionID.VariantRampart_33864, - [JobRole.Melee, JobRole.Healer, JobRole.RangedMagical, JobRole.RangedPhysical], ActionOption.Buff | ActionOption.DutyAction); - - /// - /// - /// - public static IBaseAction LostSpellforge { get; } = new BaseAction(ActionID.LostSpellforge, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostSpellforge], - ActionCheck = (b, m) => LostSpellforge.Target?.HasStatus(false, StatusID.MagicalAversion) ?? false, - ChoiceTarget = (targets, mustUse) => targets.FirstOrDefault(t => (Job)t.ClassJob.Id switch - { - Job.WAR - or Job.GNB - or Job.MNK - or Job.SAM - or Job.DRG - or Job.MCH - or Job.DNC - - or Job.PLD - or Job.DRK - or Job.NIN - or Job.BRD - or Job.RDM - => true, - - _ => false, - }), - }; - - /// - /// - /// - public static IBaseAction LostSteelsting { get; } = new BaseAction(ActionID.LostSteelsting, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostSteelsting], - ActionCheck = (b, m) => LostSteelsting.Target?.HasStatus(false, StatusID.PhysicalAversion) ?? false, - ChoiceTarget = (targets, mustUse) => targets.FirstOrDefault(t => (Job)t.ClassJob.Id switch - { - Job.WHM - or Job.SCH - or Job.AST - or Job.SGE - or Job.BLM - or Job.SMN - - or Job.PLD - or Job.DRK - or Job.NIN - or Job.BRD - or Job.RDM - => true, - - _ => false, - }), - }; - - /// - /// - /// - public static IBaseAction LostRampage { get; } = new BaseAction(ActionID.LostRampage, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostRampage], - ActionCheck = (b, m) => LostRampage.Target?.HasStatus(false, StatusID.PhysicalAversion) ?? false, - }; - - /// - /// - /// - public static IBaseAction LostBurst { get; } = new BaseAction(ActionID.LostBurst, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostBurst], - ActionCheck = (b, m) => LostBurst.Target?.HasStatus(false, StatusID.MagicalAversion) ?? false, - }; - - /// - /// - /// - public static IBaseAction LostBravery { get; } = new BaseAction(ActionID.LostBravery, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostBravery], - }; - - /// - /// - /// - public static IBaseAction LostProtect { get; } = new BaseAction(ActionID.LostProtect, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostProtect, StatusID.LostProtectIi], - }; - - /// - /// - /// - public static IBaseAction LostShell { get; } = new BaseAction(ActionID.LostShell, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostShell, StatusID.LostShellIi], - }; - - /// - /// - /// - public static IBaseAction LostProtect2 { get; } = new BaseAction(ActionID.LostProtectIi, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostProtectIi], - }; - - /// - /// - /// - public static IBaseAction LostShell2 { get; } = new BaseAction(ActionID.LostShellIi, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostShellIi], - }; - - /// - /// - /// - public static IBaseAction LostBubble { get; } = new BaseAction(ActionID.LostBubble, - ActionOption.DutyAction | ActionOption.Friendly) - { - StatusProvide = [StatusID.LostBubble], - }; - - /// - /// - /// - public static IBaseAction LostStoneskin { get; } = new BaseAction(ActionID.LostStoneskin, - ActionOption.DutyAction | ActionOption.Defense) - { - ChoiceTarget = TargetFilter.FindAttackedTarget, - StatusProvide = [StatusID.Stoneskin], - }; - - /// - /// - /// - public static IBaseAction LostStoneskin2 { get; } = new BaseAction(ActionID.LostStoneskinIi, - ActionOption.DutyAction | ActionOption.Defense) - { - StatusProvide = [StatusID.Stoneskin], - }; - - /// - /// - /// - public static IBaseAction LostFlarestar { get; } = new BaseAction(ActionID.LostFlareStar, - ActionOption.DutyAction) - { - StatusProvide = [StatusID.LostFlareStar], - }; - - /// - /// - /// - public static IBaseAction LostSeraphStrike { get; } = new BaseAction(ActionID.LostSeraphStrike, - ActionOption.DutyAction) - { - StatusProvide = [StatusID.ClericStance_2484], - }; - #endregion - - #region PvP - /// - /// - /// - public static IBaseAction PvP_StandardIssueElixir { get; } = new BaseAction(ActionID.StandardissueElixir, ActionOption.Heal) - { - ActionCheck = (t, m) => !HasHostilesInMaxRange - && (t.CurrentMp <= t.MaxMp / 3 || t.CurrentHp <= t.MaxHp / 3) - && !IsLastAction(ActionID.StandardissueElixir), - }; - - /// - /// - /// - public static IBaseAction PvP_Recuperate { get; } = new BaseAction(ActionID.Recuperate, ActionOption.Heal) - { - ActionCheck = (t, m) => t.MaxHp - t.CurrentHp > 15000, - }; - - /// - /// - /// - public static IBaseAction PvP_Purify { get; } = new BaseAction(ActionID.Purify_29056, ActionOption.Heal) - { - ActionCheck = (t, m) => Player?.StatusList.Any(s => s.GameData.CanDispel) ?? false, - }; - - /// - /// - /// - public static IBaseAction PvP_Guard { get; } = new BaseAction(ActionID.Guard, ActionOption.Defense); - - /// - /// - /// - public static IBaseAction PvP_Sprint { get; } = new BaseAction(ActionID.Sprint_29057, ActionOption.Friendly) - { - StatusProvide = [StatusID.Sprint_1342], - }; - #endregion + //#endregion + + //#region PvE Limitbreak + ///// + ///// + ///// + //public static IBaseAction ShieldWall { get; } = new RoleAction(ActionID.ShieldWall, new JobRole[] { JobRole.Tank }, ActionOption.Defense) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 1, + //}; + + ///// + ///// + ///// + //public static IBaseAction Stronghold { get; } = new RoleAction(ActionID.Stronghold, new JobRole[] { JobRole.Tank }, ActionOption.Defense) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 2, + //}; + + ///// + ///// + ///// + //public static IBaseAction HealingWind { get; } = new RoleAction(ActionID.HealingWind, new JobRole[] { JobRole.Healer }, ActionOption.Heal) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 1, + //}; + + ///// + ///// + ///// + //public static IBaseAction BreathOfTheEarth { get; } = new RoleAction(ActionID.BreathOfTheEarth, new JobRole[] { JobRole.Healer }, ActionOption.Heal) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 2, + //}; + + ///// + ///// + ///// + //public static IBaseAction Braver { get; } = new RoleAction(ActionID.Braver, new JobRole[] { JobRole.Melee }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 1, + //}; + + ///// + ///// + ///// + //public static IBaseAction Bladedance { get; } = new RoleAction(ActionID.Bladedance, new JobRole[] { JobRole.Melee }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 2, + //}; + + ///// + ///// + ///// + //public static IBaseAction BigShot { get; } = new RoleAction(ActionID.BigShot, new JobRole[] { JobRole.RangedPhysical }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 1, + //}; + + ///// + ///// + ///// + //public static IBaseAction Desperado { get; } = new RoleAction(ActionID.Desperado, new JobRole[] { JobRole.RangedPhysical }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 2, + //}; + + ///// + ///// + ///// + //public static IBaseAction Skyshard { get; } = new RoleAction(ActionID.Skyshard, new JobRole[] { JobRole.RangedMagical }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 1, + //}; + + ///// + ///// + ///// + //public static IBaseAction Starstorm { get; } = new RoleAction(ActionID.Starstorm, new JobRole[] { JobRole.RangedMagical }) + //{ + // ActionCheck = (b, m) => LimitBreakLevel == 2, + //}; + //#endregion + + //#region Duty Action + ///// + ///// + ///// + //public static IBaseAction VariantRaise { get; } = new RoleAction(ActionID.VariantRaise, + // new JobRole[] { JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical, }, + // ActionOption.Friendly | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantRaise2 { get; } = new RoleAction(ActionID.VariantRaiseIi, + //[JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical,], + //ActionOption.Friendly | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantUltimatum { get; } = new BaseAction(ActionID.VariantUltimatum, ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantCure { get; } = new RoleAction(ActionID.VariantCure, + // [JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical], + // ActionOption.Heal | ActionOption.DutyAction | ActionOption.EndSpecial); + + ///// + ///// + ///// + //public static IBaseAction VariantCure2 { get; } = new RoleAction(ActionID.VariantCure_33862, + // [JobRole.Melee, JobRole.Tank, JobRole.RangedMagical, JobRole.RangedPhysical], + // ActionOption.Heal | ActionOption.DutyAction | ActionOption.EndSpecial); + + ///// + ///// + ///// + //public static IBaseAction VariantSpiritDart { get; } = new RoleAction(ActionID.VariantSpiritDart, + // [JobRole.Healer, JobRole.Tank], ActionOption.Dot | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantSpiritDart2 { get; } = new RoleAction(ActionID.VariantSpiritDart_33863, + // [JobRole.Healer, JobRole.Tank], ActionOption.Dot | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantRampart { get; } = new RoleAction(ActionID.VariantRampart, + // [JobRole.Melee, JobRole.Healer, JobRole.RangedMagical, JobRole.RangedPhysical,], ActionOption.Buff | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction VariantRampart2 { get; } = new RoleAction(ActionID.VariantRampart_33864, + // [JobRole.Melee, JobRole.Healer, JobRole.RangedMagical, JobRole.RangedPhysical], ActionOption.Buff | ActionOption.DutyAction); + + ///// + ///// + ///// + //public static IBaseAction LostSpellforge { get; } = new BaseAction(ActionID.LostSpellforge, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostSpellforge], + // ActionCheck = (b, m) => LostSpellforge.Target?.HasStatus(false, StatusID.MagicalAversion) ?? false, + // ChoiceTarget = (targets, mustUse) => targets.FirstOrDefault(t => (Job)t.ClassJob.Id switch + // { + // Job.WAR + // or Job.GNB + // or Job.MNK + // or Job.SAM + // or Job.DRG + // or Job.MCH + // or Job.DNC + + // or Job.PLD + // or Job.DRK + // or Job.NIN + // or Job.BRD + // or Job.RDM + // => true, + + // _ => false, + // }), + //}; + + ///// + ///// + ///// + //public static IBaseAction LostSteelsting { get; } = new BaseAction(ActionID.LostSteelsting, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostSteelsting], + // ActionCheck = (b, m) => LostSteelsting.Target?.HasStatus(false, StatusID.PhysicalAversion) ?? false, + // ChoiceTarget = (targets, mustUse) => targets.FirstOrDefault(t => (Job)t.ClassJob.Id switch + // { + // Job.WHM + // or Job.SCH + // or Job.AST + // or Job.SGE + // or Job.BLM + // or Job.SMN + + // or Job.PLD + // or Job.DRK + // or Job.NIN + // or Job.BRD + // or Job.RDM + // => true, + + // _ => false, + // }), + //}; + + ///// + ///// + ///// + //public static IBaseAction LostRampage { get; } = new BaseAction(ActionID.LostRampage, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostRampage], + // ActionCheck = (b, m) => LostRampage.Target?.HasStatus(false, StatusID.PhysicalAversion) ?? false, + //}; + + ///// + ///// + ///// + //public static IBaseAction LostBurst { get; } = new BaseAction(ActionID.LostBurst, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostBurst], + // ActionCheck = (b, m) => LostBurst.Target?.HasStatus(false, StatusID.MagicalAversion) ?? false, + //}; + + ///// + ///// + ///// + //public static IBaseAction LostBravery { get; } = new BaseAction(ActionID.LostBravery, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostBravery], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostProtect { get; } = new BaseAction(ActionID.LostProtect, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostProtect, StatusID.LostProtectIi], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostShell { get; } = new BaseAction(ActionID.LostShell, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostShell, StatusID.LostShellIi], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostProtect2 { get; } = new BaseAction(ActionID.LostProtectIi, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostProtectIi], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostShell2 { get; } = new BaseAction(ActionID.LostShellIi, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostShellIi], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostBubble { get; } = new BaseAction(ActionID.LostBubble, + // ActionOption.DutyAction | ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.LostBubble], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostStoneskin { get; } = new BaseAction(ActionID.LostStoneskin, + // ActionOption.DutyAction | ActionOption.Defense) + //{ + // ChoiceTarget = TargetFilter.FindAttackedTarget, + // StatusProvide = [StatusID.Stoneskin], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostStoneskin2 { get; } = new BaseAction(ActionID.LostStoneskinIi, + // ActionOption.DutyAction | ActionOption.Defense) + //{ + // StatusProvide = [StatusID.Stoneskin], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostFlarestar { get; } = new BaseAction(ActionID.LostFlareStar, + //ActionOption.DutyAction) + //{ + // StatusProvide = [StatusID.LostFlareStar], + //}; + + ///// + ///// + ///// + //public static IBaseAction LostSeraphStrike { get; } = new BaseAction(ActionID.LostSeraphStrike, + // ActionOption.DutyAction) + //{ + // StatusProvide = [StatusID.ClericStance_2484], + //}; + //#endregion + + //#region PvP + ///// + ///// + ///// + //public static IBaseAction PvP_StandardIssueElixir { get; } = new BaseAction(ActionID.StandardissueElixir, ActionOption.Heal) + //{ + // ActionCheck = (t, m) => !HasHostilesInMaxRange + // && (t.CurrentMp <= t.MaxMp / 3 || t.CurrentHp <= t.MaxHp / 3) + // && !IsLastAction(ActionID.StandardissueElixir), + //}; + + ///// + ///// + ///// + //public static IBaseAction PvP_Recuperate { get; } = new BaseAction(ActionID.Recuperate, ActionOption.Heal) + //{ + // ActionCheck = (t, m) => t.MaxHp - t.CurrentHp > 15000, + //}; + + ///// + ///// + ///// + //public static IBaseAction PvP_Purify { get; } = new BaseAction(ActionID.Purify_29056, ActionOption.Heal) + //{ + // ActionCheck = (t, m) => Player?.StatusList.Any(s => s.GameData.CanDispel) ?? false, + //}; + + ///// + ///// + ///// + //public static IBaseAction PvP_Guard { get; } = new BaseAction(ActionID.Guard, ActionOption.Defense); + + ///// + ///// + ///// + //public static IBaseAction PvP_Sprint { get; } = new BaseAction(ActionID.Sprint_29057, ActionOption.Friendly) + //{ + // StatusProvide = [StatusID.Sprint_1342], + //}; + //#endregion IBaseAction[] _allBaseActions; diff --git a/RotationSolver.Basic/Traits/BaseTrait.cs b/RotationSolver.Basic/Traits/BaseTrait.cs index c35d54a42..23d603157 100644 --- a/RotationSolver.Basic/Traits/BaseTrait.cs +++ b/RotationSolver.Basic/Traits/BaseTrait.cs @@ -2,7 +2,6 @@ using Lumina.Excel.GeneratedSheets; namespace RotationSolver.Basic.Traits; - /// /// The trait thing. /// diff --git a/RotationSolver.GameData/Getters/ActionCategoryGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs similarity index 80% rename from RotationSolver.GameData/Getters/ActionCategoryGetter.cs rename to RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs index 8ec48d352..8bce3e3ec 100644 --- a/RotationSolver.GameData/Getters/ActionCategoryGetter.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionCategoryGetter.cs @@ -1,12 +1,7 @@ using Lumina.Excel.GeneratedSheets; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -namespace RotationSolver.GameData.Getters; -internal class ActionCategoryGetter(Lumina.GameData gameData) +namespace RotationSolver.GameData.Getters.Actions; +internal class ActionCategoryGetter(Lumina.GameData gameData) : ExcelRowGetter(gameData) { private readonly List _addedNames = []; diff --git a/RotationSolver.GameData/Getters/Actions/ActionFactoryGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionFactoryGetter.cs new file mode 100644 index 000000000..c7f3de118 --- /dev/null +++ b/RotationSolver.GameData/Getters/Actions/ActionFactoryGetter.cs @@ -0,0 +1,26 @@ +using System.Data; + +namespace RotationSolver.GameData.Getters.Actions; + +internal class ActionFactoryGetter(Lumina.GameData gameData) + : ActionGetterBase(gameData) +{ + protected override string ToCode(Lumina.Excel.GeneratedSheets.Action item) + { + var name = GetName(item); + + return $$""" + public static IBaseAction Create{{item.RowId}}() + { + IBaseAction action = new BaseAction(ActionID.{{name}}); + Modify{{name}}(ref action); + return action; + }); + + /// + /// Modify {{GetDescName(item)}} + /// + static partial void Modify{{item.Name.RawString.ToPascalCase()}}_{{item.RowId}}(ref IBaseAction action); + """; + } +} diff --git a/RotationSolver.GameData/Getters/Actions/ActionGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionGetter.cs new file mode 100644 index 000000000..220665cd5 --- /dev/null +++ b/RotationSolver.GameData/Getters/Actions/ActionGetter.cs @@ -0,0 +1,20 @@ +using Action = Lumina.Excel.GeneratedSheets.Action; + +namespace RotationSolver.GameData.Getters.Actions; + +internal class ActionGetter(Lumina.GameData gameData) + : ActionGetterBase(gameData) +{ + protected override string ToCode(Action item) + { + var name = GetName(item); + + return $""" + /// + /// {GetDescName(item)} + /// {GetDesc(item)} + /// + {name} = {item.RowId}, + """; + } +} diff --git a/RotationSolver.GameData/Getters/ActionGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs similarity index 60% rename from RotationSolver.GameData/Getters/ActionGetter.cs rename to RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs index 428978e10..b391baa83 100644 --- a/RotationSolver.GameData/Getters/ActionGetter.cs +++ b/RotationSolver.GameData/Getters/Actions/ActionGetterBase.cs @@ -1,9 +1,9 @@ -using Lumina.Excel.GeneratedSheets; + +using Lumina.Excel.GeneratedSheets; using Action = Lumina.Excel.GeneratedSheets.Action; -namespace RotationSolver.GameData.Getters; - -internal class ActionGetter(Lumina.GameData gameData) +namespace RotationSolver.GameData.Getters.Actions; +internal abstract class ActionGetterBase(Lumina.GameData gameData) : ExcelRowGetter(gameData) { private readonly List _addedNames = []; @@ -24,9 +24,11 @@ protected override bool AddToList(Action item) return true; } - protected override string ToCode(Action item) + protected string GetName(Action item) { - var name = item.Name.RawString.ToPascalCase(); + var name = item.Name.RawString.ToPascalCase() + + (item.IsPvP ? "_PvP" : "_PvE"); + if (_addedNames.Contains(name)) { name += "_" + item.RowId.ToString(); @@ -35,20 +37,23 @@ protected override string ToCode(Action item) { _addedNames.Add(name); } + return name; + } - var desc = gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; - + protected static string GetDescName(Action item) + { var jobs = item.ClassJobCategory.Value?.Name.RawString; jobs = string.IsNullOrEmpty(jobs) ? string.Empty : $" ({jobs})"; var cate = item.IsPvP ? " PvP" : " PvE"; - return $""" - /// - /// {item.Name.RawString}{cate}{jobs} - /// {desc.Replace("\n", "\n/// ")} - /// - {name} = {item.RowId}, - """; + return $"{item.Name.RawString}{cate}{jobs} [{item.RowId}] [{item.ActionCategory.Value?.Name.RawString ?? string.Empty}]"; + } + + protected string GetDesc(Action item) + { + var desc = gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; + + return $"{desc.Replace("\n", "\n/// ")}"; } } diff --git a/RotationSolver.GameData/Getters/Actions/ActionRotationGetter.cs b/RotationSolver.GameData/Getters/Actions/ActionRotationGetter.cs new file mode 100644 index 000000000..c5c1b22a1 --- /dev/null +++ b/RotationSolver.GameData/Getters/Actions/ActionRotationGetter.cs @@ -0,0 +1,30 @@ +using Lumina.Excel.GeneratedSheets; + +namespace RotationSolver.GameData.Getters.Actions; +internal class ActionRotationGetter(Lumina.GameData gameData, ClassJob job) + : ActionGetterBase(gameData) +{ + 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; + var jobName = job.Abbreviation.RawString; + return (bool?)category.GetType().GetRuntimeProperty(jobName)?.GetValue(category) ?? false; + } + + protected override string ToCode(Lumina.Excel.GeneratedSheets.Action item) + { + var name = GetName(item); + + return $$""" + private readonly Lazy _{{name}}Creator = new(ActionFactory.Create{{item.RowId}}); + /// + /// {{GetDescName(item)}} + /// {{GetDesc(item)}} + /// + public IBaseAction {{name}} => _{{name}}Creator.Value; + """; + } +} diff --git a/RotationSolver.GameData/Getters/RotationGetter.cs b/RotationSolver.GameData/Getters/RotationGetter.cs new file mode 100644 index 000000000..095b3b37f --- /dev/null +++ b/RotationSolver.GameData/Getters/RotationGetter.cs @@ -0,0 +1,50 @@ +using Lumina.Excel.GeneratedSheets; +using RotationSolver.GameData.Getters.Actions; + +namespace RotationSolver.GameData.Getters; + +internal class RotationGetter(Lumina.GameData gameData, ClassJob job) +{ + public string GetName() + { + return (job.NameEnglish.RawString + " Rotation").ToPascalCase(); + } + + public string GetCode() + { + var jobName = job.NameEnglish.RawString; + + var jobs = $"Job.{job.Abbreviation}"; + if (job.RowId != 28 && job.RowId != job.ClassJobParent.Row) + { + jobs += $", Job.{job.ClassJobParent.Value?.Abbreviation ?? "ADV"}"; + } + + return $$""" + using ECommons.DalamudServices; + using ECommons.ExcelServices; + using RotationSolver.Basic.Actions; + using RotationSolver.Basic.Traits; + + namespace RotationSolver.Basic.Rotations.Basic; + + /// + /// {{jobName}} + /// + public abstract partial class {{GetName()}} : CustomRotation + { + + public sealed override Job[] Jobs => new[] { {{jobs}} }; + static {{job.Abbreviation}}Gauge JobGauge => Svc.Gauges.Get<{{job.Abbreviation}}Gauge>(); + + #region Actions + {{new ActionRotationGetter(gameData, job).GetCode().Table()}} + #endregion + + #region Traits + {{new TraitRotationGetter(gameData, job).GetCode().Table()}} + #endregion + } + """; + } +} diff --git a/RotationSolver.GameData/Getters/TraitRotationGetter.cs b/RotationSolver.GameData/Getters/TraitRotationGetter.cs new file mode 100644 index 000000000..51d9b3ac7 --- /dev/null +++ b/RotationSolver.GameData/Getters/TraitRotationGetter.cs @@ -0,0 +1,66 @@ +using Lumina.Excel.GeneratedSheets; + +namespace RotationSolver.GameData.Getters; +internal class TraitRotationGetter(Lumina.GameData gameData, ClassJob job) + : ExcelRowGetter(gameData) +{ + private readonly List _addedNames = []; + + protected override void BeforeCreating() + { + _addedNames.Clear(); + base.BeforeCreating(); + } + + protected override bool AddToList(Trait 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; + + var category = item.ClassJobCategory.Value; + if (category == null) return false; + var jobName = job.Abbreviation.RawString; + return (bool?)category.GetType().GetRuntimeProperty(jobName)?.GetValue(category) ?? false; + } + + protected override string ToCode(Trait item) + { + var name = item.Name.RawString.ToPascalCase() + "Trait"; + + if (_addedNames.Contains(name)) + { + name += "_" + item.RowId.ToString(); + } + else + { + _addedNames.Add(name); + } + + return $$""" + private readonly Lazy _{{name}}Creator = new(() => new BaseTrait({{item.RowId}})); + /// + /// {{GetDescName(item)}} + /// {{GetDesc(item)}} + /// + public IBaseTrait {{name}} => _{{name}}Creator.Value; + """; + } + + private static string GetDescName(Trait item) + { + var jobs = item.ClassJobCategory.Value?.Name.RawString; + jobs = string.IsNullOrEmpty(jobs) ? string.Empty : $" ({jobs})"; + + return $"{item.Name.RawString}{jobs} [{item.RowId}]"; + } + + private string GetDesc(Trait item) + { + var desc = gameData.GetExcelSheet()?.GetRow(item.RowId)?.Description.RawString ?? string.Empty; + + return $"{desc.Replace("\n", "\n/// ")}"; + } +} diff --git a/RotationSolver.GameData/Program.cs b/RotationSolver.GameData/Program.cs index 118b2d646..97b076331 100644 --- a/RotationSolver.GameData/Program.cs +++ b/RotationSolver.GameData/Program.cs @@ -1,5 +1,9 @@ using Lumina; +using Lumina.Data; +using Lumina.Excel.GeneratedSheets; +using Newtonsoft.Json; using RotationSolver.GameData.Getters; +using RotationSolver.GameData.Getters.Actions; using System.Resources.NetStandard; var gameData = new GameData("C:\\Program Files (x86)\\SquareEnix\\FINAL FANTASY XIV - A Realm Reborn\\game\\sqpack", new LuminaOptions @@ -19,7 +23,14 @@ res.AddResource("ContentType", new ContentTypeGetter(gameData).GetCode()); res.AddResource("ActionId", new ActionGetter(gameData).GetCode()); res.AddResource("ActionCategory", new ActionCategoryGetter(gameData).GetCode()); +res.AddResource("Action", new ActionFactoryGetter(gameData).GetCode()); + +var rotations = gameData.GetExcelSheet()! + .Where(job => job.JobIndex > 0) + .Select(job => new RotationGetter(gameData, job)) + .ToDictionary(getter => getter.GetName(), getter => getter.GetCode()); +res.AddResource("Rotation", JsonConvert.SerializeObject(rotations, Formatting.Indented)); res.Generate(); -Console.WriteLine("Finished!"); \ No newline at end of file +Console.WriteLine("Finished!"); diff --git a/RotationSolver.GameData/RotationSolver.GameData.csproj b/RotationSolver.GameData/RotationSolver.GameData.csproj index 3d2cc4dcb..26fe1a288 100644 --- a/RotationSolver.GameData/RotationSolver.GameData.csproj +++ b/RotationSolver.GameData/RotationSolver.GameData.csproj @@ -9,6 +9,7 @@ + diff --git a/RotationSolver.GameData/Util.cs b/RotationSolver.GameData/Util.cs index 932bbf4dd..3f10c5e11 100644 --- a/RotationSolver.GameData/Util.cs +++ b/RotationSolver.GameData/Util.cs @@ -3,6 +3,8 @@ namespace RotationSolver.GameData; internal static partial class Util { + public static string Table(this string str) => " " + str.Replace("\n", "\n "); + public static string OnlyAscii(this string input) => new string(input.Where(char.IsAscii).ToArray()); public static string ToPascalCase(this string input) diff --git a/RotationSolver.SourceGenerators/Properties/Resources.Designer.cs b/RotationSolver.SourceGenerators/Properties/Resources.Designer.cs index f4330ae67..b4852c95f 100644 --- a/RotationSolver.SourceGenerators/Properties/Resources.Designer.cs +++ b/RotationSolver.SourceGenerators/Properties/Resources.Designer.cs @@ -61,7 +61,70 @@ internal Resources() { } /// - /// Looks up a localized string similar to . + /// Looks up a localized string similar to public static IBaseAction Create1() + ///{ + /// IBaseAction action = new BaseAction(ActionID.KeyItem_PvE); + /// ModifyKeyItem_PvE(ref action); + /// return action; + ///}); + /// + ////// <summary> + ////// Modify <see href="https://garlandtools.org/db/#action/1"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) + ////// </summary> + ///static partial void ModifyKey Item_1(ref IBaseAction action); + ///public static IBaseAction Create2() + ///{ + /// IBaseAction action = new BaseAction(ActionID.Interaction_PvE); + /// ModifyInteraction_PvE [rest of string was truncated]";. + /// + internal static string Action { + get { + return ResourceManager.GetString("Action", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /// <summary> + ////// + ////// </summary> + ///Autoattack = 1, + ////// <summary> + ////// + ////// </summary> + ///Spell = 2, + ////// <summary> + ////// + ////// </summary> + ///Weaponskill = 3, + ////// <summary> + ////// + ////// </summary> + ///Ability = 4, + ////// <summary> + ////// + ////// </summary> + ///Item = 5, + ////// <summary> + ////// + ////// </summary> + ///DoLAbility = 6, + ////// <summary> + ////// + ////// </summary> + ///DoHAbility = 7, + ////// <summary> + ////// + ////// </summary> + ///Event = 8, + ////// <summary> + ////// + ////// </summary> + ///LimitBreak = 9, + ////// <summary> + ////// + ////// </summary> + ///System = 10, + ////// [rest of string was truncated]";. /// internal static string ActionCategory { get { @@ -74,16 +137,16 @@ internal static string ActionCategory { ////// <see href="https://garlandtools.org/db/#action/1"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) ////// <para></para> ////// </summary> - ///KeyItem = 1, + ///KeyItem_PvE = 1, ////// <summary> ////// <see href="https://garlandtools.org/db/#action/2"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) ////// <para></para> ////// </summary> - ///Interaction = 2, + ///Interaction_PvE = 2, ////// <summary> ////// <see href="https://garlandtools.org/db/#action/3"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) ////// <para></para> - ////// </summa [rest of string was truncated]";. + ////// [rest of string was truncated]";. /// internal static string ActionId { get { @@ -139,6 +202,15 @@ internal static string ContentType { } } + /// + /// Looks up a localized string similar to . + /// + internal static string Rotation { + get { + return ResourceManager.GetString("Rotation", resourceCulture); + } + } + /// /// Looks up a localized string similar to /// <summary> ////// <see href="https://garlandtools.org/db/#status/1"><strong>Petrification</strong></see> ↓ (All Classes) diff --git a/RotationSolver.SourceGenerators/Properties/Resources.resx b/RotationSolver.SourceGenerators/Properties/Resources.resx index adb0024e6..235faeb0c 100644 --- a/RotationSolver.SourceGenerators/Properties/Resources.resx +++ b/RotationSolver.SourceGenerators/Properties/Resources.resx @@ -17553,161 +17553,161 @@ Gate = 35, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event] /// <para></para> /// </summary> -KeyItem = 1, +KeyItem_PvE = 1, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event] /// <para></para> /// </summary> -Interaction = 2, +Interaction_PvE = 2, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System] /// <para></para> /// </summary> -Sprint = 3, +Sprint_PvE = 3, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4"><strong>Mount</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item] /// <para></para> /// </summary> -Mount = 4, +Mount_PvE = 4, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System] /// <para></para> /// </summary> -Teleport = 5, +Teleport_PvE = 5, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6"><strong>Return</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System] /// <para>Instantly return to your current home point.</para> /// </summary> -Return = 6, +Return_PvE = 6, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7"><strong>attack</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack] /// <para></para> /// </summary> -Attack = 7, +Attack_PvE = 7, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9"><strong>Fast Blade</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/9"><strong>Fast Blade</strong></see> <i>PvE</i> (GLA PLD) [9] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// </summary> -FastBlade = 9, +FastBlade_PvE = 9, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15"><strong>Riot Blade</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/15"><strong>Riot Blade</strong></see> <i>PvE</i> (GLA PLD) [15] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Fast Blade</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Restores MP</para> /// </summary> -RiotBlade = 15, +RiotBlade_PvE = 15, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16"><strong>Shield Bash</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/16"><strong>Shield Bash</strong></see> <i>PvE</i> (GLA PLD) [16] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 6s</para> /// </summary> -ShieldBash = 16, +ShieldBash_PvE = 16, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17"><strong>Sentinel</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/17"><strong>Sentinel</strong></see> <i>PvE</i> (GLA PLD) [17] [Ability] /// <para>Reduces damage taken by 30%.</para> /// <para>Duration: 15s</para> /// </summary> -Sentinel = 17, +Sentinel_PvE = 17, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20"><strong>Fight or Flight</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/20"><strong>Fight or Flight</strong></see> <i>PvE</i> (GLA PLD) [20] [Ability] /// <para>Increases damage dealt by 25%.</para> /// <para>Duration: 20s</para> /// </summary> -FightOrFlight = 20, +FightOrFlight_PvE = 20, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21"><strong>Rage of Halone</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/21"><strong>Rage of Halone</strong></see> <i>PvE</i> (GLA PLD) [21] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Riot Blade</para> /// <para>Combo Potency: 330</para> /// </summary> -RageOfHalone = 21, +RageOfHalone_PvE = 21, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22"><strong>Bulwark</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/22"><strong>Bulwark</strong></see> <i>PvE</i> (PLD) [22] [Ability] /// <para>Block incoming attacks.</para> /// <para>Duration: 10s</para> /// </summary> -Bulwark = 22, +Bulwark_PvE = 22, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23"><strong>Circle of Scorn</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/23"><strong>Circle of Scorn</strong></see> <i>PvE</i> (GLA PLD) [23] [Ability] /// <para>Delivers an attack with a potency of 140 to all nearby enemies.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 30</para> /// <para>Duration: 15s</para> /// </summary> -CircleOfScorn = 23, +CircleOfScorn_PvE = 23, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24"><strong>Shield Lob</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/24"><strong>Shield Lob</strong></see> <i>PvE</i> (GLA PLD) [24] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 100.</para> /// <para>Additional Effect: Increased enmity</para> /// </summary> -ShieldLob = 24, +ShieldLob_PvE = 24, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27"><strong>Cover</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/27"><strong>Cover</strong></see> <i>PvE</i> (PLD) [27] [Ability] /// <para>Take all damage intended for another party member as long as said member remains within 10 yalms.</para> /// <para>Does not activate with certain attacks.</para> /// <para>Duration: 12s</para> /// <para>Oath Gauge Cost: 50</para> /// </summary> -Cover = 27, +Cover_PvE = 27, /// <summary> -/// <see href="https://garlandtools.org/db/#action/28"><strong>Iron Will</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/28"><strong>Iron Will</strong></see> <i>PvE</i> (GLA PLD) [28] [Ability] /// <para>Significantly increases enmity generation.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -IronWill = 28, +IronWill_PvE = 28, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29"><strong>Spirits Within</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29"><strong>Spirits Within</strong></see> <i>PvE</i> (PLD) [29] [Ability] /// <para>Delivers an attack with a potency of 270.</para> /// <para>Additional Effect: Restores MP</para> /// </summary> -SpiritsWithin = 29, +SpiritsWithin_PvE = 29, /// <summary> -/// <see href="https://garlandtools.org/db/#action/30"><strong>Hallowed Ground</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/30"><strong>Hallowed Ground</strong></see> <i>PvE</i> (PLD) [30] [Ability] /// <para>Renders you impervious to most attacks.</para> /// <para>Duration: 10s</para> /// </summary> -HallowedGround = 30, +HallowedGround_PvE = 30, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31"><strong>Heavy Swing</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/31"><strong>Heavy Swing</strong></see> <i>PvE</i> (MRD WAR) [31] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// </summary> -HeavySwing = 31, +HeavySwing_PvE = 31, /// <summary> -/// <see href="https://garlandtools.org/db/#action/37"><strong>Maim</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/37"><strong>Maim</strong></see> <i>PvE</i> (MRD WAR) [37] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Heavy Swing</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Beast Gauge by 10</para> /// </summary> -Maim = 37, +Maim_PvE = 37, /// <summary> -/// <see href="https://garlandtools.org/db/#action/38"><strong>Berserk</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/38"><strong>Berserk</strong></see> <i>PvE</i> (MRD WAR) [38] [Ability] /// <para>Grants 3 stacks of Berserk, each stack guaranteeing weaponskill attacks are critical and direct hits.</para> /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s</para> /// <para>Additional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s</para> /// </summary> -Berserk = 38, +Berserk_PvE = 38, /// <summary> -/// <see href="https://garlandtools.org/db/#action/40"><strong>Thrill of Battle</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/40"><strong>Thrill of Battle</strong></see> <i>PvE</i> (MRD WAR) [40] [Ability] /// <para>Increases maximum HP by 20% and restores the amount increased.</para> /// <para>Additional Effect: Increases HP recovery via healing actions on self by 20%</para> /// <para>Duration: 10s</para> /// </summary> -ThrillOfBattle = 40, +ThrillOfBattle_PvE = 40, /// <summary> -/// <see href="https://garlandtools.org/db/#action/41"><strong>Overpower</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/41"><strong>Overpower</strong></see> <i>PvE</i> (MRD WAR) [41] [Weaponskill] /// <para>Delivers an attack with a potency of 110 to all nearby enemies.</para> /// </summary> -Overpower = 41, +Overpower_PvE = 41, /// <summary> -/// <see href="https://garlandtools.org/db/#action/42"><strong>Storm's Path</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/42"><strong>Storm's Path</strong></see> <i>PvE</i> (MRD WAR) [42] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Maim</para> /// <para>Combo Potency: </para> @@ -17715,22 +17715,22 @@ Overpower = 41, /// <para>Cure Potency: 250</para> /// <para>Combo Bonus: Increases Beast Gauge by 20</para> /// </summary> -StormsPath = 42, +StormsPath_PvE = 42, /// <summary> -/// <see href="https://garlandtools.org/db/#action/43"><strong>Holmgang</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/43"><strong>Holmgang</strong></see> <i>PvE</i> (MRD WAR) [43] [Ability] /// <para>Brace yourself for an enemy onslaught, preventing most attacks from reducing your HP to less than 1.</para> /// <para>Duration: 10s</para> /// <para>When a target is selected, halts their movement with chains.</para> /// </summary> -Holmgang = 43, +Holmgang_PvE = 43, /// <summary> -/// <see href="https://garlandtools.org/db/#action/44"><strong>Vengeance</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/44"><strong>Vengeance</strong></see> <i>PvE</i> (MRD WAR) [44] [Ability] /// <para>Reduces damage taken by 30% and delivers an attack with a potency of 55 every time you suffer physical damage.</para> /// <para>Duration: 15s</para> /// </summary> -Vengeance = 44, +Vengeance_PvE = 44, /// <summary> -/// <see href="https://garlandtools.org/db/#action/45"><strong>Storm's Eye</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/45"><strong>Storm's Eye</strong></see> <i>PvE</i> (MRD WAR) [45] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Maim</para> /// <para>Combo Potency: </para> @@ -17739,42 +17739,42 @@ Vengeance = 44, /// <para>Extends Surging Tempest duration by 30s to a maximum of 60s.</para> /// <para>Combo Bonus: Increases Beast Gauge by 10</para> /// </summary> -StormsEye = 45, +StormsEye_PvE = 45, /// <summary> -/// <see href="https://garlandtools.org/db/#action/46"><strong>Tomahawk</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/46"><strong>Tomahawk</strong></see> <i>PvE</i> (MRD WAR) [46] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 150.</para> /// <para>Additional Effect: Increased enmity</para> /// </summary> -Tomahawk = 46, +Tomahawk_PvE = 46, /// <summary> -/// <see href="https://garlandtools.org/db/#action/48"><strong>Defiance</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/48"><strong>Defiance</strong></see> <i>PvE</i> (MRD WAR) [48] [Ability] /// <para>Significantly increases enmity generation.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -Defiance = 48, +Defiance_PvE = 48, /// <summary> -/// <see href="https://garlandtools.org/db/#action/49"><strong>Inner Beast</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/49"><strong>Inner Beast</strong></see> <i>PvE</i> (WAR) [49] [Weaponskill] /// <para>Delivers an attack with a potency of 330.</para> /// <para>Beast Gauge Cost: 50</para> /// </summary> -InnerBeast = 49, +InnerBeast_PvE = 49, /// <summary> -/// <see href="https://garlandtools.org/db/#action/51"><strong>Steel Cyclone</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/51"><strong>Steel Cyclone</strong></see> <i>PvE</i> (WAR) [51] [Weaponskill] /// <para>Delivers an attack with a potency of 170 to all nearby enemies.</para> /// <para>Beast Gauge Cost: 50</para> /// </summary> -SteelCyclone = 51, +SteelCyclone_PvE = 51, /// <summary> -/// <see href="https://garlandtools.org/db/#action/52"><strong>Infuriate</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/52"><strong>Infuriate</strong></see> <i>PvE</i> (WAR) [52] [Ability] /// <para>Increases Beast Gauge by 50.</para> /// <para>Additional Effect: Grants Nascent Chaos</para> /// <para>Duration: 30s</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Infuriate = 52, +Infuriate_PvE = 52, /// <summary> -/// <see href="https://garlandtools.org/db/#action/53"><strong>Bootshine</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/53"><strong>Bootshine</strong></see> <i>PvE</i> (PGL MNK) [53] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Leaden Fist Potency: </para> /// <para>Opo-opo Form Bonus: Guarantees a critical hit</para> @@ -17782,26 +17782,26 @@ Infuriate = 52, /// <para>Additional Effect: Changes form to raptor</para> /// <para>Duration: 30s</para> /// </summary> -Bootshine = 53, +Bootshine_PvE = 53, /// <summary> -/// <see href="https://garlandtools.org/db/#action/54"><strong>True Strike</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/54"><strong>True Strike</strong></see> <i>PvE</i> (PGL MNK) [54] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Can only be executed when in raptor form.</para> /// <para>Additional Effect: Changes form to coeurl</para> /// <para>Duration: 30s</para> /// </summary> -TrueStrike = 54, +TrueStrike_PvE = 54, /// <summary> -/// <see href="https://garlandtools.org/db/#action/56"><strong>Snap Punch</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/56"><strong>Snap Punch</strong></see> <i>PvE</i> (PGL MNK) [56] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's flank.</para> /// <para>Can only be executed when in coeurl form.</para> /// <para>Additional Effect: Changes form to opo-opo</para> /// <para>Duration: 30s</para> /// </summary> -SnapPunch = 56, +SnapPunch_PvE = 56, /// <summary> -/// <see href="https://garlandtools.org/db/#action/61"><strong>Twin Snakes</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/61"><strong>Twin Snakes</strong></see> <i>PvE</i> (PGL MNK) [61] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Can only be executed when in raptor form.</para> /// <para>Additional Effect: Grants Disciplined Fist</para> @@ -17810,23 +17810,23 @@ SnapPunch = 56, /// <para>Additional Effect: Changes form to coeurl</para> /// <para>Duration: 30s</para> /// </summary> -TwinSnakes = 61, +TwinSnakes_PvE = 61, /// <summary> -/// <see href="https://garlandtools.org/db/#action/62"><strong>Arm of the Destroyer</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/62"><strong>Arm of the Destroyer</strong></see> <i>PvE</i> (PGL MNK) [62] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby targets.</para> /// <para>Opo-opo Form Potency: 110</para> /// <para>Additional Effect: Changes form to raptor</para> /// <para>Duration: 30s</para> /// </summary> -ArmOfTheDestroyer = 62, +ArmOfTheDestroyer_PvE = 62, /// <summary> -/// <see href="https://garlandtools.org/db/#action/65"><strong>Mantra</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/65"><strong>Mantra</strong></see> <i>PvE</i> (PGL MNK) [65] [Ability] /// <para>Increases HP recovery via healing actions by 10% for self and nearby party members.</para> /// <para>Duration: 15s</para> /// </summary> -Mantra = 65, +Mantra_PvE = 65, /// <summary> -/// <see href="https://garlandtools.org/db/#action/66"><strong>Demolish</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/66"><strong>Demolish</strong></see> <i>PvE</i> (PGL MNK) [66] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's rear.</para> /// <para>Can only be executed when in coeurl form.</para> @@ -17836,49 +17836,49 @@ Mantra = 65, /// <para>Additional Effect: Changes form to opo-opo</para> /// <para>Duration: 30s</para> /// </summary> -Demolish = 66, +Demolish_PvE = 66, /// <summary> -/// <see href="https://garlandtools.org/db/#action/69"><strong>Perfect Balance</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/69"><strong>Perfect Balance</strong></see> <i>PvE</i> (MNK) [69] [Ability] /// <para>Grants 3 stacks of Perfect Balance, each stack allowing the execution of a weaponskill that requires a certain form, without being in that form.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Grants Opo-opo Chakra, Coeurl Chakra, or Raptor Chakra depending on the form required by actions executed</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed while in combat and when not under the effect of any Beast Chakra.Can only be executed while in combat.Can only be executed while in combat.</para> /// </summary> -PerfectBalance = 69, +PerfectBalance_PvE = 69, /// <summary> -/// <see href="https://garlandtools.org/db/#action/70"><strong>Rockbreaker</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/70"><strong>Rockbreaker</strong></see> <i>PvE</i> (MNK) [70] [Weaponskill] /// <para>Delivers an attack with a potency of 130 to all nearby enemies.</para> /// <para>Can only be executed when in coeurl form.</para> /// <para>Additional Effect: Changes form to opo-opo</para> /// <para>Duration: 30s</para> /// </summary> -Rockbreaker = 70, +Rockbreaker_PvE = 70, /// <summary> -/// <see href="https://garlandtools.org/db/#action/74"><strong>Dragon Kick</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/74"><strong>Dragon Kick</strong></see> <i>PvE</i> (PGL MNK) [74] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Opo-opo Form Bonus: Grants Leaden Fist</para> /// <para>Duration: 30s</para> /// <para>Additional Effect: Changes form to raptor</para> /// <para>Duration: 30s</para> /// </summary> -DragonKick = 74, +DragonKick_PvE = 74, /// <summary> -/// <see href="https://garlandtools.org/db/#action/75"><strong>True Thrust</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/75"><strong>True Thrust</strong></see> <i>PvE</i> (LNC DRG) [75] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para></para> /// <para>※Action changes to Raiden Thrust while under the effect of Draconian Fire.</para> /// </summary> -TrueThrust = 75, +TrueThrust_PvE = 75, /// <summary> -/// <see href="https://garlandtools.org/db/#action/78"><strong>Vorpal Thrust</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/78"><strong>Vorpal Thrust</strong></see> <i>PvE</i> (LNC DRG) [78] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: True Thrust</para> /// <para>Combo Potency: </para> /// </summary> -VorpalThrust = 78, +VorpalThrust_PvE = 78, /// <summary> -/// <see href="https://garlandtools.org/db/#action/83"><strong>Life Surge</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/83"><strong>Life Surge</strong></see> <i>PvE</i> (LNC DRG) [83] [Ability] /// <para>Ensures critical damage for first weaponskill used while Life Surge is active.</para> /// <para>Duration: 5s</para> /// <para>Increases damage dealt when under an effect that raises critical hit rate.</para> @@ -17886,9 +17886,9 @@ VorpalThrust = 78, /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para> /// <para>Maximum Charges: 2</para> /// </summary> -LifeSurge = 83, +LifeSurge_PvE = 83, /// <summary> -/// <see href="https://garlandtools.org/db/#action/84"><strong>Full Thrust</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/84"><strong>Full Thrust</strong></see> <i>PvE</i> (LNC DRG) [84] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Vorpal Thrust</para> /// <para>Combo Potency: 400</para> @@ -17896,22 +17896,22 @@ LifeSurge = 83, /// <para>Duration: 30s</para> /// <para>Effect of Fang and Claw Bared ends upon execution of any melee weaponskill.</para> /// </summary> -FullThrust = 84, +FullThrust_PvE = 84, /// <summary> -/// <see href="https://garlandtools.org/db/#action/85"><strong>Lance Charge</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/85"><strong>Lance Charge</strong></see> <i>PvE</i> (LNC DRG) [85] [Ability] /// <para>Increases damage dealt by 10%.</para> /// <para>Duration: 20s</para> /// </summary> -LanceCharge = 85, +LanceCharge_PvE = 85, /// <summary> -/// <see href="https://garlandtools.org/db/#action/86"><strong>Doom Spike</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/86"><strong>Doom Spike</strong></see> <i>PvE</i> (DRG) [86] [Weaponskill] /// <para>Delivers an attack with a potency of 110 to all enemies in a straight line before you.</para> /// <para></para> /// <para>※Action changes to Draconian Fury when under the effect of Draconian Fire.</para> /// </summary> -DoomSpike = 86, +DoomSpike_PvE = 86, /// <summary> -/// <see href="https://garlandtools.org/db/#action/87"><strong>Disembowel</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/87"><strong>Disembowel</strong></see> <i>PvE</i> (LNC DRG) [87] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: True Thrust</para> /// <para>Combo Potency: </para> @@ -17919,9 +17919,9 @@ DoomSpike = 86, /// <para>Power Surge Effect: Increases damage dealt by 10%</para> /// <para>Duration: 30s</para> /// </summary> -Disembowel = 87, +Disembowel_PvE = 87, /// <summary> -/// <see href="https://garlandtools.org/db/#action/88"><strong>Chaos Thrust</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/88"><strong>Chaos Thrust</strong></see> <i>PvE</i> (LNC DRG) [88] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>140 when executed from a target's rear.</para> /// <para>Combo Action: Disembowel</para> @@ -17934,106 +17934,106 @@ Disembowel = 87, /// <para>Duration: 30s</para> /// <para>Effect of Wheel in Motion ends upon execution of any melee weaponskill.</para> /// </summary> -ChaosThrust = 88, +ChaosThrust_PvE = 88, /// <summary> -/// <see href="https://garlandtools.org/db/#action/90"><strong>Piercing Talon</strong></see> <i>PvE</i> (LNC DRG) +/// <see href="https://garlandtools.org/db/#action/90"><strong>Piercing Talon</strong></see> <i>PvE</i> (LNC DRG) [90] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 150.</para> /// </summary> -PiercingTalon = 90, +PiercingTalon_PvE = 90, /// <summary> -/// <see href="https://garlandtools.org/db/#action/92"><strong>Jump</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/92"><strong>Jump</strong></see> <i>PvE</i> (DRG) [92] [Ability] /// <para>Delivers a jumping attack with a potency of . Returns you to your original position after the attack is made.</para> /// <para>Additional Effect: Grants Dive Ready</para> /// <para>Duration: 15s</para> /// </summary> -Jump = 92, +Jump_PvE = 92, /// <summary> -/// <see href="https://garlandtools.org/db/#action/94"><strong>Elusive Jump</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/94"><strong>Elusive Jump</strong></see> <i>PvE</i> (DRG) [94] [Ability] /// <para>Executes a jump to a location 15 yalms behind you.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -ElusiveJump = 94, +ElusiveJump_PvE = 94, /// <summary> -/// <see href="https://garlandtools.org/db/#action/95"><strong>Spineshatter Dive</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/95"><strong>Spineshatter Dive</strong></see> <i>PvE</i> (DRG) [95] [Ability] /// <para>Delivers a jumping attack with a potency of .</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -SpineshatterDive = 95, +SpineshatterDive_PvE = 95, /// <summary> -/// <see href="https://garlandtools.org/db/#action/96"><strong>Dragonfire Dive</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/96"><strong>Dragonfire Dive</strong></see> <i>PvE</i> (DRG) [96] [Ability] /// <para>Delivers a jumping fire-based attack with a potency of 300 to target and all enemies nearby it.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -DragonfireDive = 96, +DragonfireDive_PvE = 96, /// <summary> -/// <see href="https://garlandtools.org/db/#action/97"><strong>Heavy Shot</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/97"><strong>Heavy Shot</strong></see> <i>PvE</i> (ARC BRD) [97] [Weaponskill] /// <para>Delivers an attack with a potency of 160.</para> /// <para>Additional Effect: 20% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// <para>Additional Effect: 20% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -HeavyShot = 97, +HeavyShot_PvE = 97, /// <summary> -/// <see href="https://garlandtools.org/db/#action/98"><strong>Straight Shot</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/98"><strong>Straight Shot</strong></see> <i>PvE</i> (ARC BRD) [98] [Weaponskill] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Can only be executed when Straight Shot Ready.</para> /// </summary> -StraightShot = 98, +StraightShot_PvE = 98, /// <summary> -/// <see href="https://garlandtools.org/db/#action/100"><strong>Venomous Bite</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/100"><strong>Venomous Bite</strong></see> <i>PvE</i> (ARC BRD) [100] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: Venom</para> /// <para>Potency: 15</para> /// <para>Duration: 45s</para> /// </summary> -VenomousBite = 100, +VenomousBite_PvE = 100, /// <summary> -/// <see href="https://garlandtools.org/db/#action/101"><strong>Raging Strikes</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/101"><strong>Raging Strikes</strong></see> <i>PvE</i> (ARC BRD) [101] [Ability] /// <para>Increases damage dealt by 15%.</para> /// <para>Duration: 20s</para> /// </summary> -RagingStrikes = 101, +RagingStrikes_PvE = 101, /// <summary> -/// <see href="https://garlandtools.org/db/#action/106"><strong>Quick Nock</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/106"><strong>Quick Nock</strong></see> <i>PvE</i> (ARC BRD) [106] [Weaponskill] /// <para>Delivers an attack with a potency of 110 to all enemies in a cone before you.</para> /// <para>Additional Effect: 35% chance of becoming Shadowbite Ready</para> /// <para>Duration: 30s</para> /// </summary> -QuickNock = 106, +QuickNock_PvE = 106, /// <summary> -/// <see href="https://garlandtools.org/db/#action/107"><strong>Barrage</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/107"><strong>Barrage</strong></see> <i>PvE</i> (ARC BRD) [107] [Ability] /// <para>Triples the number of strikes for a single-target weaponskill. Additional effects added only once.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Increases the potency of Shadowbite to 270</para> /// <para>Additional Effect: Grants Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -Barrage = 107, +Barrage_PvE = 107, /// <summary> -/// <see href="https://garlandtools.org/db/#action/110"><strong>Bloodletter</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/110"><strong>Bloodletter</strong></see> <i>PvE</i> (ARC BRD) [110] [Ability] /// <para>Delivers an attack with a potency of 110.</para> /// <para>Maximum Charges: </para> /// <para>Shares a recast timer with Rain of Death.</para> /// </summary> -Bloodletter = 110, +Bloodletter_PvE = 110, /// <summary> -/// <see href="https://garlandtools.org/db/#action/112"><strong>Repelling Shot</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/112"><strong>Repelling Shot</strong></see> <i>PvE</i> (ARC BRD) [112] [Ability] /// <para>Jump 10 yalms away from current target.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -RepellingShot = 112, +RepellingShot_PvE = 112, /// <summary> -/// <see href="https://garlandtools.org/db/#action/113"><strong>Windbite</strong></see> <i>PvE</i> (ARC BRD) +/// <see href="https://garlandtools.org/db/#action/113"><strong>Windbite</strong></see> <i>PvE</i> (ARC BRD) [113] [Weaponskill] /// <para>Deals wind damage with a potency of 60.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 20</para> /// <para>Duration: 45s</para> /// </summary> -Windbite = 113, +Windbite_PvE = 113, /// <summary> -/// <see href="https://garlandtools.org/db/#action/114"><strong>Mage's Ballad</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/114"><strong>Mage's Ballad</strong></see> <i>PvE</i> (BRD) [114] [Ability] /// <para>Deals unaspected damage with a potency of 100.</para> /// <para>Additional Effect: Grants Mage's Ballad to self and all party members within 50 yalms, increasing damage dealt by 1%</para> /// <para>Duration: 45s</para> @@ -18041,9 +18041,9 @@ Windbite = 113, /// <para>Repertoire Effect: Reduces the recast time of Bloodletter and Rain of Death by 7.5s</para> /// <para>Additional Effect: Grants Mage's Coda</para> /// </summary> -MagesBallad = 114, +MagesBallad_PvE = 114, /// <summary> -/// <see href="https://garlandtools.org/db/#action/116"><strong>Army's Paeon</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/116"><strong>Army's Paeon</strong></see> <i>PvE</i> (BRD) [116] [Ability] /// <para>Deals unaspected damage with a potency of 100.</para> /// <para>Additional Effect: Grants Army's Paeon to self and all party members within 50 yalms, increasing direct hit rate by 3%</para> /// <para>Duration: 45s</para> @@ -18052,27 +18052,27 @@ MagesBallad = 114, /// <para>Can be stacked up to 4 times.</para> /// <para>Additional Effect: Grants Army's Coda</para> /// </summary> -ArmysPaeon = 116, +ArmysPaeon_PvE = 116, /// <summary> -/// <see href="https://garlandtools.org/db/#action/117"><strong>Rain of Death</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/117"><strong>Rain of Death</strong></see> <i>PvE</i> (BRD) [117] [Ability] /// <para>Delivers an attack with a potency of 100 to target and all enemies nearby it.</para> /// <para>Maximum Charges: </para> /// <para>Shares a recast timer with Bloodletter.</para> /// </summary> -RainOfDeath = 117, +RainOfDeath_PvE = 117, /// <summary> -/// <see href="https://garlandtools.org/db/#action/118"><strong>Battle Voice</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/118"><strong>Battle Voice</strong></see> <i>PvE</i> (BRD) [118] [Ability] /// <para>Increases direct hit rate of self and all nearby party members by 20%.</para> /// <para>Duration: 15s</para> /// </summary> -BattleVoice = 118, +BattleVoice_PvE = 118, /// <summary> -/// <see href="https://garlandtools.org/db/#action/119"><strong>Stone</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/119"><strong>Stone</strong></see> <i>PvE</i> (CNJ WHM) [119] [Spell] /// <para>Deals earth damage with a potency of 140.</para> /// </summary> -Stone = 119, +Stone_PvE = 119, /// <summary> -/// <see href="https://garlandtools.org/db/#action/120"><strong>Cure</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/120"><strong>Cure</strong></see> <i>PvE</i> (CNJ WHM) [120] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: 15% chance next Cure II will cost no MP</para> @@ -18080,87 +18080,87 @@ Stone = 119, /// <para>Additional Effect: 15% chance next Cure II will cost no MP</para> /// <para>Duration: 15s</para> /// </summary> -Cure = 120, +Cure_PvE = 120, /// <summary> -/// <see href="https://garlandtools.org/db/#action/121"><strong>Aero</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/121"><strong>Aero</strong></see> <i>PvE</i> (CNJ WHM) [121] [Spell] /// <para>Deals wind damage with a potency of 50.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 30</para> /// <para>Duration: 30s</para> /// </summary> -Aero = 121, +Aero_PvE = 121, /// <summary> -/// <see href="https://garlandtools.org/db/#action/124"><strong>Medica</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/124"><strong>Medica</strong></see> <i>PvE</i> (CNJ WHM) [124] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: </para> /// </summary> -Medica = 124, +Medica_PvE = 124, /// <summary> -/// <see href="https://garlandtools.org/db/#action/125"><strong>Raise</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/125"><strong>Raise</strong></see> <i>PvE</i> (CNJ WHM) [125] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -Raise = 125, +Raise_PvE = 125, /// <summary> -/// <see href="https://garlandtools.org/db/#action/127"><strong>Stone II</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/127"><strong>Stone II</strong></see> <i>PvE</i> (CNJ WHM) [127] [Spell] /// <para>Deals earth damage with a potency of 190.</para> /// </summary> -StoneIi = 127, +StoneIi_PvE = 127, /// <summary> -/// <see href="https://garlandtools.org/db/#action/131"><strong>Cure III</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/131"><strong>Cure III</strong></see> <i>PvE</i> (WHM) [131] [Spell] /// <para>Restores own or target party member's HP and all party members nearby target.</para> /// <para>Cure Potency: </para> /// </summary> -CureIii = 131, +CureIii_PvE = 131, /// <summary> -/// <see href="https://garlandtools.org/db/#action/132"><strong>Aero II</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/132"><strong>Aero II</strong></see> <i>PvE</i> (CNJ WHM) [132] [Spell] /// <para>Deals wind damage with a potency of 50.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 30s</para> /// </summary> -AeroIi = 132, +AeroIi_PvE = 132, /// <summary> -/// <see href="https://garlandtools.org/db/#action/133"><strong>Medica II</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/133"><strong>Medica II</strong></see> <i>PvE</i> (CNJ WHM) [133] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: </para> /// <para>Duration: 15s</para> /// </summary> -MedicaIi = 133, +MedicaIi_PvE = 133, /// <summary> -/// <see href="https://garlandtools.org/db/#action/135"><strong>Cure II</strong></see> <i>PvE</i> (CNJ WHM) +/// <see href="https://garlandtools.org/db/#action/135"><strong>Cure II</strong></see> <i>PvE</i> (CNJ WHM) [135] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// </summary> -CureIi = 135, +CureIi_PvE = 135, /// <summary> -/// <see href="https://garlandtools.org/db/#action/136"><strong>Presence of Mind</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/136"><strong>Presence of Mind</strong></see> <i>PvE</i> (WHM) [136] [Ability] /// <para>Reduces spell cast time and recast time, and auto-attack delay by 20%.</para> /// <para>Duration: 15s</para> /// </summary> -PresenceOfMind = 136, +PresenceOfMind_PvE = 136, /// <summary> -/// <see href="https://garlandtools.org/db/#action/137"><strong>Regen</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/137"><strong>Regen</strong></see> <i>PvE</i> (WHM) [137] [Spell] /// <para>Grants healing over time effect to target.</para> /// <para>Cure Potency: </para> /// <para>Duration: 18s</para> /// </summary> -Regen = 137, +Regen_PvE = 137, /// <summary> -/// <see href="https://garlandtools.org/db/#action/139"><strong>Holy</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/139"><strong>Holy</strong></see> <i>PvE</i> (WHM) [139] [Spell] /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 4s</para> /// </summary> -Holy = 139, +Holy_PvE = 139, /// <summary> -/// <see href="https://garlandtools.org/db/#action/140"><strong>Benediction</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/140"><strong>Benediction</strong></see> <i>PvE</i> (WHM) [140] [Ability] /// <para>Restores all of a target's HP.</para> /// </summary> -Benediction = 140, +Benediction_PvE = 140, /// <summary> -/// <see href="https://garlandtools.org/db/#action/141"><strong>Fire</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/141"><strong>Fire</strong></see> <i>PvE</i> (THM BLM) [141] [Spell] /// <para>Deals fire damage with a potency of 180.</para> /// <para>Additional Effect: Grants Astral Fire or removes Umbral Ice</para> /// <para>Duration: 15s</para> @@ -18169,16 +18169,16 @@ Benediction = 140, /// <para>Additional Effect: 40% chance next Fire III will cost no MP and have no cast time</para> /// <para>Duration: 30s</para> /// </summary> -Fire = 141, +Fire_PvE = 141, /// <summary> -/// <see href="https://garlandtools.org/db/#action/142"><strong>Blizzard</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/142"><strong>Blizzard</strong></see> <i>PvE</i> (THM BLM) [142] [Spell] /// <para>Deals ice damage with a potency of 180.</para> /// <para>Additional Effect: Grants Umbral Ice or removes Astral Fire</para> /// <para>Duration: 15s</para> /// </summary> -Blizzard = 142, +Blizzard_PvE = 142, /// <summary> -/// <see href="https://garlandtools.org/db/#action/144"><strong>Thunder</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/144"><strong>Thunder</strong></see> <i>PvE</i> (THM BLM) [144] [Spell] /// <para>Deals lightning damage with a potency of 30.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 35</para> @@ -18192,30 +18192,30 @@ Blizzard = 142, /// <para></para> /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para> /// </summary> -Thunder = 144, +Thunder_PvE = 144, /// <summary> -/// <see href="https://garlandtools.org/db/#action/147"><strong>Fire II</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/147"><strong>Fire II</strong></see> <i>PvE</i> (THM BLM) [147] [Spell] /// <para>Deals fire damage with a potency of 100 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants Astral Fire III and removes Umbral IceGrants Astral Fire III and removes Umbral IceGrants Astral Fire or removes Umbral IceGrants Astral Fire or removes Umbral Ice</para> /// <para>Duration: 15s</para> /// <para>Astral Fire Bonus: Grants Enhanced Flare</para> /// <para>Effect is canceled if Astral Fire ends.</para> /// </summary> -FireIi = 147, +FireIi_PvE = 147, /// <summary> -/// <see href="https://garlandtools.org/db/#action/149"><strong>Transpose</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/149"><strong>Transpose</strong></see> <i>PvE</i> (THM BLM) [149] [Ability] /// <para>Swaps Astral Fire with a single Umbral Ice, or Umbral Ice with a single Astral Fire.</para> /// </summary> -Transpose = 149, +Transpose_PvE = 149, /// <summary> -/// <see href="https://garlandtools.org/db/#action/152"><strong>Fire III</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/152"><strong>Fire III</strong></see> <i>PvE</i> (THM BLM) [152] [Spell] /// <para>Deals fire damage with a potency of 260.</para> /// <para>Additional Effect: Grants Astral Fire III and removes Umbral Ice</para> /// <para>Duration: 15s</para> /// </summary> -FireIii = 152, +FireIii_PvE = 152, /// <summary> -/// <see href="https://garlandtools.org/db/#action/153"><strong>Thunder III</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/153"><strong>Thunder III</strong></see> <i>PvE</i> (BLM) [153] [Spell] /// <para>Deals lightning damage with a potency of 50.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 35</para> @@ -18229,110 +18229,110 @@ FireIii = 152, /// <para></para> /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para> /// </summary> -ThunderIii = 153, +ThunderIii_PvE = 153, /// <summary> -/// <see href="https://garlandtools.org/db/#action/154"><strong>Blizzard III</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/154"><strong>Blizzard III</strong></see> <i>PvE</i> (BLM) [154] [Spell] /// <para>Deals ice damage with a potency of 260.</para> /// <para>Additional Effect: Grants Umbral Ice III and removes Astral Fire</para> /// <para>Duration: 15s</para> /// </summary> -BlizzardIii = 154, +BlizzardIii_PvE = 154, /// <summary> -/// <see href="https://garlandtools.org/db/#action/155"><strong>Aetherial Manipulation</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/155"><strong>Aetherial Manipulation</strong></see> <i>PvE</i> (THM BLM) [155] [Ability] /// <para>Rush to a target party member's side.</para> /// <para>Unable to cast if bound.</para> /// </summary> -AetherialManipulation = 155, +AetherialManipulation_PvE = 155, /// <summary> -/// <see href="https://garlandtools.org/db/#action/156"><strong>Scathe</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/156"><strong>Scathe</strong></see> <i>PvE</i> (THM BLM) [156] [Spell] /// <para>Deals unaspected damage with a potency of 100.</para> /// <para>Additional Effect: 20% chance potency will double</para> /// </summary> -Scathe = 156, +Scathe_PvE = 156, /// <summary> -/// <see href="https://garlandtools.org/db/#action/157"><strong>Manaward</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/157"><strong>Manaward</strong></see> <i>PvE</i> (THM BLM) [157] [Ability] /// <para>Creates a barrier that nullifies damage totaling up to 30% of maximum HP.</para> /// <para>Duration: 20s</para> /// </summary> -Manaward = 157, +Manaward_PvE = 157, /// <summary> -/// <see href="https://garlandtools.org/db/#action/158"><strong>Manafont</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/158"><strong>Manafont</strong></see> <i>PvE</i> (BLM) [158] [Ability] /// <para>Restores 30% of maximum MP.</para> /// </summary> -Manafont = 158, +Manafont_PvE = 158, /// <summary> -/// <see href="https://garlandtools.org/db/#action/159"><strong>Freeze</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/159"><strong>Freeze</strong></see> <i>PvE</i> (BLM) [159] [Spell] /// <para>Deals ice damage with a potency of 120 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants 3 Umbral Hearts</para> /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para> /// <para>Can only be executed while under the effect of Umbral Ice.</para> /// </summary> -Freeze = 159, +Freeze_PvE = 159, /// <summary> -/// <see href="https://garlandtools.org/db/#action/162"><strong>Flare</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/162"><strong>Flare</strong></see> <i>PvE</i> (BLM) [162] [Spell] /// <para>Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 40% less for all remaining enemies.</para> /// <para>Enhanced Flare Potency: 280</para> /// <para>Additional Effect: Grants Astral Fire III</para> /// <para>Duration: 15s</para> /// <para>Can only be executed while under the effect of Astral Fire.</para> /// </summary> -Flare = 162, +Flare_PvE = 162, /// <summary> -/// <see href="https://garlandtools.org/db/#action/163"><strong>Ruin</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/163"><strong>Ruin</strong></see> <i>PvE</i> (ACN SMN) [163] [Spell] /// <para>Deals unaspected damage with a potency of 240.</para> /// </summary> -Ruin = 163, +Ruin_PvE = 163, /// <summary> -/// <see href="https://garlandtools.org/db/#action/166"><strong>Aetherflow</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/166"><strong>Aetherflow</strong></see> <i>PvE</i> (SCH) [166] [Ability] /// <para>Restores 20% of maximum MP.</para> /// <para>Additional Effect: Aetherflow III</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Aetherflow = 166, +Aetherflow_PvE = 166, /// <summary> -/// <see href="https://garlandtools.org/db/#action/167"><strong>Energy Drain</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/167"><strong>Energy Drain</strong></see> <i>PvE</i> (SCH) [167] [Ability] /// <para>Deals unaspected damage with a potency of 100.</para> /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para> /// <para>Additional Effect: Increases Faerie Gauge by 10</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -EnergyDrain = 167, +EnergyDrain_PvE = 167, /// <summary> -/// <see href="https://garlandtools.org/db/#action/172"><strong>Ruin II</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/172"><strong>Ruin II</strong></see> <i>PvE</i> (ACN SMN) [172] [Spell] /// <para>Deals unaspected damage with a potency of 270.</para> /// </summary> -RuinIi = 172, +RuinIi_PvE = 172, /// <summary> -/// <see href="https://garlandtools.org/db/#action/173"><strong>Resurrection</strong></see> <i>PvE</i> (ACN SMN SCH) +/// <see href="https://garlandtools.org/db/#action/173"><strong>Resurrection</strong></see> <i>PvE</i> (ACN SMN SCH) [173] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -Resurrection = 173, +Resurrection_PvE = 173, /// <summary> -/// <see href="https://garlandtools.org/db/#action/181"><strong>Fester</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/181"><strong>Fester</strong></see> <i>PvE</i> (ACN SMN) [181] [Ability] /// <para>Deals unaspected damage with a potency of 340.</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -Fester = 181, +Fester_PvE = 181, /// <summary> -/// <see href="https://garlandtools.org/db/#action/185"><strong>Adloquium</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/185"><strong>Adloquium</strong></see> <i>PvE</i> (SCH) [185] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 300</para> /// <para>Additional Effect: Grants Galvanize to target, nullifying damage equaling % of the amount of HP restored. When critical HP is restored, also grants Catalyze, nullifying damage equaling % the amount of HP restored.</para> /// <para>Duration: 30s</para> /// <para>Effect cannot be stacked with certain sage barrier effects.</para> /// </summary> -Adloquium = 185, +Adloquium_PvE = 185, /// <summary> -/// <see href="https://garlandtools.org/db/#action/186"><strong>Succor</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/186"><strong>Succor</strong></see> <i>PvE</i> (SCH) [186] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 200</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored</para> /// <para>Duration: 30s</para> /// <para>Effect cannot be stacked with certain sage barrier effects.</para> /// </summary> -Succor = 186, +Succor_PvE = 186, /// <summary> -/// <see href="https://garlandtools.org/db/#action/188"><strong>Sacred Soil</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/188"><strong>Sacred Soil</strong></see> <i>PvE</i> (SCH) [188] [Ability] /// <para>Creates a designated area in which party members will only suffer 90% of all damage inflicted.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Regen</para> @@ -18340,483 +18340,483 @@ Succor = 186, /// <para>Additional Effect: Increases Faerie Gauge by 10</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -SacredSoil = 188, +SacredSoil_PvE = 188, /// <summary> -/// <see href="https://garlandtools.org/db/#action/189"><strong>Lustrate</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/189"><strong>Lustrate</strong></see> <i>PvE</i> (SCH) [189] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 600</para> /// <para>Additional Effect: Increases Faerie Gauge by 10</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -Lustrate = 189, +Lustrate_PvE = 189, /// <summary> -/// <see href="https://garlandtools.org/db/#action/190"><strong>Physick</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/190"><strong>Physick</strong></see> <i>PvE</i> (SCH) [190] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// </summary> -Physick = 190, +Physick_PvE = 190, /// <summary> -/// <see href="https://garlandtools.org/db/#action/197"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/197"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break] /// <para>Reduces damage taken by all party members by 20%.</para> /// <para>Duration: 10s</para> /// </summary> -ShieldWall = 197, +ShieldWall_PvE = 197, /// <summary> -/// <see href="https://garlandtools.org/db/#action/198"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/198"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break] /// <para>Reduces damage taken by all party members by 40%.</para> /// <para>Duration: 15s</para> /// </summary> -Stronghold = 198, +Stronghold_PvE = 198, /// <summary> -/// <see href="https://garlandtools.org/db/#action/199"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/199"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break] /// <para>Reduces damage taken by all party members by 80%.</para> /// <para>Duration: 12s</para> /// </summary> -LastBastion = 199, +LastBastion_PvE = 199, /// <summary> -/// <see href="https://garlandtools.org/db/#action/200"><strong>Braver</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/200"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break] /// <para>Delivers an attack with a potency of 2,400.</para> /// </summary> -Braver = 200, +Braver_PvE = 200, /// <summary> -/// <see href="https://garlandtools.org/db/#action/201"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/201"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break] /// <para>Delivers an attack with a potency of 5,250.</para> /// </summary> -Bladedance = 201, +Bladedance_PvE = 201, /// <summary> -/// <see href="https://garlandtools.org/db/#action/202"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/202"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break] /// <para>Delivers an attack with a potency of 9,000.</para> /// </summary> -FinalHeaven = 202, +FinalHeaven_PvE = 202, /// <summary> -/// <see href="https://garlandtools.org/db/#action/203"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/203"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break] /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para> /// </summary> -Skyshard = 203, +Skyshard_PvE = 203, /// <summary> -/// <see href="https://garlandtools.org/db/#action/204"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/204"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break] /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para> /// </summary> -Starstorm = 204, +Starstorm_PvE = 204, /// <summary> -/// <see href="https://garlandtools.org/db/#action/205"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/205"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break] /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para> /// </summary> -Meteor = 205, +Meteor_PvE = 205, /// <summary> -/// <see href="https://garlandtools.org/db/#action/206"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/206"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break] /// <para>Restores 25% of own HP and the HP of all nearby party members.</para> /// </summary> -HealingWind = 206, +HealingWind_PvE = 206, /// <summary> -/// <see href="https://garlandtools.org/db/#action/207"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/207"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break] /// <para>Restores 60% of own HP and the HP of all nearby party members.</para> /// </summary> -BreathOfTheEarth = 207, +BreathOfTheEarth_PvE = 207, /// <summary> -/// <see href="https://garlandtools.org/db/#action/208"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/208"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break] /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para> /// </summary> -PulseOfLife = 208, +PulseOfLife_PvE = 208, /// <summary> -/// <see href="https://garlandtools.org/db/#action/210"><strong>Triangulate</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/210"><strong>Triangulate</strong></see> <i>PvE</i> (Disciple of the Land) [210] [Ability] /// <para>Surveys the landscape to locate mature trees and lush vegetation. Activates automatically when class is changed to botanist.</para> /// </summary> -Triangulate = 210, +Triangulate_PvE = 210, /// <summary> -/// <see href="https://garlandtools.org/db/#action/211"><strong>Arbor Call</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/211"><strong>Arbor Call</strong></see> <i>PvE</i> (Disciple of the Land) [211] [Ability] /// <para>Surveys the landscape to locate the nearest mature tree or lush vegetation within skill range. Can only be executed while Triangulate is active.</para> /// <para>Duration: 15s</para> /// </summary> -ArborCall = 211, +ArborCall_PvE = 211, /// <summary> -/// <see href="https://garlandtools.org/db/#action/215"><strong>Ageless Words</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/215"><strong>Ageless Words</strong></see> <i>PvE</i> (BTN) [215] [DoL Ability] /// <para>Grants another gathering attempt. When gathering collectables, restores 1 integrity.</para> /// <para>Additional Effect: 50% chance to grant Eureka Moment</para> /// </summary> -AgelessWords = 215, +AgelessWords_PvE = 215, /// <summary> -/// <see href="https://garlandtools.org/db/#action/218"><strong>Field Mastery</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/218"><strong>Field Mastery</strong></see> <i>PvE</i> (BTN) [218] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.</para> /// </summary> -FieldMastery = 218, +FieldMastery_PvE = 218, /// <summary> -/// <see href="https://garlandtools.org/db/#action/220"><strong>Field Mastery II</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/220"><strong>Field Mastery II</strong></see> <i>PvE</i> (BTN) [220] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.</para> /// </summary> -FieldMasteryIi = 220, +FieldMasteryIi_PvE = 220, /// <summary> -/// <see href="https://garlandtools.org/db/#action/221"><strong>Truth of Forests</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/221"><strong>Truth of Forests</strong></see> <i>PvE</i> (Disciple of the Land) [221] [Ability] /// <para>Further surveys the landscape to uncover unspoiled, legendary, and clouded mature trees and lush vegetation.</para> /// </summary> -TruthOfForests = 221, +TruthOfForests_PvE = 221, /// <summary> -/// <see href="https://garlandtools.org/db/#action/222"><strong>Blessed Harvest</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/222"><strong>Blessed Harvest</strong></see> <i>PvE</i> (BTN) [222] [DoL Ability] /// <para>Increases the number of items obtained when gathering by one.</para> /// </summary> -BlessedHarvest = 222, +BlessedHarvest_PvE = 222, /// <summary> -/// <see href="https://garlandtools.org/db/#action/224"><strong>Blessed Harvest II</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/224"><strong>Blessed Harvest II</strong></see> <i>PvE</i> (BTN) [224] [DoL Ability] /// <para>Increases the number of items obtained when gathering by two.</para> /// </summary> -BlessedHarvestIi = 224, +BlessedHarvestIi_PvE = 224, /// <summary> -/// <see href="https://garlandtools.org/db/#action/227"><strong>Prospect</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/227"><strong>Prospect</strong></see> <i>PvE</i> (Disciple of the Land) [227] [Ability] /// <para>Surveys the landscape to locate mineral deposits and rocky outcrops. Activates automatically when class is changed to miner.</para> /// </summary> -Prospect = 227, +Prospect_PvE = 227, /// <summary> -/// <see href="https://garlandtools.org/db/#action/228"><strong>Lay of the Land</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/228"><strong>Lay of the Land</strong></see> <i>PvE</i> (Disciple of the Land) [228] [Ability] /// <para>Surveys the landscape to locate the nearest mineral deposit or rocky outcrop within skill range. Can only be executed while Prospect is active.</para> /// <para>Duration: 15s</para> /// </summary> -LayOfTheLand = 228, +LayOfTheLand_PvE = 228, /// <summary> -/// <see href="https://garlandtools.org/db/#action/232"><strong>Solid Reason</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/232"><strong>Solid Reason</strong></see> <i>PvE</i> (MIN) [232] [DoL Ability] /// <para>Grants another gathering attempt. When gathering collectables, restores 1 integrity.</para> /// <para>Additional Effect: 50% chance to grant Eureka Moment</para> /// </summary> -SolidReason = 232, +SolidReason_PvE = 232, /// <summary> -/// <see href="https://garlandtools.org/db/#action/235"><strong>Sharp Vision</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/235"><strong>Sharp Vision</strong></see> <i>PvE</i> (MIN) [235] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 5%. Does not apply to items at 0%.</para> /// </summary> -SharpVision = 235, +SharpVision_PvE = 235, /// <summary> -/// <see href="https://garlandtools.org/db/#action/237"><strong>Sharp Vision II</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/237"><strong>Sharp Vision II</strong></see> <i>PvE</i> (MIN) [237] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 15%. Does not apply to items at 0%.</para> /// </summary> -SharpVisionIi = 237, +SharpVisionIi_PvE = 237, /// <summary> -/// <see href="https://garlandtools.org/db/#action/238"><strong>Truth of Mountains</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/238"><strong>Truth of Mountains</strong></see> <i>PvE</i> (Disciple of the Land) [238] [Ability] /// <para>Further surveys the landscape to uncover unspoiled, legendary, and clouded mineral deposits and rocky outcrops.</para> /// </summary> -TruthOfMountains = 238, +TruthOfMountains_PvE = 238, /// <summary> -/// <see href="https://garlandtools.org/db/#action/239"><strong>King's Yield</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/239"><strong>King's Yield</strong></see> <i>PvE</i> (MIN) [239] [DoL Ability] /// <para>Increases the number of items obtained when gathering by one.</para> /// </summary> -KingsYield = 239, +KingsYield_PvE = 239, /// <summary> -/// <see href="https://garlandtools.org/db/#action/240"><strong>Collect</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/240"><strong>Collect</strong></see> <i>PvE</i> (MIN) [240] [DoL Ability] /// <para>Gathers a collectable item with its current collectability rating.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -Collect = 240, +Collect_PvE = 240, /// <summary> -/// <see href="https://garlandtools.org/db/#action/241"><strong>King's Yield II</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/241"><strong>King's Yield II</strong></see> <i>PvE</i> (MIN) [241] [DoL Ability] /// <para>Increases the number of items obtained when gathering by two.</para> /// </summary> -KingsYieldIi = 241, +KingsYieldIi_PvE = 241, /// <summary> -/// <see href="https://garlandtools.org/db/#action/260"><strong>Great Strides</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/260"><strong>Great Strides</strong></see> <i>PvE</i> (CRP) [260] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides = 260, +GreatStrides_PvE = 260, /// <summary> -/// <see href="https://garlandtools.org/db/#action/261"><strong>Great Strides</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/261"><strong>Great Strides</strong></see> <i>PvE</i> (BSM) [261] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_261 = 261, +GreatStrides_PvE_261 = 261, /// <summary> -/// <see href="https://garlandtools.org/db/#action/262"><strong>Great Strides</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/262"><strong>Great Strides</strong></see> <i>PvE</i> (ARM) [262] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_262 = 262, +GreatStrides_PvE_262 = 262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/263"><strong>Great Strides</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/263"><strong>Great Strides</strong></see> <i>PvE</i> (GSM) [263] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_263 = 263, +GreatStrides_PvE_263 = 263, /// <summary> -/// <see href="https://garlandtools.org/db/#action/264"><strong>Great Strides</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/264"><strong>Great Strides</strong></see> <i>PvE</i> (WVR) [264] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_264 = 264, +GreatStrides_PvE_264 = 264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/265"><strong>Great Strides</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/265"><strong>Great Strides</strong></see> <i>PvE</i> (LTW) [265] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_265 = 265, +GreatStrides_PvE_265 = 265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/266"><strong>Great Strides</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/266"><strong>Great Strides</strong></see> <i>PvE</i> (ALC) [266] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_266 = 266, +GreatStrides_PvE_266 = 266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/267"><strong>Great Strides</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/267"><strong>Great Strides</strong></see> <i>PvE</i> (CUL) [267] [DoH Ability] /// <para>Increases the efficiency of next Touch action by 100%. Effect active for three steps.</para> /// </summary> -GreatStrides_267 = 267, +GreatStrides_PvE_267 = 267, /// <summary> -/// <see href="https://garlandtools.org/db/#action/268"><strong>Mooch II</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/268"><strong>Mooch II</strong></see> <i>PvE</i> (FSH) [268] [DoL Ability] /// <para>Uses certain hooked fish of average size to attract even larger prey.</para> /// <para>Duration: 15s</para> /// </summary> -MoochIi = 268, +MoochIi_PvE = 268, /// <summary> -/// <see href="https://garlandtools.org/db/#action/269"><strong>Double Hook</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/269"><strong>Double Hook</strong></see> <i>PvE</i> (FSH) [269] [DoL Ability] /// <para>Hooks two or more fish in a single cast. Yield is determined by fish type and your gathering rating. Some fish cannot be double hooked.</para> /// </summary> -DoubleHook = 269, +DoubleHook_PvE = 269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/272"><strong>Bountiful Yield II</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/272"><strong>Bountiful Yield II</strong></see> <i>PvE</i> (MIN) [272] [DoL Ability] /// <para>Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.</para> /// </summary> -BountifulYieldIi = 272, +BountifulYieldIi_PvE = 272, /// <summary> -/// <see href="https://garlandtools.org/db/#action/273"><strong>Bountiful Harvest II</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/273"><strong>Bountiful Harvest II</strong></see> <i>PvE</i> (BTN) [273] [DoL Ability] /// <para>Increases the number of items obtained on your next gathering attempt by one, two, or three. Number determined by your gathering rating.</para> /// </summary> -BountifulHarvestIi = 273, +BountifulHarvestIi_PvE = 273, /// <summary> -/// <see href="https://garlandtools.org/db/#action/280"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/280"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (MIN) [280] [DoL Ability] /// <para>Increases elemental shard, crystal, and cluster and crystal yields by .</para> /// <para>Cannot be executed if the gathering node does not yield shards, crystals, or clusters or crystals.</para> /// </summary> -TheTwelvesBounty = 280, +TheTwelvesBounty_PvE = 280, /// <summary> -/// <see href="https://garlandtools.org/db/#action/282"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/282"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (BTN) [282] [DoL Ability] /// <para>Increases elemental shard, crystal, and cluster and crystal yields by .</para> /// <para>Cannot be executed if the gathering node does not yield shards, crystals, or clusters or crystals.</para> /// </summary> -TheTwelvesBounty_282 = 282, +TheTwelvesBounty_PvE_282 = 282, /// <summary> -/// <see href="https://garlandtools.org/db/#action/288"><strong>Bait</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/288"><strong>Bait</strong></see> <i>PvE</i> (FSH) [288] [DoL Ability] /// <para>Selects the bait to apply to your line.</para> /// </summary> -Bait = 288, +Bait_PvE = 288, /// <summary> -/// <see href="https://garlandtools.org/db/#action/289"><strong>Cast</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/289"><strong>Cast</strong></see> <i>PvE</i> (FSH) [289] [DoL Ability] /// <para>Casts your line and begins fishing.</para> /// </summary> -Cast = 289, +Cast_PvE = 289, /// <summary> -/// <see href="https://garlandtools.org/db/#action/290"><strong>Arbor Call II</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/290"><strong>Arbor Call II</strong></see> <i>PvE</i> (Disciple of the Land) [290] [Ability] /// <para>Surveys the landscape to locate the highest-level mature tree or lush vegetation within skill range. Can only be executed while Triangulate is active.</para> /// <para>Duration: 15s</para> /// </summary> -ArborCallIi = 290, +ArborCallIi_PvE = 290, /// <summary> -/// <see href="https://garlandtools.org/db/#action/291"><strong>Lay of the Land II</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/291"><strong>Lay of the Land II</strong></see> <i>PvE</i> (Disciple of the Land) [291] [Ability] /// <para>Surveys the landscape to locate the highest-level mineral deposit or rocky outcrop within skill range. Can only be executed while Prospect is active.</para> /// <para>Duration: 15s</para> /// </summary> -LayOfTheLandIi = 291, +LayOfTheLandIi_PvE = 291, /// <summary> -/// <see href="https://garlandtools.org/db/#action/294"><strong>Field Mastery III</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/294"><strong>Field Mastery III</strong></see> <i>PvE</i> (BTN) [294] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.</para> /// </summary> -FieldMasteryIii = 294, +FieldMasteryIii_PvE = 294, /// <summary> -/// <see href="https://garlandtools.org/db/#action/295"><strong>Sharp Vision III</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/295"><strong>Sharp Vision III</strong></see> <i>PvE</i> (MIN) [295] [DoL Ability] /// <para>Increases the chance of obtaining items while gathering by 50%. Does not apply to items at 0%.</para> /// </summary> -SharpVisionIii = 295, +SharpVisionIii_PvE = 295, /// <summary> -/// <see href="https://garlandtools.org/db/#action/296"><strong>Hook</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/296"><strong>Hook</strong></see> <i>PvE</i> (FSH) [296] [DoL Ability] /// <para>Attempts to hook the fish nibbling on the bait.</para> /// </summary> -Hook = 296, +Hook_PvE = 296, /// <summary> -/// <see href="https://garlandtools.org/db/#action/297"><strong>Mooch</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/297"><strong>Mooch</strong></see> <i>PvE</i> (FSH) [297] [DoL Ability] /// <para>Uses certain large-sized fish already hooked to your line to attract even greater prey.</para> /// </summary> -Mooch = 297, +Mooch_PvE = 297, /// <summary> -/// <see href="https://garlandtools.org/db/#action/299"><strong>Quit</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/299"><strong>Quit</strong></see> <i>PvE</i> (FSH) [299] [DoL Ability] /// <para>Abandons fishing and stows your equipment.</para> /// </summary> -Quit = 299, +Quit_PvE = 299, /// <summary> -/// <see href="https://garlandtools.org/db/#action/300"><strong>Release</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/300"><strong>Release</strong></see> <i>PvE</i> (FSH) [300] [DoL Ability] /// <para>Unhooks a fish (including all those of the same type subsequently caught at your current location) and releases it back into the wild.</para> /// <para>Has no effect on fish that have yet to be logged in the Fish Guide.</para> /// </summary> -Release = 300, +Release_PvE = 300, /// <summary> -/// <see href="https://garlandtools.org/db/#action/303"><strong>Sneak</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/303"><strong>Sneak</strong></see> <i>PvE</i> (MIN) [303] [Ability] /// <para>Tread quietly, enabling you to avoid enemies up to four levels above your own.</para> /// </summary> -Sneak = 303, +Sneak_PvE = 303, /// <summary> -/// <see href="https://garlandtools.org/db/#action/304"><strong>Sneak</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/304"><strong>Sneak</strong></see> <i>PvE</i> (BTN) [304] [Ability] /// <para>Tread quietly, enabling you to avoid enemies up to four levels above your own.</para> /// </summary> -Sneak_304 = 304, +Sneak_PvE_304 = 304, /// <summary> -/// <see href="https://garlandtools.org/db/#action/305"><strong>Sneak</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/305"><strong>Sneak</strong></see> <i>PvE</i> (FSH) [305] [Ability] /// <para>Tread quietly, enabling you to avoid enemies up to four levels above your own.</para> /// </summary> -Sneak_305 = 305, +Sneak_PvE_305 = 305, /// <summary> -/// <see href="https://garlandtools.org/db/#action/802"><strong>Embrace</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/802"><strong>Embrace</strong></see> <i>PvE</i> (SCH) [802] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Embrace = 802, +Embrace_PvE = 802, /// <summary> -/// <see href="https://garlandtools.org/db/#action/803"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/803"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [803] [Ability] /// <para>Gradually restores the HP of all nearby party members.</para> /// <para>Cure Potency: 80</para> /// <para>Duration: 21s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WhisperingDawn = 803, +WhisperingDawn_PvE = 803, /// <summary> -/// <see href="https://garlandtools.org/db/#action/805"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/805"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [805] [Ability] /// <para>Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%.</para> /// <para>Duration: 20s</para> /// <para>Effect cannot be stacked with Seraphic Illumination.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FeyIllumination = 805, +FeyIllumination_PvE = 805, /// <summary> -/// <see href="https://garlandtools.org/db/#action/815"><strong>Collect</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/815"><strong>Collect</strong></see> <i>PvE</i> (BTN) [815] [DoL Ability] /// <para>Gathers a collectable item with its current collectability rating.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -Collect_815 = 815, +Collect_PvE_815 = 815, /// <summary> -/// <see href="https://garlandtools.org/db/#action/850"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/850"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item] /// <para></para> /// </summary> -UnpackingMinion = 850, +UnpackingMinion_PvE = 850, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1128"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1128"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -MagitekCannon = 1128, +MagitekCannon_PvE = 1128, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1129"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1129"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill] /// <para>Fires a short-range burst of energy in a straight line before you.</para> /// </summary> -PhotonStream = 1129, +PhotonStream_PvE = 1129, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1134"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1134"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -Cannonfire = 1134, +Cannonfire_PvE = 1134, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1437"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1437"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -Cannonfire_1437 = 1437, +Cannonfire_PvE_1437 = 1437, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1584"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/1584"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability] /// <para>Restores own or target party member's HP while also removing Stun, Sleep, Bind, Heavy, and Silence.</para> /// <para>Cure Potency: 2,000</para> /// <para>Cure potency is doubled when a status affliction is removed. Can be used regardless of own status affliction.</para> /// </summary> -Purify = 1584, +Purify_PvE = 1584, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1694"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1694"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System] /// <para></para> /// </summary> -Decipher = 1694, +Decipher_PvE = 1694, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1695"><strong>Dig</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1695"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System] /// <para></para> /// </summary> -Dig = 1695, +Dig_PvE = 1695, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1764"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1764"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event] /// <para>Emits a stream of white-hot flames.</para> /// </summary> -FieryBreath = 1764, +FieryBreath_PvE = 1764, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1765"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1765"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event] /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para> /// </summary> -BigSneeze = 1765, +BigSneeze_PvE = 1765, /// <summary> -/// <see href="https://garlandtools.org/db/#action/1766"><strong>Throw</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/1766"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event] /// <para></para> /// </summary> -Throw = 1766, +Throw_PvE = 1766, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2135"><strong>Cast Light</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/2135"><strong>Cast Light</strong></see> <i>PvE</i> (FSH) [2135] [DoL Ability] /// <para>Lights up the tip of your fishing rod.</para> /// </summary> -CastLight = 2135, +CastLight_PvE = 2135, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2136"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2136"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item] /// <para></para> /// </summary> -MasterRecipeBook = 2136, +MasterRecipeBook_PvE = 2136, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2237"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2237"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -IronKiss = 2237, +IronKiss_PvE = 2237, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2238"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2238"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery] /// <para>Fires a lightning-aspected projectile at the designated area.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 1s</para> /// </summary> -SpindlyFinger = 2238, +SpindlyFinger_PvE = 2238, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2240"><strong>Spinning Edge</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2240"><strong>Spinning Edge</strong></see> <i>PvE</i> (ROG NIN) [2240] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// </summary> -SpinningEdge = 2240, +SpinningEdge_PvE = 2240, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2241"><strong>Shade Shift</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2241"><strong>Shade Shift</strong></see> <i>PvE</i> (ROG NIN) [2241] [Ability] /// <para>Create shadows that nullify damage up to 20% of maximum HP.</para> /// <para>Duration: 20s</para> /// </summary> -ShadeShift = 2241, +ShadeShift_PvE = 2241, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2242"><strong>Gust Slash</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2242"><strong>Gust Slash</strong></see> <i>PvE</i> (ROG NIN) [2242] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Spinning Edge</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Ninki Gauge by 5</para> /// </summary> -GustSlash = 2242, +GustSlash_PvE = 2242, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2245"><strong>Hide</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2245"><strong>Hide</strong></see> <i>PvE</i> (ROG NIN) [2245] [Ability] /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on enemies 10 levels higher than your own, or certain enemies with special sight.</para> /// <para>Additional Effect: Restores 2 charges to all mudra</para> /// <para>The effect of Doton ends upon execution of Hide.</para> /// <para>Cannot be executed while in combat.</para> /// <para>Effect ends upon use of any action other than Sprint, or upon reuse of Hide.</para> /// </summary> -Hide = 2245, +Hide_PvE = 2245, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2246"><strong>Assassinate</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2246"><strong>Assassinate</strong></see> <i>PvE</i> (NIN) [2246] [Ability] /// <para>Delivers an attack with a potency of 200.</para> /// </summary> -Assassinate = 2246, +Assassinate_PvE = 2246, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2247"><strong>Throwing Dagger</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2247"><strong>Throwing Dagger</strong></see> <i>PvE</i> (ROG NIN) [2247] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 120.</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// </summary> -ThrowingDagger = 2247, +ThrowingDagger_PvE = 2247, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2248"><strong>Mug</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2248"><strong>Mug</strong></see> <i>PvE</i> (ROG NIN) [2248] [Ability] /// <para>Delivers an attack with a potency of 150.</para> /// <para>Additional Effect: Increases target's damage taken by 5%</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Increases the chance of additional items being dropped by target if Mug is dealt before, or as, the finishing blow</para> /// <para>Additional Effect: Increases Ninki Gauge by 40</para> /// </summary> -Mug = 2248, +Mug_PvE = 2248, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2254"><strong>Death Blossom</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2254"><strong>Death Blossom</strong></see> <i>PvE</i> (ROG NIN) [2254] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// </summary> -DeathBlossom = 2254, +DeathBlossom_PvE = 2254, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2255"><strong>Aeolian Edge</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2255"><strong>Aeolian Edge</strong></see> <i>PvE</i> (ROG NIN) [2255] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's rear.</para> /// <para>Combo Action: Gust Slash</para> @@ -18824,87 +18824,87 @@ DeathBlossom = 2254, /// <para>Rear Combo Potency: </para> /// <para>Combo Bonus: Increases Ninki Gauge by </para> /// </summary> -AeolianEdge = 2255, +AeolianEdge_PvE = 2255, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2258"><strong>Trick Attack</strong></see> <i>PvE</i> (ROG NIN) +/// <see href="https://garlandtools.org/db/#action/2258"><strong>Trick Attack</strong></see> <i>PvE</i> (ROG NIN) [2258] [Ability] /// <para>Delivers an attack with a potency of 300.</para> /// <para>400 when executed from a target's rear.</para> /// <para>Additional Effect: Increases damage you deal target by 10%</para> /// <para>Duration: 15s</para> /// <para>Can only be executed while under the effect of Hidden.</para> /// </summary> -TrickAttack = 2258, +TrickAttack_PvE = 2258, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2259"><strong>Ten</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2259"><strong>Ten</strong></see> <i>PvE</i> (NIN) [2259] [Ability] /// <para>Make the ritual mudra hand gesture for “heaven.”</para> /// <para>Duration: 6s</para> /// <para>Maximum Charges: 2</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Ten = 2259, +Ten_PvE = 2259, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2260"><strong>Ninjutsu</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2260"><strong>Ninjutsu</strong></see> <i>PvE</i> (NIN) [2260] [Ability] /// <para>Executes a specific ninjutsu action coinciding with the combination of mudra made immediately beforehand.</para> /// <para>If any other action is used before the mudra are combined and the ninjutsu executed, Ninjutsu will fail.</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// <para>Restores 2 charges to all mudra when Hide is executed while outside of combat.</para> /// </summary> -Ninjutsu = 2260, +Ninjutsu_PvE = 2260, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2261"><strong>Chi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2261"><strong>Chi</strong></see> <i>PvE</i> (NIN) [2261] [Ability] /// <para>Make the ritual mudra hand gesture for “earth.”</para> /// <para>Duration: 6s</para> /// <para>Maximum Charges: 2</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Chi = 2261, +Chi_PvE = 2261, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2262"><strong>Shukuchi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2262"><strong>Shukuchi</strong></see> <i>PvE</i> (NIN) [2262] [Ability] /// <para>Move quickly to the specified location.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Shukuchi = 2262, +Shukuchi_PvE = 2262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2263"><strong>Jin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2263"><strong>Jin</strong></see> <i>PvE</i> (NIN) [2263] [Ability] /// <para>Make the ritual mudra hand gesture for “man.”</para> /// <para>Duration: 6s</para> /// <para>Maximum Charges: 2</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Jin = 2263, +Jin_PvE = 2263, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2264"><strong>Kassatsu</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2264"><strong>Kassatsu</strong></see> <i>PvE</i> (NIN) [2264] [Ability] /// <para>Allows the execution of a single ninjutsu without consumption of mudra charges.</para> /// <para>Additional Effect: Increases damage for the next ninjutsu action by 30%</para> /// <para>Duration: 15s</para> /// <para>Recast timer of mudra is not affected by the execution of this action.</para> /// </summary> -Kassatsu = 2264, +Kassatsu_PvE = 2264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2265"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2265"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [2265] [Ability] /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para> /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FumaShuriken = 2265, +FumaShuriken_PvE = 2265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2266"><strong>Katon</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2266"><strong>Katon</strong></see> <i>PvE</i> (NIN) [2266] [Ability] /// <para>Deals fire damage with a potency of 350 to target and all enemies nearby it.</para> /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Katon = 2266, +Katon_PvE = 2266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2267"><strong>Raiton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2267"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [2267] [Ability] /// <para>Deals lightning damage with a potency of 650.</para> /// <para>Additional Effect: Grants a stack of Raiju Ready</para> /// <para>Duration: 30s</para> @@ -18915,9 +18915,9 @@ Katon = 2266, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Raiton = 2267, +Raiton_PvE = 2267, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2268"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2268"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [2268] [Ability] /// <para>Deals ice damage with a potency of 350.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 15s</para> @@ -18927,9 +18927,9 @@ Raiton = 2267, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hyoton = 2268, +Hyoton_PvE = 2268, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2269"><strong>Huton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2269"><strong>Huton</strong></see> <i>PvE</i> (NIN) [2269] [Ability] /// <para>Reduces weaponskill recast time and auto-attack delay by 15%.</para> /// <para>Duration: 60s</para> /// <para>Mudra Combination: Jin→Chi→Ten or Chi→Jin→Ten</para> @@ -18937,9 +18937,9 @@ Hyoton = 2268, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Huton = 2269, +Huton_PvE = 2269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2270"><strong>Doton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2270"><strong>Doton</strong></see> <i>PvE</i> (NIN) [2270] [Ability] /// <para>Creates a patch of corrupted earth, dealing damage with a potency of 80 to any enemies who enter.</para> /// <para>Duration: 18s</para> /// <para>Additional Effect: Heavy +40%</para> @@ -18948,9 +18948,9 @@ Huton = 2269, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Doton = 2270, +Doton_PvE = 2270, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2271"><strong>Suiton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2271"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [2271] [Ability] /// <para>Deals water damage with a potency of 500.</para> /// <para>Additional Effect: Grants Suiton</para> /// <para>Duration: 20s</para> @@ -18960,63 +18960,63 @@ Doton = 2270, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Suiton = 2271, +Suiton_PvE = 2271, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2272"><strong>Rabbit Medium</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/2272"><strong>Rabbit Medium</strong></see> <i>PvE</i> (NIN) [2272] [Ability] /// <para>Thumpity thump thump, thumpity thump thump...</para> /// </summary> -RabbitMedium = 2272, +RabbitMedium_PvE = 2272, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2360"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2360"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special] /// <para>Casts a minor spell upon the designated location.</para> /// </summary> -FestalCant = 2360, +FestalCant_PvE = 2360, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2434"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2434"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount] /// <para>Fires an explosive projectile at the designated area.</para> /// <para>※Has no effect in battle.</para> /// </summary> -MagitekCannon_2434 = 2434, +MagitekCannon_PvE_2434 = 2434, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2435"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2435"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount] /// <para>Fires a short-range burst of energy in a straight line before you.</para> /// <para>※Has no effect in battle.</para> /// </summary> -PhotonStream_2435 = 2435, +PhotonStream_PvE_2435 = 2435, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2436"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2436"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount] /// <para>Emits a stream of white-hot flames.</para> /// <para>※Has no effect in battle.</para> /// </summary> -FieryBreath_2436 = 2436, +FieryBreath_PvE_2436 = 2436, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2437"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2437"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount] /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Sneeze = 2437, +Sneeze_PvE = 2437, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2443"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2443"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special] /// <para></para> /// </summary> -ToadBreath = 2443, +ToadBreath_PvE = 2443, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2620"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2620"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event] /// <para>Sprays tepid water over target.</para> /// </summary> -Saturate = 2620, +Saturate_PvE = 2620, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2630"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2630"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -Cannonfire_2630 = 2630, +Cannonfire_PvE_2630 = 2630, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2645"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2645"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item] /// <para></para> /// </summary> -ARealmReborn = 2645, +ARealmReborn_PvE = 2645, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2864"><strong>Rook Autoturret</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2864"><strong>Rook Autoturret</strong></see> <i>PvE</i> (MCH) [2864] [Ability] /// <para>Deploys a single-target battle turret which attacks using Volley Fire, dealing damage with a potency of 35.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 75.</para> /// <para>Battery Gauge Cost: 50</para> @@ -19025,124 +19025,124 @@ ARealmReborn = 2645, /// <para>Shuts down when time expires or upon execution of Rook Overdrive.</para> /// <para>Shares a recast timer with Rook Overdrive.</para> /// </summary> -RookAutoturret = 2864, +RookAutoturret_PvE = 2864, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2866"><strong>Split Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2866"><strong>Split Shot</strong></see> <i>PvE</i> (MCH) [2866] [Weaponskill] /// <para>Delivers an attack with a potency of 140.</para> /// <para>Additional Effect: Increases Heat Gauge by 5</para> /// </summary> -SplitShot = 2866, +SplitShot_PvE = 2866, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2868"><strong>Slug Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2868"><strong>Slug Shot</strong></see> <i>PvE</i> (MCH) [2868] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Split Shot or Heated Split Shot</para> /// <para>Combo Potency: 210</para> /// <para>Combo Bonus: Increases Heat Gauge by 5</para> /// </summary> -SlugShot = 2868, +SlugShot_PvE = 2868, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2870"><strong>Spread Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2870"><strong>Spread Shot</strong></see> <i>PvE</i> (MCH) [2870] [Weaponskill] /// <para>Delivers an attack with a potency of 140 to all enemies in a cone before you.</para> /// <para>Additional Effect: Increases Heat Gauge by 5</para> /// </summary> -SpreadShot = 2870, +SpreadShot_PvE = 2870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2872"><strong>Hot Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2872"><strong>Hot Shot</strong></see> <i>PvE</i> (MCH) [2872] [Weaponskill] /// <para>Delivers an attack with a potency of 240.</para> /// <para>Additional Effect: Increases Battery Gauge by 20</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -HotShot = 2872, +HotShot_PvE = 2872, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2873"><strong>Clean Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2873"><strong>Clean Shot</strong></see> <i>PvE</i> (MCH) [2873] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Slug Shot or Heated Slug Shot</para> /// <para>Combo Potency: 270</para> /// <para>Combo Bonus: Increases Heat Gauge by 5</para> /// <para>Combo Bonus: Increases Battery Gauge by 10</para> /// </summary> -CleanShot = 2873, +CleanShot_PvE = 2873, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2874"><strong>Gauss Round</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2874"><strong>Gauss Round</strong></see> <i>PvE</i> (MCH) [2874] [Ability] /// <para>Delivers an attack with a potency of 130.</para> /// <para>Maximum Charges: </para> /// </summary> -GaussRound = 2874, +GaussRound_PvE = 2874, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2876"><strong>Reassemble</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2876"><strong>Reassemble</strong></see> <i>PvE</i> (MCH) [2876] [Ability] /// <para>Guarantees that next weaponskill is a critical direct hit.</para> /// <para>Duration: 5s</para> /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>This action does not affect damage over time effects.</para> /// <para>Maximum Charges: 2</para> /// </summary> -Reassemble = 2876, +Reassemble_PvE = 2876, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2878"><strong>Wildfire</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2878"><strong>Wildfire</strong></see> <i>PvE</i> (MCH) [2878] [Ability] /// <para>Covers target's body in a slow-burning pitch. Action is changed to Detonator for the duration of the effect.</para> /// <para>Deals damage when time expires or upon executing Detonator.</para> /// <para>Potency is increased by for each of your own weaponskills you land prior to the end of the effect.</para> /// <para>Can be stacked up to 6 times.</para> /// <para>Duration: 10s</para> /// </summary> -Wildfire = 2878, +Wildfire_PvE = 2878, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2887"><strong>Dismantle</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2887"><strong>Dismantle</strong></see> <i>PvE</i> (MCH) [2887] [Ability] /// <para>Lowers target's damage dealt by 10%.</para> /// <para>Duration: 10s</para> /// </summary> -Dismantle = 2887, +Dismantle_PvE = 2887, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2890"><strong>Ricochet</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/2890"><strong>Ricochet</strong></see> <i>PvE</i> (MCH) [2890] [Ability] /// <para>Deals damage to all nearby enemies with a potency of 130 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Maximum Charges: </para> /// </summary> -Ricochet = 2890, +Ricochet_PvE = 2890, /// <summary> -/// <see href="https://garlandtools.org/db/#action/2894"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/2894"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item] /// <para></para> /// </summary> -EternityRing = 2894, +EternityRing_PvE = 2894, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3139"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3139"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special] /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para> /// </summary> -ImpPunch = 3139, +ImpPunch_PvE = 3139, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3377"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3377"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -IronKiss_3377 = 3377, +IronKiss_PvE_3377 = 3377, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3378"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3378"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery] /// <para>Fires a lightning-aspected projectile at the designated area.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 1s</para> /// </summary> -SpindlyFinger_3378 = 3378, +SpindlyFinger_PvE_3378 = 3378, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3379"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3379"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery] /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para> /// </summary> -PitchBomb = 3379, +PitchBomb_PvE = 3379, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3504"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3504"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special] /// <para>Delivers a ranged attack.</para> /// </summary> -Quickchant = 3504, +Quickchant_PvE = 3504, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3506"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/3506"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount] /// <para>Emits a bright, harmless charge.</para> /// </summary> -LowVoltage = 3506, +LowVoltage_PvE = 3506, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3538"><strong>Goring Blade</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/3538"><strong>Goring Blade</strong></see> <i>PvE</i> (PLD) [3538] [Weaponskill] /// <para>Delivers an attack with a potency of 700.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -GoringBlade = 3538, +GoringBlade_PvE = 3538, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3539"><strong>Royal Authority</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/3539"><strong>Royal Authority</strong></see> <i>PvE</i> (PLD) [3539] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Riot Blade</para> /// <para>Combo Potency: </para> @@ -19152,31 +19152,31 @@ GoringBlade = 3538, /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para> /// <para>Duration: 30s</para> /// </summary> -RoyalAuthority = 3539, +RoyalAuthority_PvE = 3539, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3540"><strong>Divine Veil</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/3540"><strong>Divine Veil</strong></see> <i>PvE</i> (PLD) [3540] [Ability] /// <para>Creates a barrier around self and all party members near you that absorbs damage equivalent to 10% of your maximum HP.</para> /// <para>Duration: 30s</para> /// <para>Additional Effect: Restores target's HP</para> /// <para>Cure Potency: 400</para> /// </summary> -DivineVeil = 3540, +DivineVeil_PvE = 3540, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3541"><strong>Clemency</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/3541"><strong>Clemency</strong></see> <i>PvE</i> (PLD) [3541] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 1,000</para> /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para> /// </summary> -Clemency = 3541, +Clemency_PvE = 3541, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3542"><strong>Sheltron</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/3542"><strong>Sheltron</strong></see> <i>PvE</i> (PLD) [3542] [Ability] /// <para>Reduces damage taken by 15%.</para> /// <para>Duration: s</para> /// <para>Oath Gauge Cost: 50</para> /// </summary> -Sheltron = 3542, +Sheltron_PvE = 3542, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3543"><strong>Tornado Kick</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/3543"><strong>Tornado Kick</strong></see> <i>PvE</i> (MNK) [3543] [Weaponskill] /// <para>Delivers an attack to target and all enemies nearby it with a potency of 850 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para> /// <para>Duration: 30s</para> @@ -19185,9 +19185,9 @@ Sheltron = 3542, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TornadoKick = 3543, +TornadoKick_PvE = 3543, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3545"><strong>Elixir Field</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/3545"><strong>Elixir Field</strong></see> <i>PvE</i> (MNK) [3545] [Weaponskill] /// <para>Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.</para> /// <para>Additional Effect: Opens the Lunar Nadi</para> /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para> @@ -19197,9 +19197,9 @@ TornadoKick = 3543, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ElixirField = 3545, +ElixirField_PvE = 3545, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3546"><strong>Meditation</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/3546"><strong>Meditation</strong></see> <i>PvE</i> (PGL MNK) [3546] [Ability] /// <para>Opens a chakra. Up to five chakra can be opened at once.</para> /// <para>Opens all five chakra when used outside of combat.</para> /// <para>Triggers the cooldown of weaponskills upon execution.</para> @@ -19207,85 +19207,85 @@ ElixirField = 3545, /// <para></para> /// <para>※Action changes to The Forbidden ChakraSteel PeakSteel Peak when all five chakra are open.</para> /// </summary> -Meditation = 3546, +Meditation_PvE = 3546, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3547"><strong>the Forbidden Chakra</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/3547"><strong>the Forbidden Chakra</strong></see> <i>PvE</i> (MNK) [3547] [Ability] /// <para>Delivers an attack with a potency of .</para> /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para> /// <para>Shares a recast timer with EnlightenmentHowling FistHowling Fist.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheForbiddenChakra = 3547, +TheForbiddenChakra_PvE = 3547, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3549"><strong>Fell Cleave</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/3549"><strong>Fell Cleave</strong></see> <i>PvE</i> (WAR) [3549] [Weaponskill] /// <para>Delivers an attack with a potency of 520.</para> /// <para>Beast Gauge Cost: 50</para> /// <para></para> /// <para>※Action changes to Inner Chaos while under the effect of Nascent Chaos.</para> /// </summary> -FellCleave = 3549, +FellCleave_PvE = 3549, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3550"><strong>Decimate</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/3550"><strong>Decimate</strong></see> <i>PvE</i> (WAR) [3550] [Weaponskill] /// <para>Delivers an attack to all nearby enemies with a potency of 200.</para> /// <para>Beast Gauge Cost: 50</para> /// <para></para> /// <para>※Action changes to Chaotic Cyclone while under the effect of Nascent Chaos.</para> /// </summary> -Decimate = 3550, +Decimate_PvE = 3550, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3551"><strong>Raw Intuition</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/3551"><strong>Raw Intuition</strong></see> <i>PvE</i> (WAR) [3551] [Ability] /// <para>Reduces damage taken by 10%.</para> /// <para>Duration: 6s</para> /// <para>Additional Effect: Restores HP with each weaponskill successfully delivered</para> /// <para>Cure Potency: 400</para> /// <para>Shares a recast timer with Nascent Flash.</para> /// </summary> -RawIntuition = 3551, +RawIntuition_PvE = 3551, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3552"><strong>Equilibrium</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/3552"><strong>Equilibrium</strong></see> <i>PvE</i> (WAR) [3552] [Ability] /// <para>Restores own HP.</para> /// <para>Cure Potency: 1,200</para> /// <para>Additional Effect: Gradually restores HP</para> /// <para>Cure Potency: 200</para> /// <para>Duration: 15s</para> /// </summary> -Equilibrium = 3552, +Equilibrium_PvE = 3552, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3554"><strong>Fang and Claw</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/3554"><strong>Fang and Claw</strong></see> <i>PvE</i> (DRG) [3554] [Weaponskill] /// <para>Delivers an attack with a potency of 260.</para> /// <para>300 when executed from a target's flank.</para> /// <para>Can only be executed while under the effect of Fang and Claw Bared, granted by Heavens' ThrustFull ThrustFull Thrust.</para> /// </summary> -FangAndClaw = 3554, +FangAndClaw_PvE = 3554, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3555"><strong>Geirskogul</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/3555"><strong>Geirskogul</strong></see> <i>PvE</i> (DRG) [3555] [Ability] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of for the first enemy, and 30% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Life of the Dragon while under the full gaze of the first brood</para> /// <para></para> /// <para>※Action changes to Nastrond while under the effect of Life of the Dragon.</para> /// </summary> -Geirskogul = 3555, +Geirskogul_PvE = 3555, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3556"><strong>Wheeling Thrust</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/3556"><strong>Wheeling Thrust</strong></see> <i>PvE</i> (DRG) [3556] [Weaponskill] /// <para>Delivers an attack with a potency of 260.</para> /// <para>300 when executed from a target's rear.</para> /// <para>Can only be executed while under the effect of Wheel in Motion, granted by Chaotic SpringChaos ThrustChaos Thrust.</para> /// </summary> -WheelingThrust = 3556, +WheelingThrust_PvE = 3556, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3557"><strong>Battle Litany</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/3557"><strong>Battle Litany</strong></see> <i>PvE</i> (DRG) [3557] [Ability] /// <para>Increases critical hit rate of self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// </summary> -BattleLitany = 3557, +BattleLitany_PvE = 3557, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3558"><strong>Empyreal Arrow</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/3558"><strong>Empyreal Arrow</strong></see> <i>PvE</i> (BRD) [3558] [Ability] /// <para>Delivers an attack with a potency of 240.</para> /// </summary> -EmpyrealArrow = 3558, +EmpyrealArrow_PvE = 3558, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3559"><strong>the Wanderer's Minuet</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/3559"><strong>the Wanderer's Minuet</strong></see> <i>PvE</i> (BRD) [3559] [Ability] /// <para>Deals unaspected damage with a potency of 100.</para> /// <para>Additional Effect: Grants the Wanderer's Minuet to self and all party members within 50 yalms, increasing critical hit rate by 2%</para> /// <para>Duration: 45s</para> @@ -19296,28 +19296,28 @@ EmpyrealArrow = 3558, /// <para></para> /// <para>※Action changes to Pitch Perfect upon execution.</para> /// </summary> -TheWanderersMinuet = 3559, +TheWanderersMinuet_PvE = 3559, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3560"><strong>Iron Jaws</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/3560"><strong>Iron Jaws</strong></see> <i>PvE</i> (BRD) [3560] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: If the target is suffering from a Caustic Bite or StormbiteVenomous Bite or WindbiteVenomous Bite or Windbite effect inflicted by you, the effect timer is reset</para> /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -IronJaws = 3560, +IronJaws_PvE = 3560, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3561"><strong>the Warden's Paean</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/3561"><strong>the Warden's Paean</strong></see> <i>PvE</i> (BRD) [3561] [Ability] /// <para>Removes one select detrimental effect from self or target party member. If the target is not enfeebled, a barrier is created nullifying the target's next detrimental effect suffered.</para> /// <para>Duration: 30s</para> /// </summary> -TheWardensPaean = 3561, +TheWardensPaean_PvE = 3561, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3562"><strong>Sidewinder</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/3562"><strong>Sidewinder</strong></see> <i>PvE</i> (BRD) [3562] [Ability] /// <para>Delivers an attack with a potency of 320.</para> /// </summary> -Sidewinder = 3562, +Sidewinder_PvE = 3562, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3563"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/3563"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [3563] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's flank.</para> /// <para>Combo Action: Gust Slash</para> @@ -19326,79 +19326,79 @@ Sidewinder = 3562, /// <para>Combo Bonus: Extends Huton duration by 30s to a maximum of 60s</para> /// <para>Combo Bonus: Increases Ninki Gauge by </para> /// </summary> -ArmorCrush = 3563, +ArmorCrush_PvE = 3563, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3566"><strong>Dream Within a Dream</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/3566"><strong>Dream Within a Dream</strong></see> <i>PvE</i> (NIN) [3566] [Ability] /// <para>Delivers a threefold attack, each hit with a potency of 150.</para> /// </summary> -DreamWithinADream = 3566, +DreamWithinADream_PvE = 3566, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3568"><strong>Stone III</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/3568"><strong>Stone III</strong></see> <i>PvE</i> (WHM) [3568] [Spell] /// <para>Deals earth damage with a potency of 220.</para> /// </summary> -StoneIii = 3568, +StoneIii_PvE = 3568, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3569"><strong>Asylum</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/3569"><strong>Asylum</strong></see> <i>PvE</i> (WHM) [3569] [Ability] /// <para>Envelops a designated area in a veil of succor, granting healing over time to self and any party members who enter.</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 24s </para> /// <para>Additional Effect: Increases HP recovery via healing actions on party members in the designated area by 10%</para> /// </summary> -Asylum = 3569, +Asylum_PvE = 3569, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3570"><strong>Tetragrammaton</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/3570"><strong>Tetragrammaton</strong></see> <i>PvE</i> (WHM) [3570] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 700</para> /// </summary> -Tetragrammaton = 3570, +Tetragrammaton_PvE = 3570, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3571"><strong>Assize</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/3571"><strong>Assize</strong></see> <i>PvE</i> (WHM) [3571] [Ability] /// <para>Deals unaspected damage with a potency of 400 to all nearby enemies.</para> /// <para>Additional Effect: Restores own HP and the HP of nearby party members</para> /// <para>Cure Potency: 400</para> /// <para>Additional Effect: Restores 5% of maximum MP</para> /// </summary> -Assize = 3571, +Assize_PvE = 3571, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3573"><strong>Ley Lines</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/3573"><strong>Ley Lines</strong></see> <i>PvE</i> (BLM) [3573] [Ability] /// <para>Connects naturally occurring ley lines to create a circle of power which, while standing within it, reduces spell cast time and recast time, and auto-attack delay by 15%.</para> /// <para>Duration: 30s</para> /// </summary> -LeyLines = 3573, +LeyLines_PvE = 3573, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3574"><strong>Sharpcast</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/3574"><strong>Sharpcast</strong></see> <i>PvE</i> (BLM) [3574] [Ability] /// <para>Ensures the next Scathe, Fire, Paradox, or Thunder spell cast will, for the first hit, trigger Scathe's additional effect, Firestarter, or Thundercloud.</para> /// <para>Duration: 30s</para> /// <para>Maximum Charges: 2</para> /// </summary> -Sharpcast = 3574, +Sharpcast_PvE = 3574, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3576"><strong>Blizzard IV</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/3576"><strong>Blizzard IV</strong></see> <i>PvE</i> (BLM) [3576] [Spell] /// <para>Deals ice damage with a potency of 310.</para> /// <para>Additional Effect: Grants 3 Umbral Hearts</para> /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para> /// <para>Can only be executed while under the effect of Umbral Ice.</para> /// </summary> -BlizzardIv = 3576, +BlizzardIv_PvE = 3576, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3577"><strong>Fire IV</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/3577"><strong>Fire IV</strong></see> <i>PvE</i> (BLM) [3577] [Spell] /// <para>Deals fire damage with a potency of 310.</para> /// <para>Can only be executed while under the effect of Astral Fire.</para> /// </summary> -FireIv = 3577, +FireIv_PvE = 3577, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3578"><strong>Painflare</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/3578"><strong>Painflare</strong></see> <i>PvE</i> (SMN) [3578] [Ability] /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -Painflare = 3578, +Painflare_PvE = 3578, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3579"><strong>Ruin III</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/3579"><strong>Ruin III</strong></see> <i>PvE</i> (SMN) [3579] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// </summary> -RuinIii = 3579, +RuinIii_PvE = 3579, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3581"><strong>Dreadwyrm Trance</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/3581"><strong>Dreadwyrm Trance</strong></see> <i>PvE</i> (SMN) [3581] [Spell] /// <para>Enters Dreadwyrm Trance.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Changes Ruin III to Astral Impulse and Outburst to Astral Flare</para> @@ -19406,146 +19406,146 @@ RuinIii = 3579, /// <para>Can only be executed in combat and while Carbuncle is summoned.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -DreadwyrmTrance = 3581, +DreadwyrmTrance_PvE = 3581, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3582"><strong>Deathflare</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/3582"><strong>Deathflare</strong></see> <i>PvE</i> (SMN) [3582] [Ability] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Can only be executed while in Dreadwyrm Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Deathflare = 3582, +Deathflare_PvE = 3582, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3583"><strong>Indomitability</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/3583"><strong>Indomitability</strong></see> <i>PvE</i> (SCH) [3583] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 400</para> /// <para>Additional Effect: Increases Faerie Gauge by 10</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -Indomitability = 3583, +Indomitability_PvE = 3583, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3584"><strong>Broil</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/3584"><strong>Broil</strong></see> <i>PvE</i> (SCH) [3584] [Spell] /// <para>Deals unaspected damage with a potency of 220.</para> /// </summary> -Broil = 3584, +Broil_PvE = 3584, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3585"><strong>Deployment Tactics</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/3585"><strong>Deployment Tactics</strong></see> <i>PvE</i> (SCH) [3585] [Ability] /// <para>Extends Galvanize effect cast on self or target party member to other nearby party members.</para> /// <para>Duration: Time remaining on original effect</para> /// <para>No effect when target is not under the effect of Galvanize.</para> /// </summary> -DeploymentTactics = 3585, +DeploymentTactics_PvE = 3585, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3586"><strong>Emergency Tactics</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/3586"><strong>Emergency Tactics</strong></see> <i>PvE</i> (SCH) [3586] [Ability] /// <para>Transforms the next Galvanize and Catalyze statuses into HP recovery equaling the amount of damage reduction intended for the barrier.</para> /// <para>Duration: 15s</para> /// </summary> -EmergencyTactics = 3586, +EmergencyTactics_PvE = 3586, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3587"><strong>Dissipation</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/3587"><strong>Dissipation</strong></see> <i>PvE</i> (SCH) [3587] [Ability] /// <para>Orders your faerie away while granting you a full Aetherflow stack. Also increases healing magic potency by 20%.</para> /// <para>Duration: 30s</para> /// <para>Current faerie will return once the effect expires.</para> /// <para>Summon Eos cannot be executed while under the effect of Dissipation.</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Dissipation = 3587, +Dissipation_PvE = 3587, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3590"><strong>Draw</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3590"><strong>Draw</strong></see> <i>PvE</i> (AST) [3590] [Ability] /// <para>Draws a card (arcanum) from your divining deck. Only one arcanum can be drawn at a time.</para> /// <para>Arcanum effect can be triggered using the action Play.</para> /// <para>Additional Effect: Restores 5% of maximum MP</para> /// <para>Additional Effect: Grants Clarifying Draw, allowing the execution of Redraw</para> /// <para>Maximum Charges: 2</para> /// </summary> -Draw = 3590, +Draw_PvE = 3590, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3593"><strong>Redraw</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3593"><strong>Redraw</strong></see> <i>PvE</i> (AST) [3593] [Ability] /// <para>Draws a different arcanum from your deck.</para> /// <para>Can only be executed while under the effect of Clarifying Draw.</para> /// </summary> -Redraw = 3593, +Redraw_PvE = 3593, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3594"><strong>Benefic</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3594"><strong>Benefic</strong></see> <i>PvE</i> (AST) [3594] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: 15% chance next Benefic II will restore critical HP</para> /// <para>Duration: 15s</para> /// </summary> -Benefic = 3594, +Benefic_PvE = 3594, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3595"><strong>Aspected Benefic</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3595"><strong>Aspected Benefic</strong></see> <i>PvE</i> (AST) [3595] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: </para> /// <para>Duration: 15s</para> /// </summary> -AspectedBenefic = 3595, +AspectedBenefic_PvE = 3595, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3596"><strong>Malefic</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3596"><strong>Malefic</strong></see> <i>PvE</i> (AST) [3596] [Spell] /// <para>Deals unaspected damage with a potency of 150.</para> /// </summary> -Malefic = 3596, +Malefic_PvE = 3596, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3598"><strong>Malefic II</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3598"><strong>Malefic II</strong></see> <i>PvE</i> (AST) [3598] [Spell] /// <para>Deals unaspected damage with a potency of 160.</para> /// </summary> -MaleficIi = 3598, +MaleficIi_PvE = 3598, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3599"><strong>Combust</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3599"><strong>Combust</strong></see> <i>PvE</i> (AST) [3599] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 40</para> /// <para>Duration: 30s</para> /// </summary> -Combust = 3599, +Combust_PvE = 3599, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3600"><strong>Helios</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3600"><strong>Helios</strong></see> <i>PvE</i> (AST) [3600] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: </para> /// </summary> -Helios = 3600, +Helios_PvE = 3600, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3601"><strong>Aspected Helios</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3601"><strong>Aspected Helios</strong></see> <i>PvE</i> (AST) [3601] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: </para> /// <para>Duration: 15s</para> /// </summary> -AspectedHelios = 3601, +AspectedHelios_PvE = 3601, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3603"><strong>Ascend</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3603"><strong>Ascend</strong></see> <i>PvE</i> (AST) [3603] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -Ascend = 3603, +Ascend_PvE = 3603, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3606"><strong>Lightspeed</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3606"><strong>Lightspeed</strong></see> <i>PvE</i> (AST) [3606] [Ability] /// <para>Reduces cast times for spells by 2.5 seconds.</para> /// <para>Duration: 15s</para> /// </summary> -Lightspeed = 3606, +Lightspeed_PvE = 3606, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3608"><strong>Combust II</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3608"><strong>Combust II</strong></see> <i>PvE</i> (AST) [3608] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 50</para> /// <para>Duration: 30s</para> /// </summary> -CombustIi = 3608, +CombustIi_PvE = 3608, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3610"><strong>Benefic II</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3610"><strong>Benefic II</strong></see> <i>PvE</i> (AST) [3610] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// </summary> -BeneficIi = 3610, +BeneficIi_PvE = 3610, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3612"><strong>Synastry</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3612"><strong>Synastry</strong></see> <i>PvE</i> (AST) [3612] [Ability] /// <para>Generate an aetheric bond with target party member. Each time you cast a single-target healing spell on yourself or a party member, the party member with whom you have the bond will also recover HP equaling 40% of the original spell.</para> /// <para>Duration: 20s</para> /// </summary> -Synastry = 3612, +Synastry_PvE = 3612, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3613"><strong>Collective Unconscious</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3613"><strong>Collective Unconscious</strong></see> <i>PvE</i> (AST) [3613] [Ability] /// <para>Creates a celestial ring 8 yalms around the caster.</para> /// <para>Duration: 18s</para> /// <para>Additional Effect: Reduces damage taken by 10% for self and any party members within 30 yalms and applies Wheel of Fortune to self and any party members within 8 yalms</para> @@ -19557,60 +19557,60 @@ Synastry = 3612, /// <para>Collective Unconscious effect ends upon using another action or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -CollectiveUnconscious = 3613, +CollectiveUnconscious_PvE = 3613, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3614"><strong>Essential Dignity</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3614"><strong>Essential Dignity</strong></see> <i>PvE</i> (AST) [3614] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 400</para> /// <para>Potency increases up to 900 as the target's HP decreases, reaching its maximum value when the target has 30% HP or less.</para> /// <para>Maximum Charges: 2</para> /// </summary> -EssentialDignity = 3614, +EssentialDignity_PvE = 3614, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3615"><strong>Gravity</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/3615"><strong>Gravity</strong></see> <i>PvE</i> (AST) [3615] [Spell] /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para> /// </summary> -Gravity = 3615, +Gravity_PvE = 3615, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3617"><strong>Hard Slash</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3617"><strong>Hard Slash</strong></see> <i>PvE</i> (DRK) [3617] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// </summary> -HardSlash = 3617, +HardSlash_PvE = 3617, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3621"><strong>Unleash</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3621"><strong>Unleash</strong></see> <i>PvE</i> (DRK) [3621] [Spell] /// <para>Deals unaspected damage with a potency of 120 to all nearby enemies.</para> /// </summary> -Unleash = 3621, +Unleash_PvE = 3621, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3623"><strong>Syphon Strike</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3623"><strong>Syphon Strike</strong></see> <i>PvE</i> (DRK) [3623] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Hard Slash</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Restores MP</para> /// </summary> -SyphonStrike = 3623, +SyphonStrike_PvE = 3623, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3624"><strong>Unmend</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3624"><strong>Unmend</strong></see> <i>PvE</i> (DRK) [3624] [Spell] /// <para>Deals unaspected damage with a potency of 150.</para> /// <para>Additional Effect: Increased enmity</para> /// <para>Additional Effect: Reduces the recast time of Plunge by 5 seconds</para> /// </summary> -Unmend = 3624, +Unmend_PvE = 3624, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3625"><strong>Blood Weapon</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3625"><strong>Blood Weapon</strong></see> <i>PvE</i> (DRK) [3625] [Ability] /// <para>Grants 5 stacks of Blood Weapon, each stack increasing Blood Gauge by 10 and restoring MPrestoring MPrestoring MP upon landing weaponskills or spells.</para> /// <para>Duration: 15s</para> /// <para>Effect does not stack when hitting multiple targets with a single attack.</para> /// </summary> -BloodWeapon = 3625, +BloodWeapon_PvE = 3625, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3629"><strong>Grit</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3629"><strong>Grit</strong></see> <i>PvE</i> (DRK) [3629] [Ability] /// <para>Significantly increases enmity generation.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -Grit = 3629, +Grit_PvE = 3629, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3632"><strong>Souleater</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3632"><strong>Souleater</strong></see> <i>PvE</i> (DRK) [3632] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Syphon Strike</para> /// <para>Combo Potency: </para> @@ -19618,21 +19618,21 @@ Grit = 3629, /// <para>Cure Potency: 300</para> /// <para>Combo Bonus: Increases Blood Gauge by 20</para> /// </summary> -Souleater = 3632, +Souleater_PvE = 3632, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3634"><strong>Dark Mind</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3634"><strong>Dark Mind</strong></see> <i>PvE</i> (DRK) [3634] [Ability] /// <para>Reduces magic vulnerability by 20%.</para> /// <para>Duration: 10s</para> /// </summary> -DarkMind = 3634, +DarkMind_PvE = 3634, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3636"><strong>Shadow Wall</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3636"><strong>Shadow Wall</strong></see> <i>PvE</i> (DRK) [3636] [Ability] /// <para>Reduces damage taken by 30%.</para> /// <para>Duration: 15s</para> /// </summary> -ShadowWall = 3636, +ShadowWall_PvE = 3636, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3638"><strong>Living Dead</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3638"><strong>Living Dead</strong></see> <i>PvE</i> (DRK) [3638] [Ability] /// <para>Grants the effect of Living Dead.</para> /// <para>When HP is reduced to 0 while under the effect of Living Dead, instead of becoming KO'd, your status will change to Walking Dead.</para> /// <para>Living Dead Duration: 10s</para> @@ -19643,214 +19643,214 @@ ShadowWall = 3636, /// <para>While under the effect of Undead Rebirth, most attacks will not lower your HP below 1.</para> /// <para>Undead Rebirth Duration: Time remaining on Walking Dead</para> /// </summary> -LivingDead = 3638, +LivingDead_PvE = 3638, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3639"><strong>Salted Earth</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3639"><strong>Salted Earth</strong></see> <i>PvE</i> (DRK) [3639] [Ability] /// <para>Creates a patch of salted earth at your feet, dealing unaspected damage with a potency of 50 to any enemies who enter.</para> /// <para>Duration: 15s</para> /// <para></para> /// <para>※Action changes to Salt and Darkness upon execution.</para> /// </summary> -SaltedEarth = 3639, +SaltedEarth_PvE = 3639, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3640"><strong>Plunge</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3640"><strong>Plunge</strong></see> <i>PvE</i> (DRK) [3640] [Ability] /// <para>Delivers a jumping attack with a potency of 150.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Plunge = 3640, +Plunge_PvE = 3640, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3641"><strong>Abyssal Drain</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3641"><strong>Abyssal Drain</strong></see> <i>PvE</i> (DRK) [3641] [Ability] /// <para>Deals unaspected damage with a potency of 240 to target and all enemies nearby it.</para> /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 200</para> /// <para>Additional Effect: Restores MP</para> /// <para>Shares a recast timer with Carve and Spit.</para> /// </summary> -AbyssalDrain = 3641, +AbyssalDrain_PvE = 3641, /// <summary> -/// <see href="https://garlandtools.org/db/#action/3643"><strong>Carve and Spit</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/3643"><strong>Carve and Spit</strong></see> <i>PvE</i> (DRK) [3643] [Ability] /// <para>Delivers a threefold attack with a potency of 510.</para> /// <para>Additional Effect: Restores MP</para> /// <para>Shares a recast timer with Abyssal Drain.</para> /// </summary> -CarveAndSpit = 3643, +CarveAndSpit_PvE = 3643, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4062"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4062"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount] /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para> /// </summary> -Heavydoom = 4062, +Heavydoom_PvE = 4062, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4063"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4063"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount] /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para> /// </summary> -Cracklyplume = 4063, +Cracklyplume_PvE = 4063, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4064"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4064"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount] /// <para>Fires a round of armor-piercing ammunition.</para> /// </summary> -Meltyspume = 4064, +Meltyspume_PvE = 4064, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4065"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4065"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount] /// <para>Activates electromagnets capable of drawing in a target.</para> /// </summary> -Stickyloom = 4065, +Stickyloom_PvE = 4065, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4066"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4066"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount] /// <para></para> /// </summary> -Selfdetonate = 4066, +Selfdetonate_PvE = 4066, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4067"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4067"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount] /// <para>Saps a target of its electrical charge.</para> /// </summary> -Recharge = 4067, +Recharge_PvE = 4067, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4072"><strong>Clear Vision</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/4072"><strong>Clear Vision</strong></see> <i>PvE</i> (MIN) [4072] [DoL Ability] /// <para>Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.</para> /// </summary> -ClearVision = 4072, +ClearVision_PvE = 4072, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4073"><strong>Bountiful Yield</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/4073"><strong>Bountiful Yield</strong></see> <i>PvE</i> (MIN) [4073] [DoL Ability] /// <para>Increases the number of items obtained on your next gathering attempt by one.</para> /// </summary> -BountifulYield = 4073, +BountifulYield_PvE = 4073, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4081"><strong>Luck of the Mountaineer</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/4081"><strong>Luck of the Mountaineer</strong></see> <i>PvE</i> (MIN) [4081] [DoL Ability] /// <para>Uncovers a gathering node's hidden items.</para> /// </summary> -LuckOfTheMountaineer = 4081, +LuckOfTheMountaineer_PvE = 4081, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4086"><strong>Flora Mastery</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/4086"><strong>Flora Mastery</strong></see> <i>PvE</i> (BTN) [4086] [DoL Ability] /// <para>Increases the chance of obtaining items on your next gathering attempt by 15%. Does not apply to items at 0%.</para> /// </summary> -FloraMastery = 4086, +FloraMastery_PvE = 4086, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4087"><strong>Bountiful Harvest</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/4087"><strong>Bountiful Harvest</strong></see> <i>PvE</i> (BTN) [4087] [DoL Ability] /// <para>Increases the number of items obtained on your next gathering attempt by one.</para> /// </summary> -BountifulHarvest = 4087, +BountifulHarvest_PvE = 4087, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4095"><strong>Luck of the Pioneer</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/4095"><strong>Luck of the Pioneer</strong></see> <i>PvE</i> (BTN) [4095] [DoL Ability] /// <para>Uncovers a gathering node's hidden items.</para> /// </summary> -LuckOfThePioneer = 4095, +LuckOfThePioneer_PvE = 4095, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4100"><strong>Snagging</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4100"><strong>Snagging</strong></see> <i>PvE</i> (FSH) [4100] [DoL Ability] /// <para>Adds extra hooks to the line, making it possible to land normally uncatchable fish and items.</para> /// </summary> -Snagging = 4100, +Snagging_PvE = 4100, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4101"><strong>Collect</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4101"><strong>Collect</strong></see> <i>PvE</i> (FSH) [4101] [Ability] /// <para>Readies the catch to retain as a collectable.</para> /// </summary> -Collect_4101 = 4101, +Collect_PvE_4101 = 4101, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4102"><strong>Patience</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4102"><strong>Patience</strong></see> <i>PvE</i> (FSH) [4102] [DoL Ability] /// <para>Increases the chance of landing a large-sized fish by 50% while reducing Hook efficiency by 40%.</para> /// <para>Duration: 60s</para> /// <para></para> /// <para>Cancels current mooching opportunity.</para> /// </summary> -Patience = 4102, +Patience_PvE = 4102, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4103"><strong>Powerful Hookset</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4103"><strong>Powerful Hookset</strong></see> <i>PvE</i> (FSH) [4103] [DoL Ability] /// <para>Negates the Inefficient Hooking status. Has no effect on certain fish with a weak bite.</para> /// </summary> -PowerfulHookset = 4103, +PowerfulHookset_PvE = 4103, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4104"><strong>Chum</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4104"><strong>Chum</strong></see> <i>PvE</i> (FSH) [4104] [DoL Ability] /// <para>Reduces the amount of time for the next fish to bite.</para> /// <para></para> /// <para>Cancels current mooching opportunity.</para> /// </summary> -Chum = 4104, +Chum_PvE = 4104, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4105"><strong>Fish Eyes</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4105"><strong>Fish Eyes</strong></see> <i>PvE</i> (FSH) [4105] [DoL Ability] /// <para>Opens your five senses to the surrounding environment, detecting fish in a given body of water without regard for their normal hours of activity.</para> /// <para>Has no effect on certain fish.</para> /// <para>Duration: 60s</para> /// <para></para> /// <para>Cancels current mooching opportunity.</para> /// </summary> -FishEyes = 4105, +FishEyes_PvE = 4105, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4106"><strong>Patience II</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4106"><strong>Patience II</strong></see> <i>PvE</i> (FSH) [4106] [DoL Ability] /// <para>Increases the chance of landing a large-sized fish by 80% while reducing Hook efficiency by 75%. Also increases the likelihood of catching an average-sized fish of greater length.</para> /// <para>Duration: 145s</para> /// <para></para> /// <para>Cancels current mooching opportunity.</para> /// </summary> -PatienceIi = 4106, +PatienceIi_PvE = 4106, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4179"><strong>Precision Hookset</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4179"><strong>Precision Hookset</strong></see> <i>PvE</i> (FSH) [4179] [DoL Ability] /// <para>Negates the Inefficient Hooking status. Has no effect on certain fish with a strong bite.</para> /// </summary> -PrecisionHookset = 4179, +PrecisionHookset_PvE = 4179, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4238"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4238"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break] /// <para></para> /// </summary> -BigShot = 4238, +BigShot_PvE = 4238, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4239"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4239"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break] /// <para></para> /// </summary> -Desperado = 4239, +Desperado_PvE = 4239, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4240"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4240"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break] /// <para></para> /// </summary> -LandWaker = 4240, +LandWaker_PvE = 4240, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4241"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4241"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break] /// <para></para> /// </summary> -DarkForce = 4241, +DarkForce_PvE = 4241, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4242"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4242"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break] /// <para></para> /// </summary> -DragonsongDive = 4242, +DragonsongDive_PvE = 4242, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4243"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4243"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break] /// <para></para> /// </summary> -Chimatsuri = 4243, +Chimatsuri_PvE = 4243, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4244"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4244"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break] /// <para></para> /// </summary> -SagittariusArrow = 4244, +SagittariusArrow_PvE = 4244, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4245"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4245"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break] /// <para></para> /// </summary> -SatelliteBeam = 4245, +SatelliteBeam_PvE = 4245, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4246"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4246"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break] /// <para></para> /// </summary> -Teraflare = 4246, +Teraflare_PvE = 4246, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4247"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4247"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break] /// <para></para> /// </summary> -AngelFeathers = 4247, +AngelFeathers_PvE = 4247, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4248"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4248"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break] /// <para></para> /// </summary> -AstralStasis = 4248, +AstralStasis_PvE = 4248, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4262"><strong>Form Shift</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/4262"><strong>Form Shift</strong></see> <i>PvE</i> (MNK) [4262] [Weaponskill] /// <para>Grants Formless Fist to self, allowing the execution of a weaponskill that requires a certain form, without being in that form.</para> /// <para>Duration: 30s</para> /// <para>Any additional effects associated with the executed action will also be applied.</para> /// </summary> -FormShift = 4262, +FormShift_PvE = 4262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4401"><strong>the Balance</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4401"><strong>the Balance</strong></see> <i>PvE</i> (AST) [4401] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Solar Sign when used in combat</para> @@ -19858,9 +19858,9 @@ FormShift = 4262, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheBalance = 4401, +TheBalance_PvE = 4401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4402"><strong>the Arrow</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4402"><strong>the Arrow</strong></see> <i>PvE</i> (AST) [4402] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Lunar Sign when used in combat</para> @@ -19868,9 +19868,9 @@ TheBalance = 4401, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheArrow = 4402, +TheArrow_PvE = 4402, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4403"><strong>the Spear</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4403"><strong>the Spear</strong></see> <i>PvE</i> (AST) [4403] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Celestial Sign when used in combat</para> @@ -19878,9 +19878,9 @@ TheArrow = 4402, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheSpear = 4403, +TheSpear_PvE = 4403, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4404"><strong>the Bole</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4404"><strong>the Bole</strong></see> <i>PvE</i> (AST) [4404] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Solar Sign when used in combat</para> @@ -19888,9 +19888,9 @@ TheSpear = 4403, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheBole = 4404, +TheBole_PvE = 4404, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4405"><strong>the Ewer</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4405"><strong>the Ewer</strong></see> <i>PvE</i> (AST) [4405] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Lunar Sign when used in combat</para> @@ -19898,9 +19898,9 @@ TheBole = 4404, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheEwer = 4405, +TheEwer_PvE = 4405, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4406"><strong>the Spire</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/4406"><strong>the Spire</strong></see> <i>PvE</i> (AST) [4406] [Ability] /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants a Celestial Sign when used in combat</para> @@ -19908,388 +19908,388 @@ TheEwer = 4405, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheSpire = 4406, +TheSpire_PvE = 4406, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4574"><strong>Manipulation</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/4574"><strong>Manipulation</strong></see> <i>PvE</i> (CRP) [4574] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation = 4574, +Manipulation_PvE = 4574, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4575"><strong>Manipulation</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/4575"><strong>Manipulation</strong></see> <i>PvE</i> (BSM) [4575] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4575 = 4575, +Manipulation_PvE_4575 = 4575, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4576"><strong>Manipulation</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/4576"><strong>Manipulation</strong></see> <i>PvE</i> (ARM) [4576] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4576 = 4576, +Manipulation_PvE_4576 = 4576, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4577"><strong>Manipulation</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/4577"><strong>Manipulation</strong></see> <i>PvE</i> (GSM) [4577] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4577 = 4577, +Manipulation_PvE_4577 = 4577, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4578"><strong>Manipulation</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/4578"><strong>Manipulation</strong></see> <i>PvE</i> (LTW) [4578] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4578 = 4578, +Manipulation_PvE_4578 = 4578, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4579"><strong>Manipulation</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/4579"><strong>Manipulation</strong></see> <i>PvE</i> (WVR) [4579] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4579 = 4579, +Manipulation_PvE_4579 = 4579, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4580"><strong>Manipulation</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/4580"><strong>Manipulation</strong></see> <i>PvE</i> (ALC) [4580] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4580 = 4580, +Manipulation_PvE_4580 = 4580, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4581"><strong>Manipulation</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/4581"><strong>Manipulation</strong></see> <i>PvE</i> (CUL) [4581] [DoH Ability] /// <para>Restores 5 points of durability after each step for the next eight steps.</para> /// </summary> -Manipulation_4581 = 4581, +Manipulation_PvE_4581 = 4581, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4583"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4583"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event] /// <para>Commands your griffin to flap its wings.</para> /// </summary> -Buffet = 4583, +Buffet_PvE = 4583, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4584"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4584"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount] /// <para>Commands your griffin to flap its wings.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Buffet_4584 = 4584, +Buffet_PvE_4584 = 4584, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4585"><strong>Trample</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4585"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event] /// <para>Commands your marid to stomp the earth.</para> /// </summary> -Trample = 4585, +Trample_PvE = 4585, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4586"><strong>Trample</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4586"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount] /// <para>Commands your marid to stomp the earth.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Trample_4586 = 4586, +Trample_PvE_4586 = 4586, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4589"><strong>The Giving Land</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/4589"><strong>The Giving Land</strong></see> <i>PvE</i> (MIN) [4589] [DoL Ability] /// <para>Increases elemental shard, crystal, and cluster yields by a random amount.</para> /// <para>Effect can be stacked with The Twelve's Bounty.</para> /// <para>Cannot be executed if the gathering node does not yield shards, crystals, or clusters.</para> /// </summary> -TheGivingLand = 4589, +TheGivingLand_PvE = 4589, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4590"><strong>The Giving Land</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/4590"><strong>The Giving Land</strong></see> <i>PvE</i> (BTN) [4590] [DoL Ability] /// <para>Increases elemental shard, crystal, and cluster yields by a random amount.</para> /// <para>Effect can be stacked with The Twelve's Bounty.</para> /// <para>Cannot be executed if the gathering node does not yield shards, crystals, or clusters.</para> /// </summary> -TheGivingLand_4590 = 4590, +TheGivingLand_PvE_4590 = 4590, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4592"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4592"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount] /// <para>Casts a minor spell to prevent curses of transfiguration.</para> /// <para>※Has no effect in battle.</para> /// </summary> -SilencingCant = 4592, +SilencingCant_PvE = 4592, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4595"><strong>Surface Slap</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4595"><strong>Surface Slap</strong></see> <i>PvE</i> (FSH) [4595] [DoL Ability] /// <para>Prevents hooking the same fish you just caught. Has no effect on some fish.</para> /// <para>Duration: 15s</para> /// <para>Effect ends after hooking a fish. Cancels current mooching opportunity.</para> /// <para>Overwrites the effect of Identical Cast upon execution.</para> /// </summary> -SurfaceSlap = 4595, +SurfaceSlap_PvE = 4595, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4596"><strong>Identical Cast</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/4596"><strong>Identical Cast</strong></see> <i>PvE</i> (FSH) [4596] [DoL Ability] /// <para>Ensures you hook the same fish you previously caught. Has no effect on some fish.</para> /// <para>Duration: 15s</para> /// <para>Effect ends after hooking a fish, and cannot be used for consecutive casts. Cancels current mooching opportunity.</para> /// <para>Effect is canceled if the same fish cannot be caught at your current fishing location.</para> /// <para>Overwrites the effect of Surface Slap upon execution.</para> /// </summary> -IdenticalCast = 4596, +IdenticalCast_PvE = 4596, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4631"><strong>Waste Not</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/4631"><strong>Waste Not</strong></see> <i>PvE</i> (CRP) [4631] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot = 4631, +WasteNot_PvE = 4631, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4632"><strong>Waste Not</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/4632"><strong>Waste Not</strong></see> <i>PvE</i> (BSM) [4632] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4632 = 4632, +WasteNot_PvE_4632 = 4632, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4633"><strong>Waste Not</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/4633"><strong>Waste Not</strong></see> <i>PvE</i> (ARM) [4633] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4633 = 4633, +WasteNot_PvE_4633 = 4633, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4634"><strong>Waste Not</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/4634"><strong>Waste Not</strong></see> <i>PvE</i> (GSM) [4634] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4634 = 4634, +WasteNot_PvE_4634 = 4634, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4635"><strong>Waste Not</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/4635"><strong>Waste Not</strong></see> <i>PvE</i> (LTW) [4635] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4635 = 4635, +WasteNot_PvE_4635 = 4635, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4636"><strong>Waste Not</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/4636"><strong>Waste Not</strong></see> <i>PvE</i> (WVR) [4636] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4636 = 4636, +WasteNot_PvE_4636 = 4636, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4637"><strong>Waste Not</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/4637"><strong>Waste Not</strong></see> <i>PvE</i> (ALC) [4637] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4637 = 4637, +WasteNot_PvE_4637 = 4637, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4638"><strong>Waste Not</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/4638"><strong>Waste Not</strong></see> <i>PvE</i> (CUL) [4638] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next four steps.</para> /// </summary> -WasteNot_4638 = 4638, +WasteNot_PvE_4638 = 4638, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4639"><strong>Waste Not II</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/4639"><strong>Waste Not II</strong></see> <i>PvE</i> (CRP) [4639] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi = 4639, +WasteNotIi_PvE = 4639, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4640"><strong>Waste Not II</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/4640"><strong>Waste Not II</strong></see> <i>PvE</i> (BSM) [4640] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_4640 = 4640, +WasteNotIi_PvE_4640 = 4640, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4641"><strong>Waste Not II</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/4641"><strong>Waste Not II</strong></see> <i>PvE</i> (ARM) [4641] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_4641 = 4641, +WasteNotIi_PvE_4641 = 4641, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4642"><strong>Waste Not II</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/4642"><strong>Waste Not II</strong></see> <i>PvE</i> (GSM) [4642] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_4642 = 4642, +WasteNotIi_PvE_4642 = 4642, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4643"><strong>Waste Not II</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/4643"><strong>Waste Not II</strong></see> <i>PvE</i> (LTW) [4643] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_4643 = 4643, +WasteNotIi_PvE_4643 = 4643, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4644"><strong>Waste Not II</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/4644"><strong>Waste Not II</strong></see> <i>PvE</i> (WVR) [4644] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_4644 = 4644, +WasteNotIi_PvE_4644 = 4644, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4800"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4800"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount] /// <para>Initiate self-detonation.</para> /// </summary> -Selfdetonate_4800 = 4800, +Selfdetonate_PvE_4800 = 4800, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4913"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4913"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount] /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para> /// </summary> -Heavydoom_4913 = 4913, +Heavydoom_PvE_4913 = 4913, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4914"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4914"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount] /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para> /// </summary> -Cracklyplume_4914 = 4914, +Cracklyplume_PvE_4914 = 4914, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4915"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4915"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount] /// <para>Fires a round of armor-piercing ammunition.</para> /// </summary> -Meltyspume_4915 = 4915, +Meltyspume_PvE_4915 = 4915, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4916"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4916"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount] /// <para>Activates electromagnets capable of drawing in a target.</para> /// </summary> -Stickyloom_4916 = 4916, +Stickyloom_PvE_4916 = 4916, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4917"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4917"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount] /// <para>Saps a target of its electrical charge.</para> /// </summary> -Recharge_4917 = 4917, +Recharge_PvE_4917 = 4917, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4930"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4930"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event] /// <para>Casts a minor spell to prevent curses of transfiguration.</para> /// </summary> -SilencingCant_4930 = 4930, +SilencingCant_PvE_4930 = 4930, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4931"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4931"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event] /// <para>Fills lungs with air then releases it in a single powerful gust.</para> /// </summary> -Buffet_4931 = 4931, +Buffet_PvE_4931 = 4931, /// <summary> -/// <see href="https://garlandtools.org/db/#action/4976"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/4976"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount] /// <para>Do a barrel roll!</para> /// <para>※Has no effect in battle.</para> /// </summary> -AirCombatManeuver = 4976, +AirCombatManeuver_PvE = 4976, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5097"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5097"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event] /// <para></para> /// </summary> -KeyItem_5097 = 5097, +KeyItem_PvE_5097 = 5097, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5136"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5136"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item] /// <para></para> /// </summary> -StarryHeavens = 5136, +StarryHeavens_PvE = 5136, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5475"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5475"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special] /// <para></para> /// </summary> -Browbeat = 5475, +Browbeat_PvE = 5475, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5476"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5476"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special] /// <para></para> /// </summary> -Apothecary = 5476, +Apothecary_PvE = 5476, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5477"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5477"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special] /// <para></para> /// </summary> -WingCutter = 5477, +WingCutter_PvE = 5477, /// <summary> -/// <see href="https://garlandtools.org/db/#action/5872"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/5872"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event] /// <para>Evenly distributes the Vath solution in a fine mist.</para> /// </summary> -Fumigate = 5872, +Fumigate_PvE = 5872, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6143"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6143"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event] /// <para>Sprays tepid water over target.</para> /// </summary> -Saturate_6143 = 6143, +Saturate_PvE_6143 = 6143, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6259"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6259"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] [] /// <para></para> /// </summary> -PomanderOfSafety = 6259, +PomanderOfSafety_PvE = 6259, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6260"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6260"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] [] /// <para></para> /// </summary> -PomanderOfSight = 6260, +PomanderOfSight_PvE = 6260, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6262"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6262"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] [] /// <para></para> /// </summary> -PomanderOfStrength = 6262, +PomanderOfStrength_PvE = 6262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6263"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6263"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] [] /// <para></para> /// </summary> -PomanderOfSteel = 6263, +PomanderOfSteel_PvE = 6263, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6264"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6264"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] [] /// <para></para> /// </summary> -PomanderOfAffluence = 6264, +PomanderOfAffluence_PvE = 6264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6265"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6265"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] [] /// <para></para> /// </summary> -PomanderOfFlight = 6265, +PomanderOfFlight_PvE = 6265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6266"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6266"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] [] /// <para></para> /// </summary> -PomanderOfAlteration = 6266, +PomanderOfAlteration_PvE = 6266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6268"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6268"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] [] /// <para></para> /// </summary> -PomanderOfFortune = 6268, +PomanderOfFortune_PvE = 6268, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6269"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6269"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] [] /// <para></para> /// </summary> -PomanderOfWitching = 6269, +PomanderOfWitching_PvE = 6269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6270"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6270"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] [] /// <para></para> /// </summary> -PomanderOfSerenity = 6270, +PomanderOfSerenity_PvE = 6270, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6271"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6271"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] [] /// <para></para> /// </summary> -PomanderOfRage = 6271, +PomanderOfRage_PvE = 6271, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6272"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6272"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] [] /// <para></para> /// </summary> -PomanderOfLust = 6272, +PomanderOfLust_PvE = 6272, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6273"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6273"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special] /// <para>Deals damage to a target.</para> /// </summary> -Pummel = 6273, +Pummel_PvE = 6273, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6274"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6274"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell] /// <para>Deals damage to nearby enemies while increasing vulnerability.</para> /// </summary> -VoidFireIi = 6274, +VoidFireIi_PvE = 6274, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6293"><strong>Roar</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6293"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event] /// <para>Emits a deafening roar charged with arcane dragon magicks.</para> /// </summary> -Roar = 6293, +Roar_PvE = 6293, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6294"><strong>Seed</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6294"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event] /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para> /// </summary> -Seed = 6294, +Seed_PvE = 6294, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6295"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6295"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount] /// <para>Fills lungs with air then releases it in a single powerful gust.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Buffet_6295 = 6295, +Buffet_PvE_6295 = 6295, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6296"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6296"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount] /// <para>Evenly distributes Vath solution in a fine mist.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Fumigate_6296 = 6296, +Fumigate_PvE_6296 = 6296, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6297"><strong>Seed</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6297"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount] /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Seed_6297 = 6297, +Seed_PvE_6297 = 6297, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6324"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6324"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount] /// <para>Dance! Dance I say!</para> /// <para>※Has no effect in battle.</para> /// </summary> -MogatoryMogDance = 6324, +MogatoryMogDance_PvE = 6324, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6868"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6868"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] [] /// <para></para> /// </summary> -PomanderOfRaising = 6868, +PomanderOfRaising_PvE = 6868, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6869"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6869"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] [] /// <para></para> /// </summary> -PomanderOfResolution = 6869, +PomanderOfResolution_PvE = 6869, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6870"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6870"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] [] /// <para></para> /// </summary> -PomanderOfIntuition = 6870, +PomanderOfIntuition_PvE = 6870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/6871"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/6871"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special] /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para> /// </summary> -HeavenlyJudge = 6871, +HeavenlyJudge_PvE = 6871, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7381"><strong>Total Eclipse</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/7381"><strong>Total Eclipse</strong></see> <i>PvE</i> (GLA PLD) [7381] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// </summary> -TotalEclipse = 7381, +TotalEclipse_PvE = 7381, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7382"><strong>Intervention</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/7382"><strong>Intervention</strong></see> <i>PvE</i> (PLD) [7382] [Ability] /// <para>Reduces target party member's damage taken by 10%.</para> /// <para>Duration: s</para> /// <para>Additional Effect: Increases damage reduction by an additional 10% if Rampart or Sentinel are active</para> @@ -20302,18 +20302,18 @@ TotalEclipse = 7381, /// <para>Duration: 12s</para> /// <para>Oath Gauge Cost: 50</para> /// </summary> -Intervention = 7382, +Intervention_PvE = 7382, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7383"><strong>Requiescat</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/7383"><strong>Requiescat</strong></see> <i>PvE</i> (PLD) [7383] [Ability] /// <para>Deals unaspected damage with a potency of 320.</para> /// <para>Additional Effect: Grants 4 stacks of Requiescat</para> /// <para>Requiescat Effect: Increases the potency of Holy Spirit, Holy Circle, and all Confiteor combo actionsHoly Spirit, Holy Circle, and ConfiteorHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit, Holy Circle, and ConfiteorHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit and Holy CircleHoly SpiritHoly Spirit and spells will require no cast time</para> /// <para>Additional Effect: Grants Confiteor Ready</para> /// <para>Duration: 30s</para> /// </summary> -Requiescat = 7383, +Requiescat_PvE = 7383, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7384"><strong>Holy Spirit</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/7384"><strong>Holy Spirit</strong></see> <i>PvE</i> (PLD) [7384] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Divine Might Potency: </para> /// <para>Requiescat Potency: </para> @@ -20321,30 +20321,30 @@ Requiescat = 7383, /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 400</para> /// </summary> -HolySpirit = 7384, +HolySpirit_PvE = 7384, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7385"><strong>Passage of Arms</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/7385"><strong>Passage of Arms</strong></see> <i>PvE</i> (PLD) [7385] [Ability] /// <para>Increases block rate to 100% and creates a designated area in a cone behind you in which party members will only suffer 85% of all damage inflicted.</para> /// <para>Duration: 18s</para> /// <para>Effect ends upon using another action or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -PassageOfArms = 7385, +PassageOfArms_PvE = 7385, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7386"><strong>Onslaught</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/7386"><strong>Onslaught</strong></see> <i>PvE</i> (WAR) [7386] [Ability] /// <para>Rushes target and delivers an attack with a potency of 150.</para> /// <para>Maximum Charges: </para> /// <para>Cannot be executed while bound.</para> /// </summary> -Onslaught = 7386, +Onslaught_PvE = 7386, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7387"><strong>Upheaval</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/7387"><strong>Upheaval</strong></see> <i>PvE</i> (WAR) [7387] [Ability] /// <para>Delivers an attack with a potency of 400.</para> /// <para>Shares a recast timer with Orogeny.</para> /// </summary> -Upheaval = 7387, +Upheaval_PvE = 7387, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7388"><strong>Shake It Off</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/7388"><strong>Shake It Off</strong></see> <i>PvE</i> (WAR) [7388] [Ability] /// <para>Creates a barrier around self and all nearby party members that absorbs damage totaling 15% of maximum HP.</para> /// <para>Dispels Thrill of Battle, Vengeance, and BloodwhettingRaw IntuitionRaw Intuition, increasing damage absorbed by 2% for each effect removed. </para> /// <para>Duration: 30s</para> @@ -20354,9 +20354,9 @@ Upheaval = 7387, /// <para>Additional Effect: Restores target's HP</para> /// <para>Cure Potency: 300</para> /// </summary> -ShakeItOff = 7388, +ShakeItOff_PvE = 7388, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7389"><strong>Inner Release</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/7389"><strong>Inner Release</strong></see> <i>PvE</i> (WAR) [7389] [Ability] /// <para>Grants 3 stacks of Inner Release, each stack allowing the use of Fell Cleave or Decimate without cost and guaranteeing they are critical and direct hits.</para> /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Additional Effect: Grants Inner Strength, nullifying Stun, Sleep, Bind, Heavy, and most knockback and draw-in effects</para> @@ -20365,35 +20365,35 @@ ShakeItOff = 7388, /// <para>Additional Effect: Grants Primal Rend Ready</para> /// <para>Duration: 30s</para> /// </summary> -InnerRelease = 7389, +InnerRelease_PvE = 7389, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7390"><strong>Delirium</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/7390"><strong>Delirium</strong></see> <i>PvE</i> (DRK) [7390] [Ability] /// <para>Grants 3 stacks of Delirium, each stack allowing the execution of Quietus or Bloodspiller without Blackblood cost, restoring MP when landing either weaponskill.</para> /// <para>Duration: 15s</para> /// </summary> -Delirium = 7390, +Delirium_PvE = 7390, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7391"><strong>Quietus</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/7391"><strong>Quietus</strong></see> <i>PvE</i> (DRK) [7391] [Weaponskill] /// <para>Delivers an attack with a potency of 200 to all nearby enemies.</para> /// <para>Blood Gauge Cost: 50</para> /// </summary> -Quietus = 7391, +Quietus_PvE = 7391, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7392"><strong>Bloodspiller</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/7392"><strong>Bloodspiller</strong></see> <i>PvE</i> (DRK) [7392] [Weaponskill] /// <para>Delivers an attack with a potency of 500.</para> /// <para>Blood Gauge Cost: 50</para> /// </summary> -Bloodspiller = 7392, +Bloodspiller_PvE = 7392, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7393"><strong>The Blackest Night</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/7393"><strong>The Blackest Night</strong></see> <i>PvE</i> (DRK) [7393] [Ability] /// <para>Creates a barrier around self or target party member that absorbs damage totaling 25% of target's maximum HP.</para> /// <para>Duration: 7s</para> /// <para>Grants Dark Arts when barrier is completely absorbed.</para> /// <para>Dark Arts Effect: Consume Dark Arts instead of MP to execute Edge of Shadow or Flood of ShadowEdge of Darkness or Flood of DarknessEdge of Darkness or Flood of Darkness</para> /// </summary> -TheBlackestNight = 7393, +TheBlackestNight_PvE = 7393, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7394"><strong>Riddle of Earth</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/7394"><strong>Riddle of Earth</strong></see> <i>PvE</i> (MNK) [7394] [Ability] /// <para>Reduces damage taken by 20%.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Grants Earth's Reply upon taking damage</para> @@ -20401,24 +20401,24 @@ TheBlackestNight = 7393, /// <para>Cure Potency: 100</para> /// <para>Duration: 15s</para> /// </summary> -RiddleOfEarth = 7394, +RiddleOfEarth_PvE = 7394, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7395"><strong>Riddle of Fire</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/7395"><strong>Riddle of Fire</strong></see> <i>PvE</i> (MNK) [7395] [Ability] /// <para>Increases damage dealt by 15%.</para> /// <para>Duration: 20s</para> /// </summary> -RiddleOfFire = 7395, +RiddleOfFire_PvE = 7395, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7396"><strong>Brotherhood</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/7396"><strong>Brotherhood</strong></see> <i>PvE</i> (MNK) [7396] [Ability] /// <para>Grants Brotherhood and Meditative Brotherhood to self and all nearby party members.</para> /// <para>Brotherhood Effect: Increases damage dealt by 5%</para> /// <para>Meditative Brotherhood Effect: 20% chance you open a chakra when party members under this effect successfully land a weaponskill or cast a spell</para> /// <para>Chance is 100% when you successfully land a weaponskill or cast a spell while under the effect of Meditative Brotherhood.20% chance you open a chakra when you or party members under this effect successfully land a weaponskill or cast a spell20% chance you open a chakra when you or party members under this effect successfully land a weaponskill or cast a spell</para> /// <para>Duration: 15s</para> /// </summary> -Brotherhood = 7396, +Brotherhood_PvE = 7396, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7397"><strong>Sonic Thrust</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/7397"><strong>Sonic Thrust</strong></see> <i>PvE</i> (DRG) [7397] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para> /// <para>Combo Action: Doom Spike</para> /// <para>Combo Potency: 120</para> @@ -20426,53 +20426,53 @@ Brotherhood = 7396, /// <para>Power Surge Effect: Increases damage dealt by 10%</para> /// <para>Duration: 30s</para> /// </summary> -SonicThrust = 7397, +SonicThrust_PvE = 7397, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7398"><strong>Dragon Sight</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/7398"><strong>Dragon Sight</strong></see> <i>PvE</i> (DRG) [7398] [Ability] /// <para>Grants Right Eye to self, increasing damage dealt by 10% and nullifying all action direction requirements. Also grants target party member Left Eye, increasing damage dealt by 5%.</para> /// <para>Duration: 20s</para> /// </summary> -DragonSight = 7398, +DragonSight_PvE = 7398, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7399"><strong>Mirage Dive</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/7399"><strong>Mirage Dive</strong></see> <i>PvE</i> (DRG) [7399] [Ability] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Additional Effect: Strengthens the gaze of your Dragon Gauge by 1</para> /// <para>Can only be executed when Dive Ready.</para> /// </summary> -MirageDive = 7399, +MirageDive_PvE = 7399, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7400"><strong>Nastrond</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/7400"><strong>Nastrond</strong></see> <i>PvE</i> (DRG) [7400] [Ability] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of for the first enemy, and 30% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Life of the Dragon.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Nastrond = 7400, +Nastrond_PvE = 7400, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7401"><strong>Hellfrog Medium</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/7401"><strong>Hellfrog Medium</strong></see> <i>PvE</i> (NIN) [7401] [Ability] /// <para>Deals fire damage with a potency of 160 to target and all enemies nearby it.</para> /// <para>Ninki Gauge Cost: 50</para> /// <para>Shares a recast timer with Bhavacakra.</para> /// </summary> -HellfrogMedium = 7401, +HellfrogMedium_PvE = 7401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7402"><strong>Bhavacakra</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/7402"><strong>Bhavacakra</strong></see> <i>PvE</i> (NIN) [7402] [Ability] /// <para>Deals unaspected damage with a potency of 350.</para> /// <para>Meisui Bonus: Potency is increased to 500 when under the effect of Meisui</para> /// <para>Ninki Gauge Cost: 50</para> /// <para>Shares a recast timer with Hellfrog Medium.</para> /// </summary> -Bhavacakra = 7402, +Bhavacakra_PvE = 7402, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7403"><strong>Ten Chi Jin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/7403"><strong>Ten Chi Jin</strong></see> <i>PvE</i> (NIN) [7403] [Ability] /// <para>Temporarily converts each of the three mudra into a ninjutsu action. Executing one of these actions will convert the remaining mudra into different ninjutsu actions until all three have been executed or the Ten Chi Jin effect expires.</para> /// <para>Duration: 6s</para> /// <para>Only ninjutsu available while active. The same ninjutsu cannot be executed twice.</para> /// <para>Cannot be executed while under the effect of Kassatsu. Effect ends upon moving.</para> /// </summary> -TenChiJin = 7403, +TenChiJin_PvE = 7403, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7404"><strong>Pitch Perfect</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7404"><strong>Pitch Perfect</strong></see> <i>PvE</i> (BRD) [7404] [Ability] /// <para>Delivers an attack to the target. Potency varies with number of Repertoire stacks.</para> /// <para>1 Repertoire Stack: 100</para> /// <para>2 Repertoire Stacks: 220</para> @@ -20481,16 +20481,16 @@ TenChiJin = 7403, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PitchPerfect = 7404, +PitchPerfect_PvE = 7404, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7405"><strong>Troubadour</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7405"><strong>Troubadour</strong></see> <i>PvE</i> (BRD) [7405] [Ability] /// <para>Reduces damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para>Effect cannot be stacked with machinist's Tactician or dancer's Shield Samba.</para> /// </summary> -Troubadour = 7405, +Troubadour_PvE = 7405, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7406"><strong>Caustic Bite</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7406"><strong>Caustic Bite</strong></see> <i>PvE</i> (BRD) [7406] [Weaponskill] /// <para>Delivers an attack with a potency of 150.</para> /// <para>Additional Effect: Poison</para> /// <para>Potency: 20</para> @@ -20498,9 +20498,9 @@ Troubadour = 7405, /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -CausticBite = 7406, +CausticBite_PvE = 7406, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7407"><strong>Stormbite</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7407"><strong>Stormbite</strong></see> <i>PvE</i> (BRD) [7407] [Weaponskill] /// <para>Deals wind damage with a potency of 100.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 25</para> @@ -20508,76 +20508,76 @@ CausticBite = 7406, /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -Stormbite = 7407, +Stormbite_PvE = 7407, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7408"><strong>Nature's Minne</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7408"><strong>Nature's Minne</strong></see> <i>PvE</i> (BRD) [7408] [Ability] /// <para>Increases HP recovery via healing actions by 15% for self and nearby party members.</para> /// <para>Duration: 15s</para> /// </summary> -NaturesMinne = 7408, +NaturesMinne_PvE = 7408, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7409"><strong>Refulgent Arrow</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/7409"><strong>Refulgent Arrow</strong></see> <i>PvE</i> (BRD) [7409] [Weaponskill] /// <para>Delivers an attack with a potency of 280.</para> /// <para>Can only be executed when Straight Shot Ready.</para> /// </summary> -RefulgentArrow = 7409, +RefulgentArrow_PvE = 7409, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7410"><strong>Heat Blast</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7410"><strong>Heat Blast</strong></see> <i>PvE</i> (MCH) [7410] [Weaponskill] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Additional Effect: Reduces the recast time of both Gauss Round and Ricochet by 15s</para> /// <para>Can only be executed when firearm is Overheated.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -HeatBlast = 7410, +HeatBlast_PvE = 7410, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7411"><strong>Heated Split Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7411"><strong>Heated Split Shot</strong></see> <i>PvE</i> (MCH) [7411] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Increases Heat Gauge by 5</para> /// </summary> -HeatedSplitShot = 7411, +HeatedSplitShot_PvE = 7411, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7412"><strong>Heated Slug Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7412"><strong>Heated Slug Shot</strong></see> <i>PvE</i> (MCH) [7412] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Heated Split Shot</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Heat Gauge by 5</para> /// </summary> -HeatedSlugShot = 7412, +HeatedSlugShot_PvE = 7412, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7413"><strong>Heated Clean Shot</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7413"><strong>Heated Clean Shot</strong></see> <i>PvE</i> (MCH) [7413] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Heated Slug Shot</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Heat Gauge by 5</para> /// <para>Combo Bonus: Increases Battery Gauge by 10</para> /// </summary> -HeatedCleanShot = 7413, +HeatedCleanShot_PvE = 7413, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7414"><strong>Barrel Stabilizer</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7414"><strong>Barrel Stabilizer</strong></see> <i>PvE</i> (MCH) [7414] [Ability] /// <para>Increases Heat Gauge by 50.</para> /// <para>Can only be executed while in combat.</para> /// </summary> -BarrelStabilizer = 7414, +BarrelStabilizer_PvE = 7414, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7415"><strong>Rook Overdrive</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7415"><strong>Rook Overdrive</strong></see> <i>PvE</i> (MCH) [7415] [Ability] /// <para>Orders the rook autoturret to use Rook Overload.</para> /// <para>Rook Overload Potency: 160</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 320.</para> /// <para>The rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.</para> /// <para>Shares a recast timer with Rook Autoturret.</para> /// </summary> -RookOverdrive = 7415, +RookOverdrive_PvE = 7415, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7416"><strong>Rook Overload</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7416"><strong>Rook Overload</strong></see> <i>PvE</i> (MCH) [7416] [Ability] /// <para>Delivers an attack with a potency of 160.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 320.</para> /// <para>The rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RookOverload = 7416, +RookOverload_PvE = 7416, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7418"><strong>Flamethrower</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/7418"><strong>Flamethrower</strong></see> <i>PvE</i> (MCH) [7418] [Ability] /// <para>Delivers damage over time to all enemies in a cone before you.</para> /// <para>Potency: 80</para> /// <para>Duration: 10s</para> @@ -20585,15 +20585,15 @@ RookOverload = 7416, /// <para>Cancels auto-attack upon execution.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// </summary> -Flamethrower = 7418, +Flamethrower_PvE = 7418, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7419"><strong>Between the Lines</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/7419"><strong>Between the Lines</strong></see> <i>PvE</i> (BLM) [7419] [Ability] /// <para>Move instantly to Ley Lines drawn by you.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -BetweenTheLines = 7419, +BetweenTheLines_PvE = 7419, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7420"><strong>Thunder IV</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/7420"><strong>Thunder IV</strong></see> <i>PvE</i> (BLM) [7420] [Spell] /// <para>Deals lightning damage with a potency of 50 to target and all enemies nearby it.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 20</para> @@ -20602,28 +20602,28 @@ BetweenTheLines = 7419, /// <para>Duration: 40s</para> /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para> /// </summary> -ThunderIv = 7420, +ThunderIv_PvE = 7420, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7421"><strong>Triplecast</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/7421"><strong>Triplecast</strong></see> <i>PvE</i> (BLM) [7421] [Ability] /// <para>The next three spells will require no cast time.</para> /// <para>Duration: 15s</para> /// <para>Maximum Charges: 2</para> /// </summary> -Triplecast = 7421, +Triplecast_PvE = 7421, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7422"><strong>Foul</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/7422"><strong>Foul</strong></see> <i>PvE</i> (BLM) [7422] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Polyglot Cost: 1</para> /// </summary> -Foul = 7422, +Foul_PvE = 7422, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7426"><strong>Ruin IV</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/7426"><strong>Ruin IV</strong></see> <i>PvE</i> (SMN) [7426] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Further Ruin.</para> /// </summary> -RuinIv = 7426, +RuinIv_PvE = 7426, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7427"><strong>Summon Bahamut</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/7427"><strong>Summon Bahamut</strong></see> <i>PvE</i> (SMN) [7427] [Spell] /// <para>Enters Dreadwyrm Trance and summons Demi-Bahamut to fight your target.</para> /// <para>Demi-Bahamut will execute Wyrmwave automatically on the targets attacked by you after summoning.</para> /// <para>Increases enmity in target when Demi-Bahamut is summoned.</para> @@ -20633,70 +20633,70 @@ RuinIv = 7426, /// <para>Can only be executed while Carbuncle is summoned.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -SummonBahamut = 7427, +SummonBahamut_PvE = 7427, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7428"><strong>Wyrmwave</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/7428"><strong>Wyrmwave</strong></see> <i>PvE</i> (SMN) [7428] [Spell] /// <para>Deals unaspected damage with a potency of 150.</para> /// <para>Will only execute while Demi-Bahamut is summoned.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Wyrmwave = 7428, +Wyrmwave_PvE = 7428, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7429"><strong>Enkindle Bahamut</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/7429"><strong>Enkindle Bahamut</strong></see> <i>PvE</i> (SMN) [7429] [Ability] /// <para>Orders Demi-Bahamut to execute Akh Morn.</para> /// <para>Akh Morn Effect: Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies</para> /// </summary> -EnkindleBahamut = 7429, +EnkindleBahamut_PvE = 7429, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7430"><strong>Thin Air</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/7430"><strong>Thin Air</strong></see> <i>PvE</i> (WHM) [7430] [Ability] /// <para>Next action is executed without MP cost.</para> /// <para>Duration: 12s</para> /// <para>Maximum Charges: 2</para> /// </summary> -ThinAir = 7430, +ThinAir_PvE = 7430, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7431"><strong>Stone IV</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/7431"><strong>Stone IV</strong></see> <i>PvE</i> (WHM) [7431] [Spell] /// <para>Deals earth damage with a potency of 260.</para> /// </summary> -StoneIv = 7431, +StoneIv_PvE = 7431, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7432"><strong>Divine Benison</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/7432"><strong>Divine Benison</strong></see> <i>PvE</i> (WHM) [7432] [Ability] /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 500 potency.</para> /// <para>Duration: 15s</para> /// <para>Maximum Charges: 2</para> /// </summary> -DivineBenison = 7432, +DivineBenison_PvE = 7432, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7433"><strong>Plenary Indulgence</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/7433"><strong>Plenary Indulgence</strong></see> <i>PvE</i> (WHM) [7433] [Ability] /// <para>Grants Confession to self and nearby party members.</para> /// <para>Upon receiving HP recovery via Medica, Medica II, Cure III, or Afflatus Rapture cast by self, Confession triggers an additional healing effect.</para> /// <para>Cure Potency: 200</para> /// <para>Duration: 10s</para> /// </summary> -PlenaryIndulgence = 7433, +PlenaryIndulgence_PvE = 7433, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7434"><strong>Excogitation</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7434"><strong>Excogitation</strong></see> <i>PvE</i> (SCH) [7434] [Ability] /// <para>Grants self or target party member the effect of Excogitation, restoring HP when member's HP falls below 50% or upon effect duration expiration.</para> /// <para>Cure Potency: 800</para> /// <para>Duration: 45s</para> /// <para>Additional Effect: Increases Faerie Gauge by 10</para> /// <para>Aetherflow Gauge Cost: 1</para> /// </summary> -Excogitation = 7434, +Excogitation_PvE = 7434, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7435"><strong>Broil II</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7435"><strong>Broil II</strong></see> <i>PvE</i> (SCH) [7435] [Spell] /// <para>Deals unaspected damage with a potency of 240.</para> /// </summary> -BroilIi = 7435, +BroilIi_PvE = 7435, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7436"><strong>Chain Stratagem</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7436"><strong>Chain Stratagem</strong></see> <i>PvE</i> (SCH) [7436] [Ability] /// <para>Increases rate at which target takes critical hits by 10%.</para> /// <para>Duration: 15s</para> /// </summary> -ChainStratagem = 7436, +ChainStratagem_PvE = 7436, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7437"><strong>Aetherpact</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7437"><strong>Aetherpact</strong></see> <i>PvE</i> (SCH) [7437] [Ability] /// <para>Orders faerie to execute Fey Union with target party member. Effect ends upon reuse.</para> /// <para>Faerie Gauge Cost: 10</para> /// <para>Fey Union Effect: Gradually restores HP of party member with which faerie has a Fey Union.</para> @@ -20704,18 +20704,18 @@ ChainStratagem = 7436, /// <para>Faerie Gauge is depleted by 10 periodically while HP is restored. Fey Union effect fades upon execution of other faerie actions or when party member moves from within 30 yalms of the faerie.</para> /// <para>The Faerie Gauge increases when a faerie or Serapha faeriea faerie is summoned and an Aetherflow action is successfully executed while in combat.</para> /// </summary> -Aetherpact = 7437, +Aetherpact_PvE = 7437, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7438"><strong>Fey Union</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7438"><strong>Fey Union</strong></see> <i>PvE</i> (SCH) [7438] [Ability] /// <para>Gradually restores HP of party member with which faerie has a Fey Union.</para> /// <para>Cure Potency: 300</para> /// <para>Faerie Gauge is depleted by 10 periodically while HP is restored. Fey Union effect fades upon execution of other faerie actions or when party member moves from within 30 yalms of the faerie.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FeyUnion = 7438, +FeyUnion_PvE = 7438, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7439"><strong>Earthly Star</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7439"><strong>Earthly Star</strong></see> <i>PvE</i> (AST) [7439] [Ability] /// <para>Deploys an Earthly Star in the designated area and grants the effect of Earthly Dominance.</para> /// <para>Duration: 10s</para> /// <para>Executing Stellar Detonation while under the effect of Earthly Dominance creates a Stellar Burst dealing unaspected damage with a potency of 205 to all nearby enemies. Also restores own HP and the HP of all nearby party members.</para> @@ -20725,46 +20725,46 @@ FeyUnion = 7438, /// <para>Waiting 10s or executing Stellar Detonation while under the effect of Giant Dominance creates a Stellar Explosion dealing unaspected damage with a potency of 310 to all nearby enemies. Also restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 720</para> /// </summary> -EarthlyStar = 7439, +EarthlyStar_PvE = 7439, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7440"><strong>Stellar Burst</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7440"><strong>Stellar Burst</strong></see> <i>PvE</i> (AST) [7440] [Ability] /// <para></para> /// </summary> -StellarBurst = 7440, +StellarBurst_PvE = 7440, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7441"><strong>Stellar Explosion</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7441"><strong>Stellar Explosion</strong></see> <i>PvE</i> (AST) [7441] [Ability] /// <para></para> /// </summary> -StellarExplosion = 7441, +StellarExplosion_PvE = 7441, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7442"><strong>Malefic III</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7442"><strong>Malefic III</strong></see> <i>PvE</i> (AST) [7442] [Spell] /// <para>Deals unaspected damage with a potency of 190.</para> /// </summary> -MaleficIii = 7442, +MaleficIii_PvE = 7442, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7443"><strong>Minor Arcana</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7443"><strong>Minor Arcana</strong></see> <i>PvE</i> (AST) [7443] [Ability] /// <para>Draws either the Lord of Crowns or the Lady of Crowns from your divining deck.</para> /// <para>Action changes to the drawn arcanum.</para> /// <para>Can only be executed while in combat.</para> /// </summary> -MinorArcana = 7443, +MinorArcana_PvE = 7443, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7444"><strong>Lord of Crowns</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7444"><strong>Lord of Crowns</strong></see> <i>PvE</i> (AST) [7444] [Ability] /// <para>Deals unaspected damage with a potency of 250 to all nearby enemies.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -LordOfCrowns = 7444, +LordOfCrowns_PvE = 7444, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7445"><strong>Lady of Crowns</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/7445"><strong>Lady of Crowns</strong></see> <i>PvE</i> (AST) [7445] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 400</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -LadyOfCrowns = 7445, +LadyOfCrowns_PvE = 7445, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7447"><strong>Thunder II</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/7447"><strong>Thunder II</strong></see> <i>PvE</i> (THM BLM) [7447] [Spell] /// <para>Deals lightning damage with a potency of 50 to target and all enemies nearby it.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 15</para> @@ -20778,23 +20778,23 @@ LadyOfCrowns = 7445, /// <para></para> /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para> /// </summary> -ThunderIi = 7447, +ThunderIi_PvE = 7447, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7449"><strong>Akh Morn</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/7449"><strong>Akh Morn</strong></see> <i>PvE</i> (SMN) [7449] [Ability] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Can only be executed while Demi-Bahamut is summoned.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AkhMorn = 7449, +AkhMorn_PvE = 7449, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7477"><strong>Hakaze</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7477"><strong>Hakaze</strong></see> <i>PvE</i> (SAM) [7477] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Increases Kenki Gauge by 5</para> /// </summary> -Hakaze = 7477, +Hakaze_PvE = 7477, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7478"><strong>Jinpu</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7478"><strong>Jinpu</strong></see> <i>PvE</i> (SAM) [7478] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Hakaze</para> /// <para>Combo Potency: </para> @@ -20803,9 +20803,9 @@ Hakaze = 7477, /// <para>Duration: 40s</para> /// <para>Combo Bonus: Increases Kenki Gauge by 5</para> /// </summary> -Jinpu = 7478, +Jinpu_PvE = 7478, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7479"><strong>Shifu</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7479"><strong>Shifu</strong></see> <i>PvE</i> (SAM) [7479] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Hakaze</para> /// <para>Combo Potency: </para> @@ -20814,9 +20814,9 @@ Jinpu = 7478, /// <para>Duration: 40s</para> /// <para>Combo Bonus: Increases Kenki Gauge by 5</para> /// </summary> -Shifu = 7479, +Shifu_PvE = 7479, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7480"><strong>Yukikaze</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7480"><strong>Yukikaze</strong></see> <i>PvE</i> (SAM) [7480] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Hakaze</para> /// <para>Combo Potency: </para> @@ -20825,9 +20825,9 @@ Shifu = 7479, /// <para>Combo Bonus: Grants Setsu</para> /// <para>Combo Bonus: Grants Setsu</para> /// </summary> -Yukikaze = 7480, +Yukikaze_PvE = 7480, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7481"><strong>Gekko</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7481"><strong>Gekko</strong></see> <i>PvE</i> (SAM) [7481] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's rear.</para> /// <para>Combo Action: Jinpu</para> @@ -20836,9 +20836,9 @@ Yukikaze = 7480, /// <para>Combo Bonus: Increases Kenki Gauge by </para> /// <para>Combo Bonus: Grants Getsu</para> /// </summary> -Gekko = 7481, +Gekko_PvE = 7481, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7482"><strong>Kasha</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7482"><strong>Kasha</strong></see> <i>PvE</i> (SAM) [7482] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para> when executed from a target's flank.</para> /// <para>Combo Action: Shifu</para> @@ -20847,15 +20847,15 @@ Gekko = 7481, /// <para>Combo Bonus: Increases Kenki Gauge by </para> /// <para>Combo Bonus: Grants Ka</para> /// </summary> -Kasha = 7482, +Kasha_PvE = 7482, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7483"><strong>Fuga</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7483"><strong>Fuga</strong></see> <i>PvE</i> (SAM) [7483] [Weaponskill] /// <para>Delivers an attack with a potency of 90 to all enemies in a cone before you.</para> /// <para>Additional Effect: Increases Kenki Gauge by 5</para> /// </summary> -Fuga = 7483, +Fuga_PvE = 7483, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7484"><strong>Mangetsu</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7484"><strong>Mangetsu</strong></see> <i>PvE</i> (SAM) [7484] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: FukoFugaFuga</para> /// <para>Combo Potency: 120</para> @@ -20867,9 +20867,9 @@ Fuga = 7483, /// <para>Combo Bonus: Grants Getsu</para> /// <para>Combo Bonus: Grants Getsu</para> /// </summary> -Mangetsu = 7484, +Mangetsu_PvE = 7484, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7485"><strong>Oka</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7485"><strong>Oka</strong></see> <i>PvE</i> (SAM) [7485] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: FukoFugaFuga</para> /// <para>Combo Potency: 120</para> @@ -20881,33 +20881,33 @@ Mangetsu = 7484, /// <para>Combo Bonus: Grants Ka</para> /// <para>Combo Bonus: Grants Ka</para> /// </summary> -Oka = 7485, +Oka_PvE = 7485, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7486"><strong>Enpi</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7486"><strong>Enpi</strong></see> <i>PvE</i> (SAM) [7486] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 100.</para> /// <para>Enhanced Enpi Bonus Potency: 260</para> /// <para>Additional Effect: Increases Kenki Gauge by </para> /// </summary> -Enpi = 7486, +Enpi_PvE = 7486, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7487"><strong>Midare Setsugekka</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7487"><strong>Midare Setsugekka</strong></see> <i>PvE</i> (SAM) [7487] [Weaponskill] /// <para>Delivers a critical hit with a potency of 640.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para> /// <para>Additional Effect: Grants a stack of Meditation, up to a maximum of 3</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -MidareSetsugekka = 7487, +MidareSetsugekka_PvE = 7487, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7488"><strong>Tenka Goken</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7488"><strong>Tenka Goken</strong></see> <i>PvE</i> (SAM) [7488] [Weaponskill] /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para> /// <para>Additional Effect: Grants a stack of Meditation, up to a maximum of 3</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TenkaGoken = 7488, +TenkaGoken_PvE = 7488, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7489"><strong>Higanbana</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7489"><strong>Higanbana</strong></see> <i>PvE</i> (SAM) [7489] [Weaponskill] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 45</para> @@ -20916,28 +20916,28 @@ TenkaGoken = 7488, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Higanbana = 7489, +Higanbana_PvE = 7489, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7490"><strong>Hissatsu: Shinten</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7490"><strong>Hissatsu: Shinten</strong></see> <i>PvE</i> (SAM) [7490] [Ability] /// <para>Delivers an attack with a potency of 250.</para> /// <para>Kenki Gauge Cost: 25</para> /// </summary> -HissatsuShinten = 7490, +HissatsuShinten_PvE = 7490, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7491"><strong>Hissatsu: Kyuten</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7491"><strong>Hissatsu: Kyuten</strong></see> <i>PvE</i> (SAM) [7491] [Ability] /// <para>Delivers an attack with a potency of 120 to all nearby enemies.</para> /// <para>Kenki Gauge Cost: 25</para> /// </summary> -HissatsuKyuten = 7491, +HissatsuKyuten_PvE = 7491, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7492"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7492"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (SAM) [7492] [Ability] /// <para>Rushes target and delivers an attack with a potency of 100.</para> /// <para>Kenki Gauge Cost: 10</para> /// <para>Cannot be executed while bound.</para> /// </summary> -HissatsuGyoten = 7492, +HissatsuGyoten_PvE = 7492, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7493"><strong>Hissatsu: Yaten</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7493"><strong>Hissatsu: Yaten</strong></see> <i>PvE</i> (SAM) [7493] [Ability] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: 10-yalm backstep</para> /// <para>Additional Effect: Grants Enhanced Enpi</para> @@ -20945,21 +20945,21 @@ HissatsuGyoten = 7492, /// <para>Kenki Gauge Cost: 10</para> /// <para>Cannot be executed while bound.</para> /// </summary> -HissatsuYaten = 7493, +HissatsuYaten_PvE = 7493, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7495"><strong>Hagakure</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7495"><strong>Hagakure</strong></see> <i>PvE</i> (SAM) [7495] [Ability] /// <para>Converts Setsu, Getsu, and Ka into Kenki. Each Sen converted increases your Kenki Gauge by 10. Can only be executed if under the effect of at least one of the three statuses.</para> /// </summary> -Hagakure = 7495, +Hagakure_PvE = 7495, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7496"><strong>Hissatsu: Guren</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7496"><strong>Hissatsu: Guren</strong></see> <i>PvE</i> (SAM) [7496] [Ability] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 500 for the first enemy, and 25% less for all remaining enemies.</para> /// <para>Kenki Gauge Cost: 25</para> /// <para>Shares a recast timer with Hissatsu: Senei.</para> /// </summary> -HissatsuGuren = 7496, +HissatsuGuren_PvE = 7496, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7497"><strong>Meditate</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7497"><strong>Meditate</strong></see> <i>PvE</i> (SAM) [7497] [Ability] /// <para>Gradually increases your Kenki Gauge.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants stacks of Meditation when used in combat, up to a maximum of 3</para> @@ -20968,142 +20968,142 @@ HissatsuGuren = 7496, /// <para>Cancels auto-attack upon execution.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// </summary> -Meditate = 7497, +Meditate_PvE = 7497, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7498"><strong>Third Eye</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7498"><strong>Third Eye</strong></see> <i>PvE</i> (SAM) [7498] [Ability] /// <para>Reduces the amount of damage taken by the next attack by 10%.</para> /// <para>Duration: 4s</para> /// <para>Additional Effect: Increases Kenki Gauge by 10 when hit</para> /// </summary> -ThirdEye = 7498, +ThirdEye_PvE = 7498, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7499"><strong>Meikyo Shisui</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7499"><strong>Meikyo Shisui</strong></see> <i>PvE</i> (SAM) [7499] [Ability] /// <para>Execute up to 3 weaponskill combos without meeting combo prerequisites. Does not affect Iaijutsu or Ogi Namikiri.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Successfully landing Gekko grants Fugetsu, and successfully landing Kasha grants Fuka</para> /// <para>Maximum Charges: 2</para> /// </summary> -MeikyoShisui = 7499, +MeikyoShisui_PvE = 7499, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7503"><strong>Jolt</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7503"><strong>Jolt</strong></see> <i>PvE</i> (RDM) [7503] [Spell] /// <para>Deals unaspected damage with a potency of 170.</para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 2</para> /// </summary> -Jolt = 7503, +Jolt_PvE = 7503, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7504"><strong>Riposte</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7504"><strong>Riposte</strong></see> <i>PvE</i> (RDM) [7504] [Weaponskill] /// <para>Delivers an attack with a potency of 130.</para> /// <para>Action upgraded to Enchanted Riposte if both Black Mana and White Mana are at 20 or more.</para> /// </summary> -Riposte = 7504, +Riposte_PvE = 7504, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7505"><strong>Verthunder</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7505"><strong>Verthunder</strong></see> <i>PvE</i> (RDM) [7505] [Spell] /// <para>Deals lightning damage with a potency of .</para> /// <para>Additional Effect: Increases Black Mana by 6</para> /// <para>Additional Effect: 50% chance of becoming Verfire Ready</para> /// <para>Duration: 30s</para> /// </summary> -Verthunder = 7505, +Verthunder_PvE = 7505, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7506"><strong>Corps-a-corps</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7506"><strong>Corps-a-corps</strong></see> <i>PvE</i> (RDM) [7506] [Ability] /// <para>Rushes target and delivers an attack with a potency of 130.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Corpsacorps = 7506, +Corpsacorps_PvE = 7506, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7507"><strong>Veraero</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7507"><strong>Veraero</strong></see> <i>PvE</i> (RDM) [7507] [Spell] /// <para>Deals wind damage with a potency of .</para> /// <para>Additional Effect: Increases White Mana by 6</para> /// <para>Additional Effect: 50% chance of becoming Verstone Ready</para> /// <para>Duration: 30s</para> /// </summary> -Veraero = 7507, +Veraero_PvE = 7507, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7509"><strong>Scatter</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7509"><strong>Scatter</strong></see> <i>PvE</i> (RDM) [7509] [Spell] /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para> /// <para>Acceleration Potency: 170</para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 3</para> /// </summary> -Scatter = 7509, +Scatter_PvE = 7509, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7510"><strong>Verfire</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7510"><strong>Verfire</strong></see> <i>PvE</i> (RDM) [7510] [Spell] /// <para>Deals fire damage with a potency of .</para> /// <para>Additional Effect: Increases Black Mana by 5</para> /// <para>Can only be executed while Verfire Ready is active.</para> /// </summary> -Verfire = 7510, +Verfire_PvE = 7510, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7511"><strong>Verstone</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7511"><strong>Verstone</strong></see> <i>PvE</i> (RDM) [7511] [Spell] /// <para>Deals earth damage with a potency of .</para> /// <para>Additional Effect: Increases White Mana by 5</para> /// <para>Can only be executed while Verstone Ready is active.</para> /// </summary> -Verstone = 7511, +Verstone_PvE = 7511, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7512"><strong>Zwerchhau</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7512"><strong>Zwerchhau</strong></see> <i>PvE</i> (RDM) [7512] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Riposte or Enchanted Riposte</para> /// <para>Combo Potency: 150</para> /// <para>Action upgraded to Enchanted Zwerchhau if both Black Mana and White Mana are at 15 or more.</para> /// </summary> -Zwerchhau = 7512, +Zwerchhau_PvE = 7512, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7513"><strong>Moulinet</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7513"><strong>Moulinet</strong></see> <i>PvE</i> (RDM) [7513] [Weaponskill] /// <para>Delivers an attack with a potency of 60 to all enemies in a cone before you.</para> /// <para>Action upgraded to Enchanted Moulinet if both Black Mana and White Mana are at 20 or more.</para> /// </summary> -Moulinet = 7513, +Moulinet_PvE = 7513, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7514"><strong>Vercure</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7514"><strong>Vercure</strong></see> <i>PvE</i> (RDM) [7514] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 350</para> /// </summary> -Vercure = 7514, +Vercure_PvE = 7514, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7515"><strong>Displacement</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7515"><strong>Displacement</strong></see> <i>PvE</i> (RDM) [7515] [Ability] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: 15-yalm backstep</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// <para>Shares a recast timer with Engagement.</para> /// </summary> -Displacement = 7515, +Displacement_PvE = 7515, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7516"><strong>Redoublement</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7516"><strong>Redoublement</strong></see> <i>PvE</i> (RDM) [7516] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Zwerchhau or Enchanted Zwerchhau</para> /// <para>Combo Potency: 230</para> /// <para>Action upgraded to Enchanted Redoublement if both Black Mana and White Mana are at 15 or more.</para> /// </summary> -Redoublement = 7516, +Redoublement_PvE = 7516, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7517"><strong>Fleche</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7517"><strong>Fleche</strong></see> <i>PvE</i> (RDM) [7517] [Ability] /// <para>Delivers an attack with a potency of 460.</para> /// </summary> -Fleche = 7517, +Fleche_PvE = 7517, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7518"><strong>Acceleration</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7518"><strong>Acceleration</strong></see> <i>PvE</i> (RDM) [7518] [Ability] /// <para>Ensures the next Verthunder III, Veraero IIIVerthunder, VeraeroVerthunder, Veraero, or ImpactScatterScatter can be cast immediately.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Increases the potency of ImpactScatterScatter by 50</para> /// <para>Additional Effect: Ensures Verthunder III and Veraero IIIVerthunder and VeraeroVerthunder and Veraero trigger Verfire Ready or Verstone Ready respectively</para> /// <para>Maximum Charges: 2</para> /// </summary> -Acceleration = 7518, +Acceleration_PvE = 7518, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7519"><strong>Contre Sixte</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7519"><strong>Contre Sixte</strong></see> <i>PvE</i> (RDM) [7519] [Ability] /// <para>Delivers an attack with a potency of 380 to target and all enemies nearby it.</para> /// </summary> -ContreSixte = 7519, +ContreSixte_PvE = 7519, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7520"><strong>Embolden</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7520"><strong>Embolden</strong></see> <i>PvE</i> (RDM) [7520] [Ability] /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para> /// <para>Duration: 20s</para> /// </summary> -Embolden = 7520, +Embolden_PvE = 7520, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7521"><strong>Manafication</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7521"><strong>Manafication</strong></see> <i>PvE</i> (RDM) [7521] [Ability] /// <para>Increases both Black Mana and White Mana by 50.</para> /// <para>Additional Effect: Grants stacks of Manafication</para> /// <para>Manafication Effect: Increases magic damage dealt by 5%</para> @@ -21111,20 +21111,20 @@ Embolden = 7520, /// <para>All combos are canceled upon execution of Manafication.</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Manafication = 7521, +Manafication_PvE = 7521, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7523"><strong>Verraise</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7523"><strong>Verraise</strong></see> <i>PvE</i> (RDM) [7523] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -Verraise = 7523, +Verraise_PvE = 7523, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7524"><strong>Jolt II</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7524"><strong>Jolt II</strong></see> <i>PvE</i> (RDM) [7524] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 2</para> /// </summary> -JoltIi = 7524, +JoltIi_PvE = 7524, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7525"><strong>Verflare</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7525"><strong>Verflare</strong></see> <i>PvE</i> (RDM) [7525] [Spell] /// <para>Deals fire damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Additional Effect: Increases Black Mana by 11</para> /// <para>Additional Effect: 20% chance of becoming Verfire Ready</para> @@ -21134,9 +21134,9 @@ JoltIi = 7524, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Verflare = 7525, +Verflare_PvE = 7525, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7526"><strong>Verholy</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7526"><strong>Verholy</strong></see> <i>PvE</i> (RDM) [7526] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Additional Effect: Increases White Mana by 11</para> /// <para>Additional Effect: 20% chance of becoming Verstone Ready</para> @@ -21146,9 +21146,9 @@ Verflare = 7525, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Verholy = 7526, +Verholy_PvE = 7526, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7527"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7527"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (RDM) [7527] [Weaponskill] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Additional Effect: Grants a Mana Stack</para> /// <para>Balance Gauge Cost: 20 Black Mana</para> @@ -21156,9 +21156,9 @@ Verholy = 7526, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedRiposte = 7527, +EnchantedRiposte_PvE = 7527, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7528"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7528"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (RDM) [7528] [Weaponskill] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Combo Action: Riposte or Enchanted Riposte</para> /// <para>Combo Potency: </para> @@ -21168,9 +21168,9 @@ EnchantedRiposte = 7527, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedZwerchhau = 7528, +EnchantedZwerchhau_PvE = 7528, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7529"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7529"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (RDM) [7529] [Weaponskill] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Combo Action: Enchanted Zwerchhau</para> /// <para>Combo Potency: </para> @@ -21180,9 +21180,9 @@ EnchantedZwerchhau = 7528, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedRedoublement = 7529, +EnchantedRedoublement_PvE = 7529, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7530"><strong>Enchanted Moulinet</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/7530"><strong>Enchanted Moulinet</strong></see> <i>PvE</i> (RDM) [7530] [Weaponskill] /// <para>Deals unaspected damage with a potency of 130 to all enemies in a cone before you.</para> /// <para>Additional Effect: Grants a Mana Stack</para> /// <para>Balance Gauge Cost: 20 Black Mana</para> @@ -21190,253 +21190,253 @@ EnchantedRedoublement = 7529, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedMoulinet = 7530, +EnchantedMoulinet_PvE = 7530, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7531"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7531"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability] /// <para>Reduces damage taken by 20%.</para> /// <para>Duration: 20s</para> /// </summary> -Rampart = 7531, +Rampart_PvE = 7531, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7533"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7533"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability] /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list while gaining additional enmity.</para> /// </summary> -Provoke = 7533, +Provoke_PvE = 7533, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7535"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7535"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability] /// <para>Reduces damage dealt by nearby enemies by 10%.</para> /// <para>Duration: 10s</para> /// </summary> -Reprisal = 7535, +Reprisal_PvE = 7535, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7537"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7537"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability] /// <para>Diverts 25% of enmity to target party member.</para> /// </summary> -Shirk = 7537, +Shirk_PvE = 7537, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7538"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7538"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability] /// <para>Interrupts the use of a target's action.</para> /// </summary> -Interject = 7538, +Interject_PvE = 7538, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7540"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/7540"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability] /// <para>Stuns target.</para> /// <para>Duration: 5s</para> /// </summary> -LowBlow = 7540, +LowBlow_PvE = 7540, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7541"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/7541"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability] /// <para>Instantly restores own HP.</para> /// <para>Cure Potency: 500</para> /// </summary> -SecondWind = 7541, +SecondWind_PvE = 7541, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7542"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/7542"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability] /// <para>Converts a portion of physical damage dealt into HP.</para> /// <para>Duration: 20s</para> /// </summary> -Bloodbath = 7542, +Bloodbath_PvE = 7542, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7546"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/7546"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability] /// <para>Nullifies all action direction requirements.</para> /// <para>Duration: 10s</para> /// <para>Maximum Charges: 2</para> /// </summary> -TrueNorth = 7546, +TrueNorth_PvE = 7546, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7548"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/7548"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability] /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para> /// <para>Duration: 6s</para> /// <para>Additional Effect: Slow +20% when barrier is struck</para> /// <para>Duration: 15s</para> /// </summary> -ArmsLength = 7548, +ArmsLength_PvE = 7548, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7549"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/7549"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability] /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para> /// <para>Duration: 10s</para> /// </summary> -Feint = 7549, +Feint_PvE = 7549, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7551"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/7551"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7551] [Ability] /// <para>Interrupts the use of a target's action.</para> /// </summary> -HeadGraze = 7551, +HeadGraze_PvE = 7551, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7553"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/7553"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7553] [Ability] /// <para>Binds target.</para> /// <para>Duration: 10s</para> /// <para>Cancels auto-attack upon execution.</para> /// <para>Target unbound if damage taken.</para> /// </summary> -FootGraze = 7553, +FootGraze_PvE = 7553, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7554"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/7554"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7554] [Ability] /// <para>Afflicts target with Heavy +40%.</para> /// <para>Duration: 10s</para> /// </summary> -LegGraze = 7554, +LegGraze_PvE = 7554, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7557"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/7557"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7557] [Ability] /// <para>Increases movement speed of self and nearby party members.</para> /// <para>Duration: 30s</para> /// <para>Effect ends when enmity is generated. Has no effect in battle.</para> /// </summary> -Peloton = 7557, +Peloton_PvE = 7557, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7559"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) +/// <see href="https://garlandtools.org/db/#action/7559"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability] /// <para>Spells can be cast without interruption.</para> /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para> /// <para>Duration: 6s</para> /// </summary> -Surecast = 7559, +Surecast_PvE = 7559, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7560"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) +/// <see href="https://garlandtools.org/db/#action/7560"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability] /// <para>Lowers target's physical damage dealt by 5% and magic damage dealt by 10%.</para> /// <para>Duration: 10s</para> /// </summary> -Addle = 7560, +Addle_PvE = 7560, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7561"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) +/// <see href="https://garlandtools.org/db/#action/7561"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability] /// <para>Next spell is cast immediately.</para> /// <para>Duration: 10s</para> /// </summary> -Swiftcast = 7561, +Swiftcast_PvE = 7561, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7562"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) +/// <see href="https://garlandtools.org/db/#action/7562"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability] /// <para>Gradually restores own MP.</para> /// <para>Potency: 55</para> /// <para>Duration: 21s</para> /// </summary> -LucidDreaming = 7562, +LucidDreaming_PvE = 7562, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7568"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/7568"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell] /// <para>Removes a single detrimental effect from target.</para> /// </summary> -Esuna = 7568, +Esuna_PvE = 7568, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7571"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/7571"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability] /// <para>Instantly draws target party member to your side. Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para> /// </summary> -Rescue = 7571, +Rescue_PvE = 7571, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7599"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7599"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event] /// <para>Releases a shockingly cute chocobo chick.</para> /// </summary> -Shockobo = 7599, +Shockobo_PvE = 7599, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7600"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7600"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount] /// <para>Releases a shockingly cute chocobo chick.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Shockobo_7600 = 7600, +Shockobo_PvE_7600 = 7600, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7619"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7619"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -MagitekCannon_7619 = 7619, +MagitekCannon_PvE_7619 = 7619, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7620"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7620"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability] /// <para>Fires a short-range burst of energy in a straight line before you.</para> /// </summary> -PhotonStream_7620 = 7620, +PhotonStream_PvE_7620 = 7620, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7621"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7621"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -DiffractiveMagitekCannon = 7621, +DiffractiveMagitekCannon_PvE = 7621, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7622"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7622"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability] /// <para>Fires a concentrated burst of energy in a straight line before you.</para> /// </summary> -HighpoweredMagitekCannon = 7622, +HighpoweredMagitekCannon_PvE = 7622, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7632"><strong>Gig</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/7632"><strong>Gig</strong></see> <i>PvE</i> (FSH) [7632] [DoL Ability] /// <para>Attempts to catch a fish using your gig, increasing the wariness of others nearby.</para> /// <para>Catching more fish in a single attempt results in a smaller increase to wariness.</para> /// </summary> -Gig = 7632, +Gig_PvE = 7632, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7816"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7816"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability] /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para> /// </summary> -SmokeScreen = 7816, +SmokeScreen_PvE = 7816, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7861"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7861"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break] /// <para></para> /// </summary> -DoomOfTheLiving = 7861, +DoomOfTheLiving_PvE = 7861, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7862"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7862"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break] /// <para></para> /// </summary> -VermilionScourge = 7862, +VermilionScourge_PvE = 7862, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7863"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/7863"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability] /// <para>Stuns target.</para> /// <para>Duration: 3s</para> /// </summary> -LegSweep = 7863, +LegSweep_PvE = 7863, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7867"><strong>Iaijutsu</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/7867"><strong>Iaijutsu</strong></see> <i>PvE</i> (SAM) [7867] [Weaponskill] /// <para>Executes a weaponskill depending on current number of Sen stored in Sen Gauge.</para> /// <para>1 Sen: Higanbana</para> /// <para>2 Sen: Tenka Goken</para> /// <para>3 Sen: Midare Setsugekka</para> /// </summary> -Iaijutsu = 7867, +Iaijutsu_PvE = 7867, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7869"><strong>Dissolve Union</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/7869"><strong>Dissolve Union</strong></see> <i>PvE</i> (SCH) [7869] [Ability] /// <para>Dissolves current Fey Union.</para> /// </summary> -DissolveUnion = 7869, +DissolveUnion_PvE = 7869, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7903"><strong>Fathom</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/7903"><strong>Fathom</strong></see> <i>PvE</i> (Disciple of the Land) [7903] [Ability] /// <para>Surveys the seas to locate teeming waters. Activates automatically when class is changed to fisher.</para> /// </summary> -Fathom = 7903, +Fathom_PvE = 7903, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7904"><strong>Shark Eye</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/7904"><strong>Shark Eye</strong></see> <i>PvE</i> (Disciple of the Land) [7904] [Ability] /// <para>Surveys the seas to locate the nearest teeming waters within skill range. Can only be executed while Fathom is active.</para> /// <para>Duration: 15s</para> /// </summary> -SharkEye = 7904, +SharkEye_PvE = 7904, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7905"><strong>Shark Eye II</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/7905"><strong>Shark Eye II</strong></see> <i>PvE</i> (Disciple of the Land) [7905] [Ability] /// <para>Surveys the landscape to locate the highest-level teeming waters within skill range. Can only be executed while Fathom is active.</para> /// <para>Duration: 15s</para> /// </summary> -SharkEyeIi = 7905, +SharkEyeIi_PvE = 7905, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7906"><strong>Veteran Trade</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/7906"><strong>Veteran Trade</strong></see> <i>PvE</i> (FSH) [7906] [DoL Ability] /// <para>Prevents the same fish you just caught from appearing again. Has no effect on some fish.</para> /// </summary> -VeteranTrade = 7906, +VeteranTrade_PvE = 7906, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7909"><strong>Nature's Bounty</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/7909"><strong>Nature's Bounty</strong></see> <i>PvE</i> (FSH) [7909] [DoL Ability] /// <para>Increases the chance of landing a large-sized fish on your next spearfishing attempt.</para> /// <para>Chance of landing a large catch increases based on your perception rating.</para> /// </summary> -NaturesBounty = 7909, +NaturesBounty_PvE = 7909, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7910"><strong>Salvage</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/7910"><strong>Salvage</strong></see> <i>PvE</i> (FSH) [7910] [Ability] /// <para>Occasionally discovers treasure maps while spearfishing.</para> /// </summary> -Salvage = 7910, +Salvage_PvE = 7910, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7911"><strong>Truth of Oceans</strong></see> <i>PvE</i> (Disciple of the Land) +/// <see href="https://garlandtools.org/db/#action/7911"><strong>Truth of Oceans</strong></see> <i>PvE</i> (Disciple of the Land) [7911] [Ability] /// <para>Further surveys the seas to uncover the nearest swimming shadows within skill range.</para> /// </summary> -TruthOfOceans = 7911, +TruthOfOceans_PvE = 7911, /// <summary> -/// <see href="https://garlandtools.org/db/#action/7962"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/7962"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// <para>Additional Effect: Binds magna roader</para> /// <para>Duration: 4s</para> /// </summary> -MagitekPulse = 7962, +MagitekPulse_PvE = 7962, /// <summary> -/// <see href="https://garlandtools.org/db/#action/8324"><strong>Stellar Detonation</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/8324"><strong>Stellar Detonation</strong></see> <i>PvE</i> (AST) [8324] [Ability] /// <para>While under the effect of Earthly Dominance, detonates the currently deployed Earthly Star, creating a Stellar Burst that deals unaspected damage with a potency of 205 to all nearby enemies.</para> /// <para>Additional Effect: Restores own HP and the HP of all nearby party members</para> /// <para>Cure Potency: 540</para> @@ -21444,304 +21444,304 @@ MagitekPulse = 7962, /// <para>Additional Effect: Restores own HP and the HP of all nearby party members</para> /// <para>Cure Potency: 720</para> /// </summary> -StellarDetonation = 8324, +StellarDetonation_PvE = 8324, /// <summary> -/// <see href="https://garlandtools.org/db/#action/8517"><strong>Vril</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/8517"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability] /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para> /// </summary> -Vril = 8517, +Vril_PvE = 8517, /// <summary> -/// <see href="https://garlandtools.org/db/#action/8623"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/8623"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event] /// <para>Sprays a jet of bubbly water.</para> /// </summary> -DoubleBubble = 8623, +DoubleBubble_PvE = 8623, /// <summary> -/// <see href="https://garlandtools.org/db/#action/8624"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/8624"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability] /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para> /// </summary> -MagitekPulse_8624 = 8624, +MagitekPulse_PvE_8624 = 8624, /// <summary> -/// <see href="https://garlandtools.org/db/#action/8625"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/8625"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability] /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para> /// </summary> -MagitekThunder = 8625, +MagitekThunder_PvE = 8625, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9035"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9035"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special] /// <para>Delivers an impotent attack.</para> /// </summary> -ImpPunch_9035 = 9035, +ImpPunch_PvE_9035 = 9035, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9066"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9066"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability] /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para> /// </summary> -AntigravityGimbal = 9066, +AntigravityGimbal_PvE = 9066, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9102"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9102"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability] /// <para>Activates the instrument.</para> /// </summary> -AethericSiphon = 9102, +AethericSiphon_PvE = 9102, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9345"><strong>Vril</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9345"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability] /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para> /// </summary> -Vril_9345 = 9345, +Vril_PvE_9345 = 9345, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9483"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9483"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability] /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para> /// </summary> -AntigravityGimbal_9483 = 9483, +AntigravityGimbal_PvE_9483 = 9483, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9629"><strong>Undraw</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/9629"><strong>Undraw</strong></see> <i>PvE</i> (AST) [9629] [Ability] /// <para>Returns the currently drawn arcanum back to your deck.</para> /// </summary> -Undraw = 9629, +Undraw_PvE = 9629, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9823"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9823"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill] /// <para>Sets an enchanted trap that triggers upon contact.</para> /// </summary> -Shatterstone = 9823, +Shatterstone_PvE = 9823, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9971"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9971"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special] /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para> /// </summary> -OpticalSight = 9971, +OpticalSight_PvP = 9971, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9973"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9973"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special] /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para> /// </summary> -SpinCrusher = 9973, +SpinCrusher_PvP = 9973, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9974"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9974"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special] /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para> /// </summary> -LaserXSword = 9974, +LaserXSword_PvP = 9974, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9975"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9975"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special] /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para> /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para> /// </summary> -_3000TonzeMissile = 9975, +_3000TonzeMissile_PvP = 9975, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9977"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9977"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special] /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para> /// <para>Additional Effect: 15-yalm knockback</para> /// </summary> -SteamRelease = 9977, +SteamRelease_PvP = 9977, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9978"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9978"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special] /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para> /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para> /// <para>Potency: 10,000</para> /// <para>Duration: 12s</para> /// </summary> -Flarethrower = 9978, +Flarethrower_PvP = 9978, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9979"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9979"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special] /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 3s</para> /// </summary> -DoubleRocketPunch = 9979, +DoubleRocketPunch_PvP = 9979, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9980"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9980"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special] /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para> /// <para>Additional Effect: 30-yalm knockback</para> /// </summary> -MegaBeam = 9980, +MegaBeam_PvP = 9980, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9981"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9981"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special] /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para> /// </summary> -CeruleumRefill = 9981, +CeruleumRefill_PvP = 9981, /// <summary> -/// <see href="https://garlandtools.org/db/#action/9982"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/9982"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount] /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para> /// </summary> -Cannonfire_9982 = 9982, +Cannonfire_PvP = 9982, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10001"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10001"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break] /// <para></para> /// </summary> -Ungarmax = 10001, +Ungarmax_PvE = 10001, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10006"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10006"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability] /// <para>Scatters potentially harmful aether.</para> /// </summary> -Deflect = 10006, +Deflect_PvE = 10006, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10013"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10013"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event] /// <para>Orders the manta to draw water into its gaping maw.</para> /// </summary> -Inhale = 10013, +Inhale_PvE = 10013, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10014"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10014"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount] /// <para>Orders the manta to draw water into its gaping maw.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Inhale_10014 = 10014, +Inhale_PvE_10014 = 10014, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10019"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10019"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event] /// <para>Toss a Starburst into the air.</para> /// </summary> -Starburst = 10019, +Starburst_PvE = 10019, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10020"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10020"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount] /// <para>Toss a Starburst into the air.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Starburst_10020 = 10020, +Starburst_PvE_10020 = 10020, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10057"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10057"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special] /// <para>Exit the warmachina.</para> /// </summary> -Dismount = 10057, +Dismount_PvP = 10057, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10061"><strong>Return</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10061"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System] /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para> /// </summary> -Return_10061 = 10061, +Return_PvE_10061 = 10061, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10229"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10229"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability] /// <para>Restores a moderate amount of health.</para> /// </summary> -MegaPotion = 10229, +MegaPotion_PvE = 10229, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10262"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10262"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability] /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para> /// </summary> -RedPaint = 10262, +RedPaint_PvE = 10262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10263"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10263"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability] /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para> /// </summary> -YellowPaint = 10263, +YellowPaint_PvE = 10263, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10264"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10264"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability] /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para> /// </summary> -BlackPaint = 10264, +BlackPaint_PvE = 10264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10265"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10265"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability] /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para> /// </summary> -BluePaint = 10265, +BluePaint_PvE = 10265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10270"><strong>Snort</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10270"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount] /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para> /// </summary> -Snort = 10270, +Snort_PvE = 10270, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10401"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10401"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability] /// <para>A brush made from Alpha's feathers.</para> /// </summary> -ChocoboBrush = 10401, +ChocoboBrush_PvE = 10401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10713"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10713"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special] /// <para>Might as well use a red light to cheer on your favorite performer.</para> /// </summary> -CheerJump = 10713, +CheerJump_PvE = 10713, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10714"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10714"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special] /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para> /// </summary> -CheerWave = 10714, +CheerWave_PvE = 10714, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10715"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10715"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special] /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para> /// </summary> -CheerOn = 10715, +CheerOn_PvE = 10715, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10716"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10716"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special] /// <para>Might as well use a red light to cheer on your favorite performer.</para> /// </summary> -CheerJump_10716 = 10716, +CheerJump_PvE_10716 = 10716, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10717"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10717"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special] /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para> /// </summary> -CheerWave_10717 = 10717, +CheerWave_PvE_10717 = 10717, /// <summary> -/// <see href="https://garlandtools.org/db/#action/10718"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/10718"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special] /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para> /// </summary> -CheerOn_10718 = 10718, +CheerOn_PvE_10718 = 10718, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11063"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11063"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special] /// <para>Removes the “Face in the Crowd” status.</para> /// </summary> -CurtainCall = 11063, +CurtainCall_PvE = 11063, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11191"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11191"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell] /// <para>Deals unaspected damage with a potency of 200.</para> /// </summary> -RuinIii_11191 = 11191, +RuinIii_PvE_11191 = 11191, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11192"><strong>Physick</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11192"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 400</para> /// </summary> -Physick_11192 = 11192, +Physick_PvE_11192 = 11192, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11193"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11193"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break] /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para> /// </summary> -Starstorm_11193 = 11193, +Starstorm_PvE_11193 = 11193, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11275"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11275"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] [] /// <para></para> /// </summary> -PomanderOfFrailty = 11275, +PomanderOfFrailty_PvE = 11275, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11276"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11276"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] [] /// <para></para> /// </summary> -PomanderOfConcealment = 11276, +PomanderOfConcealment_PvE = 11276, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11277"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11277"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] [] /// <para></para> /// </summary> -PomanderOfPetrification = 11277, +PomanderOfPetrification_PvE = 11277, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11278"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11278"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] [] /// <para></para> /// </summary> -Magicite = 11278, +Magicite_PvE = 11278, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11383"><strong>Snort</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11383"><strong>Snort</strong></see> <i>PvE</i> (BLU) [11383] [Spell] /// <para>Deals a 20-yalm knockback to all enemies in a cone before you.</para> /// </summary> -Snort_11383 = 11383, +Snort_PvE_11383 = 11383, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11384"><strong>4-tonze Weight</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11384"><strong>4-tonze Weight</strong></see> <i>PvE</i> (BLU) [11384] [Spell] /// <para>Drops a 4-tonze weight dealing physical damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Heavy +40%</para> /// <para>Duration: 30s</para> /// </summary> -_4TonzeWeight = 11384, +_4TonzeWeight_PvE = 11384, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11385"><strong>Water Cannon</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11385"><strong>Water Cannon</strong></see> <i>PvE</i> (BLU) [11385] [Spell] /// <para>Deals water damage with a potency of 200.</para> /// </summary> -WaterCannon = 11385, +WaterCannon_PvE = 11385, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11386"><strong>Song of Torment</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11386"><strong>Song of Torment</strong></see> <i>PvE</i> (BLU) [11386] [Spell] /// <para>Deals unaspected damage with a potency of 50.</para> /// <para>Additional Effect: Unaspected damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 30s</para> /// </summary> -SongOfTorment = 11386, +SongOfTorment_PvE = 11386, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11387"><strong>High Voltage</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11387"><strong>High Voltage</strong></see> <i>PvE</i> (BLU) [11387] [Spell] /// <para>Deals lightning damage to all nearby enemies with a potency of 180 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Paralysis</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Potency increased to 220 when target is afflicted with Dropsy</para> /// <para>Additional Effect: Duration of Paralysis is increased to 30 seconds when target is afflicted with Dropsy</para> /// </summary> -HighVoltage = 11387, +HighVoltage_PvE = 11387, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11388"><strong>Bad Breath</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11388"><strong>Bad Breath</strong></see> <i>PvE</i> (BLU) [11388] [Spell] /// <para>Blow noxious breath on all enemies in a cone before you, inflicting Slow +20%, Heavy +40%, Blind, and Paralysis.</para> /// <para>Additional Effect: Poison</para> /// <para>Potency: 20</para> @@ -21749,129 +21749,129 @@ HighVoltage = 11387, /// <para>Duration: 15s</para> /// <para>Additional Effect: Interrupts target</para> /// </summary> -BadBreath = 11388, +BadBreath_PvE = 11388, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11389"><strong>Flying Frenzy</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11389"><strong>Flying Frenzy</strong></see> <i>PvE</i> (BLU) [11389] [Spell] /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 150 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -FlyingFrenzy = 11389, +FlyingFrenzy_PvE = 11389, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11390"><strong>Aqua Breath</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11390"><strong>Aqua Breath</strong></see> <i>PvE</i> (BLU) [11390] [Spell] /// <para>Deals water damage to all enemies in a cone before you with a potency of 140 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Inflicts Dropsy, dealing water damage over time</para> /// <para>Potency: 20</para> /// <para>Duration: 12s</para> /// </summary> -AquaBreath = 11390, +AquaBreath_PvE = 11390, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11391"><strong>Plaincracker</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11391"><strong>Plaincracker</strong></see> <i>PvE</i> (BLU) [11391] [Spell] /// <para>Deals earth damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -Plaincracker = 11391, +Plaincracker_PvE = 11391, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11392"><strong>Acorn Bomb</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11392"><strong>Acorn Bomb</strong></see> <i>PvE</i> (BLU) [11392] [Spell] /// <para>Puts target and all enemies nearby it to sleep.</para> /// <para>Duration: 30s</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -AcornBomb = 11392, +AcornBomb_PvE = 11392, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11393"><strong>Bristle</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11393"><strong>Bristle</strong></see> <i>PvE</i> (BLU) [11393] [Spell] /// <para>Increases the potency of the next spell cast by 50%.</para> /// <para>Duration: 30s</para> /// <para>Effect cannot be stacked with Harmonized.</para> /// </summary> -Bristle = 11393, +Bristle_PvE = 11393, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11394"><strong>Mind Blast</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11394"><strong>Mind Blast</strong></see> <i>PvE</i> (BLU) [11394] [Spell] /// <para>Deals unaspected damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Paralysis</para> /// <para>Duration: 30s</para> /// </summary> -MindBlast = 11394, +MindBlast_PvE = 11394, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11395"><strong>Blood Drain</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11395"><strong>Blood Drain</strong></see> <i>PvE</i> (BLU) [11395] [Spell] /// <para>Deals unaspected damage with a potency of 50.</para> /// <para>Additional Effect: Restores MP</para> /// </summary> -BloodDrain = 11395, +BloodDrain_PvE = 11395, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11396"><strong>Bomb Toss</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11396"><strong>Bomb Toss</strong></see> <i>PvE</i> (BLU) [11396] [Spell] /// <para>Deals fire damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 3s</para> /// </summary> -BombToss = 11396, +BombToss_PvE = 11396, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11397"><strong>1000 Needles</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11397"><strong>1000 Needles</strong></see> <i>PvE</i> (BLU) [11397] [Spell] /// <para>Deals a fixed 1,000 points of physical damage which is shared by all enemies around you.</para> /// </summary> -_1000Needles = 11397, +_1000Needles_PvE = 11397, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11398"><strong>Drill Cannons</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11398"><strong>Drill Cannons</strong></see> <i>PvE</i> (BLU) [11398] [Spell] /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Potency is increased to 600 when target is afflicted with Petrification. The Petrification effect is also removed.</para> /// </summary> -DrillCannons = 11398, +DrillCannons_PvE = 11398, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11399"><strong>the Look</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11399"><strong>the Look</strong></see> <i>PvE</i> (BLU) [11399] [Spell] /// <para>Deals unaspected damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Increased enmity</para> /// </summary> -TheLook = 11399, +TheLook_PvE = 11399, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11400"><strong>Sharpened Knife</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11400"><strong>Sharpened Knife</strong></see> <i>PvE</i> (BLU) [11400] [Spell] /// <para>Deals physical damage with a potency of 220.</para> /// <para>Additional Effect: Potency is increased to 450 when target is stunned</para> /// </summary> -SharpenedKnife = 11400, +SharpenedKnife_PvE = 11400, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11401"><strong>Loom</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11401"><strong>Loom</strong></see> <i>PvE</i> (BLU) [11401] [Spell] /// <para>Move quickly to the specified location.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Loom = 11401, +Loom_PvE = 11401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11402"><strong>Flame Thrower</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11402"><strong>Flame Thrower</strong></see> <i>PvE</i> (BLU) [11402] [Spell] /// <para>Deals fire damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -FlameThrower = 11402, +FlameThrower_PvE = 11402, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11403"><strong>Faze</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11403"><strong>Faze</strong></see> <i>PvE</i> (BLU) [11403] [Spell] /// <para>Stuns all enemies in a cone before you.</para> /// <para>Duration: 6s</para> /// </summary> -Faze = 11403, +Faze_PvE = 11403, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11404"><strong>Glower</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11404"><strong>Glower</strong></see> <i>PvE</i> (BLU) [11404] [Spell] /// <para>Deals lightning damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Paralysis</para> /// <para>Duration: 6s</para> /// </summary> -Glower = 11404, +Glower_PvE = 11404, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11405"><strong>Missile</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11405"><strong>Missile</strong></see> <i>PvE</i> (BLU) [11405] [Spell] /// <para>Deals damage equal to 50% of target's current HP.</para> /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para> /// </summary> -Missile = 11405, +Missile_PvE = 11405, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11406"><strong>White Wind</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11406"><strong>White Wind</strong></see> <i>PvE</i> (BLU) [11406] [Spell] /// <para>Restores own HP and the HP of all nearby party members by an amount equal to your current HP.</para> /// </summary> -WhiteWind = 11406, +WhiteWind_PvE = 11406, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11407"><strong>Final Sting</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11407"><strong>Final Sting</strong></see> <i>PvE</i> (BLU) [11407] [Spell] /// <para>Deals physical damage with a potency of 2,000 while incapacitating self.</para> /// <para>Additional Effect: Inflicts Brush with Death on self</para> /// <para>Duration: 600s</para> /// <para>Effect will not be removed upon revival or further incapacitation.</para> /// <para>Cannot be executed while under the effect of Brush with Death.</para> /// </summary> -FinalSting = 11407, +FinalSting_PvE = 11407, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11408"><strong>Self-destruct</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11408"><strong>Self-destruct</strong></see> <i>PvE</i> (BLU) [11408] [Spell] /// <para>Deals fire damage with a potency of 1,500 to all nearby enemies while incapacitating self.</para> /// <para>Additional Effect: Potency is increased to 1,800 when you are under the effect of Toad Oil</para> /// <para>Additional Effect: Inflicts Brush with Death on self</para> @@ -21879,75 +21879,75 @@ FinalSting = 11407, /// <para>Effect will not be removed upon revival or further incapacitation.</para> /// <para>Cannot be executed while under the effect of Brush with Death.</para> /// </summary> -Selfdestruct = 11408, +Selfdestruct_PvE = 11408, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11409"><strong>Transfusion</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11409"><strong>Transfusion</strong></see> <i>PvE</i> (BLU) [11409] [Spell] /// <para>Restores all HP and MP of a single party member while incapacitating self.</para> /// <para>Additional Effect: Inflicts Brush with Death on self</para> /// <para>Duration: 600s</para> /// <para>Effect will not be removed upon revival or further incapacitation.</para> /// <para>Cannot be executed while under the effect of Brush with Death.</para> /// </summary> -Transfusion = 11409, +Transfusion_PvE = 11409, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11410"><strong>Toad Oil</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11410"><strong>Toad Oil</strong></see> <i>PvE</i> (BLU) [11410] [Spell] /// <para>Increases evasion by 20%.</para> /// <para>Duration: 180s</para> /// </summary> -ToadOil = 11410, +ToadOil_PvE = 11410, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11411"><strong>Off-guard</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11411"><strong>Off-guard</strong></see> <i>PvE</i> (BLU) [11411] [Spell] /// <para>Increases target's damage taken by 5%.</para> /// <para>Duration: 15s</para> /// <para>Recast timer cannot be affected by other spells. However, this action shares a recast timer with Peculiar Light.</para> /// </summary> -Offguard = 11411, +Offguard_PvE = 11411, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11412"><strong>Sticky Tongue</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11412"><strong>Sticky Tongue</strong></see> <i>PvE</i> (BLU) [11412] [Spell] /// <para>Draws target towards caster.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 4s</para> /// <para>Additional Effect: Increased enmity</para> /// </summary> -StickyTongue = 11412, +StickyTongue_PvE = 11412, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11413"><strong>Tail Screw</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11413"><strong>Tail Screw</strong></see> <i>PvE</i> (BLU) [11413] [Spell] /// <para>Reduces target's HP to a single digit.</para> /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para> /// </summary> -TailScrew = 11413, +TailScrew_PvE = 11413, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11414"><strong>Level 5 Petrify</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11414"><strong>Level 5 Petrify</strong></see> <i>PvE</i> (BLU) [11414] [Spell] /// <para>Petrifies all enemies in a cone before you.</para> /// <para>Duration: 20s</para> /// <para>Chance of successful attack is low.</para> /// <para>Enemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.</para> /// </summary> -Level5Petrify = 11414, +Level5Petrify_PvE = 11414, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11415"><strong>Moon Flute</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11415"><strong>Moon Flute</strong></see> <i>PvE</i> (BLU) [11415] [Spell] /// <para>Grants the effect of Waxing Nocturne, increasing damage dealt by 50% and movement speed by 30%.</para> /// <para>Duration: 15s</para> /// <para>When effect ends, the player is afflicted with Waning Nocturne, preventing the use of auto-attack, weaponskills, spells, or abilities.</para> /// <para>Duration: 15s</para> /// </summary> -MoonFlute = 11415, +MoonFlute_PvE = 11415, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11416"><strong>Doom</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11416"><strong>Doom</strong></see> <i>PvE</i> (BLU) [11416] [Spell] /// <para>Inflicts Doom on target.</para> /// <para>Duration: 15s</para> /// <para>When effect expires, the target will be KO'd.</para> /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para> /// </summary> -Doom = 11416, +Doom_PvE = 11416, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11417"><strong>Mighty Guard</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11417"><strong>Mighty Guard</strong></see> <i>PvE</i> (BLU) [11417] [Spell] /// <para>Reduces damage taken by 40% while reducing damage dealt by 40%, increasing enmity generation, and preventing casting interruptions via damage taken.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -MightyGuard = 11417, +MightyGuard_PvE = 11417, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11418"><strong>Ice Spikes</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11418"><strong>Ice Spikes</strong></see> <i>PvE</i> (BLU) [11418] [Spell] /// <para>Counters enemies with ice damage every time you suffer physical damage.</para> /// <para>Counter Potency: 40</para> /// <para>Duration: 15s</para> @@ -21955,604 +21955,604 @@ MightyGuard = 11417, /// <para>Additional Effect: 50% chance that when you are struck, the striker will be afflicted with Slow +20%</para> /// <para>Duration: 15s</para> /// </summary> -IceSpikes = 11418, +IceSpikes_PvE = 11418, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11419"><strong>the Ram's Voice</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11419"><strong>the Ram's Voice</strong></see> <i>PvE</i> (BLU) [11419] [Spell] /// <para>Deals ice damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Deep Freeze</para> /// <para>Duration: 12s</para> /// </summary> -TheRamsVoice = 11419, +TheRamsVoice_PvE = 11419, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11420"><strong>the Dragon's Voice</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11420"><strong>the Dragon's Voice</strong></see> <i>PvE</i> (BLU) [11420] [Spell] /// <para>Deals lightning damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Enemies within an 8-yalm radius will be unaffected.</para> /// <para>Additional Effect: Paralysis</para> /// <para>Duration: 9s</para> /// <para>Additional Effect: Potency is increased to 400 against most enemies afflicted with Deep Freeze. The Deep Freeze effect is also removed.</para> /// </summary> -TheDragonsVoice = 11420, +TheDragonsVoice_PvE = 11420, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11421"><strong>Peculiar Light</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11421"><strong>Peculiar Light</strong></see> <i>PvE</i> (BLU) [11421] [Spell] /// <para>Increases magic damage taken by all nearby enemies by 5%.</para> /// <para>Duration: 15s</para> /// <para>Recast timer cannot be affected by other spells. However, this action shares a recast timer with Off-guard.</para> /// </summary> -PeculiarLight = 11421, +PeculiarLight_PvE = 11421, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11422"><strong>Ink Jet</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11422"><strong>Ink Jet</strong></see> <i>PvE</i> (BLU) [11422] [Spell] /// <para>Deals unaspected damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Blind</para> /// <para>Duration: 30s</para> /// </summary> -InkJet = 11422, +InkJet_PvE = 11422, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11423"><strong>Flying Sardine</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11423"><strong>Flying Sardine</strong></see> <i>PvE</i> (BLU) [11423] [Spell] /// <para>Deals physical damage with a potency of 10.</para> /// <para>Additional Effect: Interrupts target</para> /// </summary> -FlyingSardine = 11423, +FlyingSardine_PvE = 11423, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11424"><strong>Diamondback</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11424"><strong>Diamondback</strong></see> <i>PvE</i> (BLU) [11424] [Spell] /// <para>Reduces damage taken by 90% and nullifies most knockback and draw-in effects.</para> /// <para>Unable to move or take action for the duration of this effect.</para> /// <para>Duration: 10s</para> /// <para>If used when Waxing Nocturne is active, its effect will transition immediately to Waning Nocturne.</para> /// <para>The effect of this action cannot be ended manually.</para> /// </summary> -Diamondback = 11424, +Diamondback_PvE = 11424, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11425"><strong>Fire Angon</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11425"><strong>Fire Angon</strong></see> <i>PvE</i> (BLU) [11425] [Spell] /// <para>Deals physical fire damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -FireAngon = 11425, +FireAngon_PvE = 11425, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11426"><strong>Feather Rain</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11426"><strong>Feather Rain</strong></see> <i>PvE</i> (BLU) [11426] [Ability] /// <para>Deals wind damage with a potency of 220 to all enemies at a designated location.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 40</para> /// <para>Duration: 6s</para> /// <para>Shares a recast timer with Eruption.</para> /// </summary> -FeatherRain = 11426, +FeatherRain_PvE = 11426, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11427"><strong>Eruption</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11427"><strong>Eruption</strong></see> <i>PvE</i> (BLU) [11427] [Ability] /// <para>Deals fire damage with a potency of 300 to all enemies at a designated location.</para> /// <para>Shares a recast timer with Feather Rain.</para> /// </summary> -Eruption = 11427, +Eruption_PvE = 11427, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11428"><strong>Mountain Buster</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11428"><strong>Mountain Buster</strong></see> <i>PvE</i> (BLU) [11428] [Ability] /// <para>Deals physical earth damage to all enemies in a cone before you with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Shares a recast timer with Shock Strike.</para> /// </summary> -MountainBuster = 11428, +MountainBuster_PvE = 11428, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11429"><strong>Shock Strike</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11429"><strong>Shock Strike</strong></see> <i>PvE</i> (BLU) [11429] [Ability] /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Shares a recast timer with Mountain Buster.</para> /// </summary> -ShockStrike = 11429, +ShockStrike_PvE = 11429, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11430"><strong>Glass Dance</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11430"><strong>Glass Dance</strong></see> <i>PvE</i> (BLU) [11430] [Ability] /// <para>Deals ice damage to all enemies in a wide arc to your fore and flanks with a potency of 350 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Shares a recast timer with Veil of the Whorl.</para> /// </summary> -GlassDance = 11430, +GlassDance_PvE = 11430, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11431"><strong>Veil of the Whorl</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/11431"><strong>Veil of the Whorl</strong></see> <i>PvE</i> (BLU) [11431] [Ability] /// <para>Counters enemies with water damage every time you suffer damage.</para> /// <para>Counter Potency: 50</para> /// <para>Duration: 30s</para> /// <para>Effect cannot be stacked with Ice Spikes or Schiltron.</para> /// <para>Shares a recast timer with Glass Dance.</para> /// </summary> -VeilOfTheWhorl = 11431, +VeilOfTheWhorl_PvE = 11431, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11482"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11482"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell] /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 20s</para> /// </summary> -Trishackle = 11482, +Trishackle_PvE = 11482, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11499"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11499"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event] /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para> /// </summary> -Wasshoi = 11499, +Wasshoi_PvE = 11499, /// <summary> -/// <see href="https://garlandtools.org/db/#action/11500"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/11500"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount] /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Wasshoi_11500 = 11500, +Wasshoi_PvE_11500 = 11500, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12257"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/12257"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery] /// <para>Fires an explosive projectile at the designated area.</para> /// </summary> -Cannonfire_12257 = 12257, +Cannonfire_PvE_12257 = 12257, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12577"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/12577"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special] /// <para>Fires a short-range burst of energy in a straight line before you.</para> /// <para>Additional Effect: Increased damage taken</para> /// </summary> -MogHeaven = 12577, +MogHeaven_PvE = 12577, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12578"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/12578"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special] /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para> /// </summary> -BringItPom = 12578, +BringItPom_PvE = 12578, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12870"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12870"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] [] /// <para></para> /// </summary> -LogosAction = 12870, +LogosAction_PvE = 12870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12911"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/12911"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability] /// <para>Emits a pulse of concentrated electromagnetic energy.</para> /// </summary> -OmegaJammer = 12911, +OmegaJammer_PvE = 12911, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12958"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/12958"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell] /// <para>Increases magic damage dealt by 60%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheAetherweaver = 12958, +WisdomOfTheAetherweaver_PvE = 12958, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12959"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/12959"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell] /// <para>Increases damage dealt by 40%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheMartialist = 12959, +WisdomOfTheMartialist_PvE = 12959, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12960"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12960"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell] /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfThePlatebearer = 12960, +WisdomOfThePlatebearer_PvE = 12960, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12961"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/12961"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell] /// <para>Reduces damage taken by 45% while increasing maximum HP by 10%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheGuardian = 12961, +WisdomOfTheGuardian_PvE = 12961, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12962"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/12962"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell] /// <para>Increases maximum MP by 50% and healing magic potency by 25%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheOrdained = 12962, +WisdomOfTheOrdained_PvE = 12962, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12963"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12963"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell] /// <para>Increases damage dealt by 20%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheSkirmisher = 12963, +WisdomOfTheSkirmisher_PvE = 12963, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12964"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/12964"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell] /// <para>Increases evasion by 25% while reducing damage dealt by 5%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheWatcher = 12964, +WisdomOfTheWatcher_PvE = 12964, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12965"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/12965"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell] /// <para>Increases healing magic potency by 50% and maximum HP by 30%, while reducing damage dealt by 5%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheTemplar = 12965, +WisdomOfTheTemplar_PvE = 12965, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12966"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12966"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell] /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheIrregular = 12966, +WisdomOfTheIrregular_PvE = 12966, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12967"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12967"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell] /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheBreathtaker = 12967, +WisdomOfTheBreathtaker_PvE = 12967, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12968"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12968"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability] /// <para>Increases maximum HP by 10% and accuracy by 30%.</para> /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para> /// <para>Duration: 180m</para> /// </summary> -SpiritOfTheRemembered = 12968, +SpiritOfTheRemembered_PvE = 12968, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12969"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12969"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell] /// <para>Reduces physical damage taken by 22%.</para> /// <para>Duration: 30m</para> /// </summary> -ProtectL = 12969, +ProtectL_PvE = 12969, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12970"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12970"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell] /// <para>Reduces magic damage taken by 22%.</para> /// <para>Duration: 30m</para> /// </summary> -ShellL = 12970, +ShellL_PvE = 12970, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12971"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12971"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell] /// <para>KOs target. The less the target's HP, the greater the chance of success.</para> /// </summary> -DeathL = 12971, +DeathL_PvE = 12971, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12972"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12972"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability] /// <para>Grants a stack of Boost, up to a maximum of 16.</para> /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para> /// <para>Duration: 30s</para> /// <para>Shares a recast timer with all weaponskills.</para> /// </summary> -FocusL = 12972, +FocusL_PvE = 12972, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12973"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12973"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell] /// <para>Afflicts target with Paralysis.</para> /// <para>Duration: 60s</para> /// </summary> -ParalyzeL = 12973, +ParalyzeL_PvE = 12973, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12974"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12974"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell] /// <para>Afflicts target and all neaby enemies with Paralysis.</para> /// <para>Duration: 60s</para> /// </summary> -ParalyzeLIii = 12974, +ParalyzeLIii_PvE = 12974, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12975"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12975"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability] /// <para>Greatly increases movement speed.</para> /// <para>Duration: 10s</para> /// </summary> -SwiftL = 12975, +SwiftL_PvE = 12975, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12976"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12976"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability] /// <para>Increases evasion by 15%.</para> /// <para>Duration: 45s</para> /// </summary> -FeatherfootL = 12976, +FeatherfootL_PvE = 12976, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12977"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12977"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 100.</para> /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para> /// <para>Duration: 60s</para> /// </summary> -SpiritDartL = 12977, +SpiritDartL_PvE = 12977, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12978"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12978"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability] /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para> /// </summary> -CatastropheL = 12978, +CatastropheL_PvE = 12978, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12979"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12979"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell] /// <para>Removes one beneficial status from target.</para> /// </summary> -DispelL = 12979, +DispelL_PvE = 12979, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12980"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) +/// <see href="https://garlandtools.org/db/#action/12980"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: Reduces target's evasion</para> /// <para>Duration: 60s</para> /// </summary> -FeintL = 12980, +FeintL_PvE = 12980, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12981"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12981"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability] /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para> /// <para>Cannot be executed while in combat.</para> /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para> /// </summary> -StealthL = 12981, +StealthL_PvE = 12981, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12982"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12982"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability] /// <para>Rush to a target's side.</para> /// <para>Unable to cast if bound.</para> /// </summary> -AetherialManipulationL = 12982, +AetherialManipulationL_PvE = 12982, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12983"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12983"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability] /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para> /// </summary> -BackstepL = 12983, +BackstepL_PvE = 12983, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12984"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12984"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability] /// <para>Stuns target.</para> /// <para>Duration: 8s</para> /// </summary> -TranquilizerL = 12984, +TranquilizerL_PvE = 12984, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12985"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12985"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability] /// <para>Converts a portion of damage dealt into HP.</para> /// <para>Duration: 45s</para> /// </summary> -BloodbathL = 12985, +BloodbathL_PvE = 12985, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12986"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12986"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability] /// <para>Instantly restores 50% of maximum HP and MP.</para> /// </summary> -RejuvenateL = 12986, +RejuvenateL_PvE = 12986, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12987"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/12987"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability] /// <para>Delivers an attack with a potency of 300.</para> /// <para>Can only be executed immediately after evading an attack.</para> /// <para>Additional Effect: Slow +20%</para> /// <para>Duration: 30s</para> /// </summary> -HaymakerL = 12987, +HaymakerL_PvE = 12987, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12988"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12988"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability] /// <para>Shortens recast time for next ability used by 50%.</para> /// <para>Duration: 15s</para> /// </summary> -RapidRecastL = 12988, +RapidRecastL_PvE = 12988, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12989"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12989"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 9,000</para> /// </summary> -CureL = 12989, +CureL_PvE = 12989, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12990"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12990"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 12,000</para> /// </summary> -CureLIi = 12990, +CureLIi_PvE = 12990, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12991"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12991"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell] /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para> /// <para>Duration: 30s</para> /// </summary> -StoneskinL = 12991, +StoneskinL_PvE = 12991, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12992"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12992"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell] /// <para>Restores own or target party member's HP and all party members nearby target.</para> /// <para>Cure Potency: 9,000</para> /// </summary> -CureLIii = 12992, +CureLIii_PvE = 12992, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12993"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12993"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell] /// <para>Grants Regen to target.</para> /// <para>Cure Potency: 2,500</para> /// <para>Duration: 21s</para> /// </summary> -RegenL = 12993, +RegenL_PvE = 12993, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12994"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12994"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell] /// <para>Removes a single detrimental effect from target.</para> /// </summary> -EsunaL = 12994, +EsunaL_PvE = 12994, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12995"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12995"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability] /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para> /// <para>Duration: 15s</para> /// </summary> -IncenseL = 12995, +IncenseL_PvE = 12995, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12996"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/12996"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -RaiseL = 12996, +RaiseL_PvE = 12996, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12997"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/12997"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell] /// <para>Increases target's damage dealt by 10%.</para> /// <para>Duration: 300s</para> /// </summary> -BraveryL = 12997, +BraveryL_PvE = 12997, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12998"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12998"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability] /// <para>Reduces physical damage taken by 99%.</para> /// <para>Duration: 8s</para> /// </summary> -SolidShieldL = 12998, +SolidShieldL_PvE = 12998, /// <summary> -/// <see href="https://garlandtools.org/db/#action/12999"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/12999"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability] /// <para>Reduces magic damage taken by 99%.</para> /// <para>Duration: 8s</para> /// </summary> -SpellShieldL = 12999, +SpellShieldL_PvE = 12999, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13000"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/13000"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell] /// <para>Creates a magic-reflecting barrier around self or party member.</para> /// <para>Duration: 10s</para> /// </summary> -ReflectL = 13000, +ReflectL_PvE = 13000, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13001"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/13001"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability] /// <para>Delivers an attack with a potency of 1,000.</para> /// <para>Can only be executed when your HP is below 50%.</para> /// <para>Additional Effect: Restores an amount of own HP proportional to damage dealt</para> /// </summary> -SmiteL = 13001, +SmiteL_PvE = 13001, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13002"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/13002"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell] /// <para>Increases the amount of magia aether regenerated over time by self and nearby party members.</para> /// <para>Duration: 30s</para> /// </summary> -RefreshL = 13002, +RefreshL_PvE = 13002, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13003"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/13003"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell] /// <para>Deals unaspected damage with a potency of 200.</para> /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para> /// <para>Duration: 60s</para> /// </summary> -BanishL = 13003, +BanishL_PvE = 13003, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13004"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/13004"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell] /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para> /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para> /// <para>Duration: 60s</para> /// </summary> -BanishLIii = 13004, +BanishLIii_PvE = 13004, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13005"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/13005"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability] /// <para>Increases spell damage by 100% while increasing MP cost.</para> /// <para>Duration: 20s</para> /// </summary> -MagicBurstL = 13005, +MagicBurstL_PvE = 13005, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13006"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) +/// <see href="https://garlandtools.org/db/#action/13006"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability] /// <para>Increases physical damage dealt while dealing damage to self over time.</para> /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para> /// <para>Duration: 48s</para> /// </summary> -DoubleEdgeL = 13006, +DoubleEdgeL_PvE = 13006, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13007"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/13007"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) [13007] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 80. Potency increases up to 1,000% the lower the target's HP.</para> /// <para>Generates significant enmity upon use.</para> /// </summary> -EagleEyeShotL = 13007, +EagleEyeShotL_PvE = 13007, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13265"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13265"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special] /// <para>Casts a spell that alarms targets within the designated area.</para> /// </summary> -TricksomeTreat = 13265, +TricksomeTreat_PvE = 13265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13266"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13266"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special] /// <para>Removes the effects of transfiguration.</para> /// </summary> -Unveil = 13266, +Unveil_PvE = 13266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13423"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13423"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell] /// <para>Deals earth damage with a potency of 140.</para> /// </summary> -StoneIvOfTheSeventhDawn = 13423, +StoneIvOfTheSeventhDawn_PvE = 13423, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13424"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13424"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell] /// <para>Deals wind damage with a potency of 50.</para> /// <para>Additional Effect: Wind damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 18s</para> /// </summary> -AeroIiOfTheSeventhDawn = 13424, +AeroIiOfTheSeventhDawn_PvE = 13424, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13425"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13425"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 700</para> /// </summary> -CureIiOfTheSeventhDawn = 13425, +CureIiOfTheSeventhDawn_PvE = 13425, /// <summary> -/// <see href="https://garlandtools.org/db/#action/13426"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/13426"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability] /// <para>Restores MP.</para> /// </summary> -Aetherwell = 13426, +Aetherwell_PvE = 13426, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14414"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14414"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability] /// <para>Wield the ethereal sword to strike forward. </para> /// </summary> -HeavenlySword = 14414, +HeavenlySword_PvE = 14414, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14415"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14415"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability] /// <para>Wield the ethereal shield to defend against frontal attacks.</para> /// </summary> -HeavenlyShield = 14415, +HeavenlyShield_PvE = 14415, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14476"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/14476"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability] /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para> /// <para>Only effective within dungeons.</para> /// </summary> -PerceptionL = 14476, +PerceptionL_PvE = 14476, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14477"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) +/// <see href="https://garlandtools.org/db/#action/14477"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [14477] [Spell] /// <para>Increases magic damage dealt by 35% while reducing magic damage taken by 22% and decreasing spell MP cost.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheElder = 14477, +WisdomOfTheElder_PvE = 14477, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14478"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/14478"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell] /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheDuelist = 14478, +WisdomOfTheDuelist_PvE = 14478, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14479"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/14479"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [14479] [Spell] /// <para>Increases physical damage dealt by 25% and evasion by 25%.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheFiendhunter = 14479, +WisdomOfTheFiendhunter_PvE = 14479, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14480"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/14480"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell] /// <para>Reduces damage taken by 64%.</para> /// <para>Grants one stack of HP Boost each time damage equal to or greater than half of maximum HP is taken from a single-target attack.</para> /// <para>Cannot be used with other Wisdom abilities.</para> /// <para>Effect ends upon reuse or upon replacement of duty action.</para> /// </summary> -WisdomOfTheIndomitable = 14480, +WisdomOfTheIndomitable_PvE = 14480, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14481"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/14481"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell] /// <para>Restores all of a KO'd target's HP.</para> /// <para>Cannot be executed if currently afflicted with Sacrifice.</para> /// <para>Additional Effect: Inflicts Sacrifice on self</para> /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para> /// <para>Duration: 10s</para> /// </summary> -SacrificeL = 14481, +SacrificeL_PvE = 14481, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14597"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14597"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability] /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para> /// </summary> -Warpstrike = 14597, +Warpstrike_PvE = 14597, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14840"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14840"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill] /// <para>Delivers an attack with a potency of 180.</para> /// </summary> -Kyokufu = 14840, +Kyokufu_PvE = 14840, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14841"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14841"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 30</para> /// <para>Duration: 30s</para> /// </summary> -Ajisai = 14841, +Ajisai_PvE = 14841, /// <summary> -/// <see href="https://garlandtools.org/db/#action/14842"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/14842"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability] /// <para>Rushes target and delivers an attack with a potency of 100.</para> /// </summary> -HissatsuGyoten_14842 = 14842, +HissatsuGyoten_PvE_14842 = 14842, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15375"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/15375"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability] /// <para>Instantly restores own HP.</para> /// <para>Cure Potency: 500</para> /// <para>Cure potency varies with current attack power.</para> /// </summary> -SecondWind_15375 = 15375, +SecondWind_PvE_15375 = 15375, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15537"><strong>Interject</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/15537"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability] /// <para>Interrupts the use of a target's action.</para> /// </summary> -Interject_15537 = 15537, +Interject_PvE_15537 = 15537, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15553"><strong>Present</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/15553"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special] /// <para>Present an eggsquisite gift.</para> /// </summary> -Present = 15553, +Present_PvE = 15553, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15870"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/15870"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability] /// <para>Increases physical damage dealt by 25%.</para> /// <para>Duration: 25s</para> /// </summary> -FightOrFlight_15870 = 15870, +FightOrFlight_PvE_15870 = 15870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15989"><strong>Cascade</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15989"><strong>Cascade</strong></see> <i>PvE</i> (DNC) [15989] [Weaponskill] /// <para>Delivers an attack with a potency of 220.</para> /// <para>Additional Effect: 50% chance of granting Silken Symmetry</para> /// <para>Duration: 30s</para> /// <para></para> /// <para>※Action changes to Emboite while dancing.</para> /// </summary> -Cascade = 15989, +Cascade_PvE = 15989, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15990"><strong>Fountain</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15990"><strong>Fountain</strong></see> <i>PvE</i> (DNC) [15990] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Cascade</para> /// <para>Combo Potency: 280</para> @@ -22561,36 +22561,36 @@ Cascade = 15989, /// <para></para> /// <para>※Action changes to Entrechat while dancing.</para> /// </summary> -Fountain = 15990, +Fountain_PvE = 15990, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15991"><strong>Reverse Cascade</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15991"><strong>Reverse Cascade</strong></see> <i>PvE</i> (DNC) [15991] [Weaponskill] /// <para>Delivers an attack with a potency of 280.</para> /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para> /// <para>Can only be executed while under the effect of Silken Symmetry or Flourishing Symmetry.</para> /// <para></para> /// <para>※Action changes to Jete while dancing.</para> /// </summary> -ReverseCascade = 15991, +ReverseCascade_PvE = 15991, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15992"><strong>Fountainfall</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15992"><strong>Fountainfall</strong></see> <i>PvE</i> (DNC) [15992] [Weaponskill] /// <para>Delivers an attack with a potency of 340.</para> /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para> /// <para>Can only be executed while under the effect of Silken Flow or Flourishing Flow.</para> /// <para></para> /// <para>※Action changes to Pirouette while dancing.</para> /// </summary> -Fountainfall = 15992, +Fountainfall_PvE = 15992, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15993"><strong>Windmill</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15993"><strong>Windmill</strong></see> <i>PvE</i> (DNC) [15993] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Additional Effect: 50% chance of granting Silken Symmetry</para> /// <para>Duration: 30s</para> /// <para></para> /// <para>※Action changes to Emboite while dancing.</para> /// </summary> -Windmill = 15993, +Windmill_PvE = 15993, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15994"><strong>Bladeshower</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15994"><strong>Bladeshower</strong></see> <i>PvE</i> (DNC) [15994] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Windmill</para> /// <para>Combo Potency: 140</para> @@ -22599,81 +22599,81 @@ Windmill = 15993, /// <para></para> /// <para>※Action changes to Entrechat while dancing.</para> /// </summary> -Bladeshower = 15994, +Bladeshower_PvE = 15994, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15995"><strong>Rising Windmill</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15995"><strong>Rising Windmill</strong></see> <i>PvE</i> (DNC) [15995] [Weaponskill] /// <para>Delivers an attack with a potency of 140 to all nearby enemies.</para> /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para> /// <para>Can only be executed while under the effect of Silken Symmetry or Flourishing Symmetry.</para> /// <para></para> /// <para>※Action changes to Jete while dancing.</para> /// </summary> -RisingWindmill = 15995, +RisingWindmill_PvE = 15995, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15996"><strong>Bloodshower</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15996"><strong>Bloodshower</strong></see> <i>PvE</i> (DNC) [15996] [Weaponskill] /// <para>Delivers an attack with a potency of 180 to all nearby enemies.</para> /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para> /// <para>Can only be executed while under the effect of Silken Flow or Flourishing Flow.</para> /// <para></para> /// <para>※Action changes to Pirouette while dancing.</para> /// </summary> -Bloodshower = 15996, +Bloodshower_PvE = 15996, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15997"><strong>Standard Step</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15997"><strong>Standard Step</strong></see> <i>PvE</i> (DNC) [15997] [Weaponskill] /// <para>Begin dancing, granting yourself Standard Step.</para> /// <para>Duration: 15s</para> /// <para>Action changes to Standard Finish while dancing.</para> /// <para>Only Standard Finish, En Avant, Curing Waltz, Shield Samba, step actions, role actions, Sprint, and Limit Break can be performed while dancing.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -StandardStep = 15997, +StandardStep_PvE = 15997, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15998"><strong>Technical Step</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15998"><strong>Technical Step</strong></see> <i>PvE</i> (DNC) [15998] [Weaponskill] /// <para>Begin dancing, granting yourself Technical Step.</para> /// <para>Duration: 15s</para> /// <para>Action changes to Technical Finish while dancing.</para> /// <para>Only Technical Finish, En Avant, Curing Waltz, Shield Samba, step actions, role actions, Sprint, and Limit Break can be performed while dancing.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -TechnicalStep = 15998, +TechnicalStep_PvE = 15998, /// <summary> -/// <see href="https://garlandtools.org/db/#action/15999"><strong>Emboite</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/15999"><strong>Emboite</strong></see> <i>PvE</i> (DNC) [15999] [Weaponskill] /// <para>Perform an emboite.</para> /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Emboite = 15999, +Emboite_PvE = 15999, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16000"><strong>Entrechat</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16000"><strong>Entrechat</strong></see> <i>PvE</i> (DNC) [16000] [Weaponskill] /// <para>Perform an entrechat.</para> /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Entrechat = 16000, +Entrechat_PvE = 16000, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16001"><strong>Jete</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16001"><strong>Jete</strong></see> <i>PvE</i> (DNC) [16001] [Weaponskill] /// <para>Perform a jete.</para> /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Jete = 16001, +Jete_PvE = 16001, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16002"><strong>Pirouette</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16002"><strong>Pirouette</strong></see> <i>PvE</i> (DNC) [16002] [Weaponskill] /// <para>Perform a pirouette.</para> /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Pirouette = 16002, +Pirouette_PvE = 16002, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16003"><strong>Standard Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16003"><strong>Standard Finish</strong></see> <i>PvE</i> (DNC) [16003] [Weaponskill] /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 360</para> /// <para>1 Step: 540</para> @@ -22687,9 +22687,9 @@ Pirouette = 16002, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -StandardFinish = 16003, +StandardFinish_PvE = 16003, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16004"><strong>Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16004"><strong>Technical Finish</strong></see> <i>PvE</i> (DNC) [16004] [Weaponskill] /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 350</para> /// <para>1 Step: 540</para> @@ -22710,73 +22710,73 @@ StandardFinish = 16003, /// <para>※Action changes to Tillana upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TechnicalFinish = 16004, +TechnicalFinish_PvE = 16004, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16005"><strong>Saber Dance</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16005"><strong>Saber Dance</strong></see> <i>PvE</i> (DNC) [16005] [Weaponskill] /// <para>Delivers an attack to target and all enemies nearby it with a potency of 480 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Esprit Gauge Cost: 50</para> /// </summary> -SaberDance = 16005, +SaberDance_PvE = 16005, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16006"><strong>Closed Position</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16006"><strong>Closed Position</strong></see> <i>PvE</i> (DNC) [16006] [Ability] /// <para>Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Standard Finish, Curing Waltz, Devilment, and Tillana with said party member.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -ClosedPosition = 16006, +ClosedPosition_PvE = 16006, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16007"><strong>Fan Dance</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16007"><strong>Fan Dance</strong></see> <i>PvE</i> (DNC) [16007] [Ability] /// <para>Delivers an attack with a potency of 150.</para> /// <para>Additional Effect: 50% chance of granting Threefold Fan Dance</para> /// <para>Duration: 30s</para> /// <para>Can only be executed while in possession of Fourfold Feathers.</para> /// </summary> -FanDance = 16007, +FanDance_PvE = 16007, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16008"><strong>Fan Dance II</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16008"><strong>Fan Dance II</strong></see> <i>PvE</i> (DNC) [16008] [Ability] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Additional Effect: 50% chance of granting Threefold Fan Dance</para> /// <para>Duration: 30s</para> /// <para>Can only be executed while in possession of Fourfold Feathers.</para> /// </summary> -FanDanceIi = 16008, +FanDanceIi_PvE = 16008, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16009"><strong>Fan Dance III</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16009"><strong>Fan Dance III</strong></see> <i>PvE</i> (DNC) [16009] [Ability] /// <para>Delivers an attack to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Threefold Fan Dance.</para> /// </summary> -FanDanceIii = 16009, +FanDanceIii_PvE = 16009, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16010"><strong>En Avant</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16010"><strong>En Avant</strong></see> <i>PvE</i> (DNC) [16010] [Ability] /// <para>Quickly dash 10 yalms forward.</para> /// <para>Maximum Charges: </para> /// <para>Cannot be executed while bound.</para> /// </summary> -EnAvant = 16010, +EnAvant_PvE = 16010, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16011"><strong>Devilment</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16011"><strong>Devilment</strong></see> <i>PvE</i> (DNC) [16011] [Ability] /// <para>Increases critical hit rate and direct hit rate by 20%.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Party member designated as your Dance Partner will also receive the effect of Devilment</para> /// <para>Additional Effect: Grants Flourishing Starfall</para> /// <para>Duration: 20s</para> /// </summary> -Devilment = 16011, +Devilment_PvE = 16011, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16012"><strong>Shield Samba</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16012"><strong>Shield Samba</strong></see> <i>PvE</i> (DNC) [16012] [Ability] /// <para>Reduces damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para>Effect cannot be stacked with bard's Troubadour or machinist's Tactician.</para> /// </summary> -ShieldSamba = 16012, +ShieldSamba_PvE = 16012, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16013"><strong>Flourish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16013"><strong>Flourish</strong></see> <i>PvE</i> (DNC) [16013] [Ability] /// <para>Grants you the effects of Flourishing Symmetry, Flourishing Flow, Threefold Fan Dance, and Fourfold Fan Danceand Threefold Fan Danceand Threefold Fan Dance.</para> /// <para>Duration: 30s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Flourish = 16013, +Flourish_PvE = 16013, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16014"><strong>Improvisation</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16014"><strong>Improvisation</strong></see> <i>PvE</i> (DNC) [16014] [Ability] /// <para>Dance to the beat of your own drum, granting Rising Rhythm to self.</para> /// <para>Stacks increase every 3 seconds, up to a maximum of 4.</para> /// <para>Additional Effect: Healing over time for self and nearby party members</para> @@ -22787,27 +22787,27 @@ Flourish = 16013, /// <para></para> /// <para>※Action changes to Improvised Finish upon execution.</para> /// </summary> -Improvisation = 16014, +Improvisation_PvE = 16014, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16015"><strong>Curing Waltz</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16015"><strong>Curing Waltz</strong></see> <i>PvE</i> (DNC) [16015] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 300</para> /// <para>Additional Effect: Party member designated as your Dance Partner will also heal self and nearby party members</para> /// </summary> -CuringWaltz = 16015, +CuringWaltz_PvE = 16015, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16137"><strong>Keen Edge</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16137"><strong>Keen Edge</strong></see> <i>PvE</i> (GNB) [16137] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// </summary> -KeenEdge = 16137, +KeenEdge_PvE = 16137, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16138"><strong>No Mercy</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16138"><strong>No Mercy</strong></see> <i>PvE</i> (GNB) [16138] [Ability] /// <para>Increases damage dealt by 20%.</para> /// <para>Duration: 20s</para> /// </summary> -NoMercy = 16138, +NoMercy_PvE = 16138, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16139"><strong>Brutal Shell</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16139"><strong>Brutal Shell</strong></see> <i>PvE</i> (GNB) [16139] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Keen Edge</para> /// <para>Combo Potency: </para> @@ -22816,45 +22816,45 @@ NoMercy = 16138, /// <para>Combo Bonus: Creates a barrier which nullifies damage equaling HP restored</para> /// <para>Duration: 30s</para> /// </summary> -BrutalShell = 16139, +BrutalShell_PvE = 16139, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16140"><strong>Camouflage</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16140"><strong>Camouflage</strong></see> <i>PvE</i> (GNB) [16140] [Ability] /// <para>Increases parry rate by 50% while reducing damage taken by 10%.</para> /// <para>Duration: 20s</para> /// </summary> -Camouflage = 16140, +Camouflage_PvE = 16140, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16141"><strong>Demon Slice</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16141"><strong>Demon Slice</strong></see> <i>PvE</i> (GNB) [16141] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// </summary> -DemonSlice = 16141, +DemonSlice_PvE = 16141, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16142"><strong>Royal Guard</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16142"><strong>Royal Guard</strong></see> <i>PvE</i> (GNB) [16142] [Ability] /// <para>Significantly increases enmity generation.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -RoyalGuard = 16142, +RoyalGuard_PvE = 16142, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16143"><strong>Lightning Shot</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16143"><strong>Lightning Shot</strong></see> <i>PvE</i> (GNB) [16143] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 150.</para> /// <para>Additional Effect: Increased enmity</para> /// </summary> -LightningShot = 16143, +LightningShot_PvE = 16143, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16144"><strong>Danger Zone</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16144"><strong>Danger Zone</strong></see> <i>PvE</i> (GNB) [16144] [Ability] /// <para>Delivers an attack with a potency of 250.</para> /// </summary> -DangerZone = 16144, +DangerZone_PvE = 16144, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16145"><strong>Solid Barrel</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16145"><strong>Solid Barrel</strong></see> <i>PvE</i> (GNB) [16145] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Brutal Shell</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Adds a Cartridge to your Powder Gauge</para> /// </summary> -SolidBarrel = 16145, +SolidBarrel_PvE = 16145, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16146"><strong>Gnashing Fang</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16146"><strong>Gnashing Fang</strong></see> <i>PvE</i> (GNB) [16146] [Weaponskill] /// <para>Delivers an attack with a potency of 380.</para> /// <para>Additional Effect: Grants Ready to Rip</para> /// <para>Duration: 10s</para> @@ -22862,9 +22862,9 @@ SolidBarrel = 16145, /// <para>Cartridge Cost: 1</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -GnashingFang = 16146, +GnashingFang_PvE = 16146, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16147"><strong>Savage Claw</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16147"><strong>Savage Claw</strong></see> <i>PvE</i> (GNB) [16147] [Weaponskill] /// <para>Delivers an attack with a potency of 460.</para> /// <para>Combo Action: Gnashing Fang</para> /// <para>Combo Bonus: Grants Ready to Tear</para> @@ -22873,23 +22873,23 @@ GnashingFang = 16146, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SavageClaw = 16147, +SavageClaw_PvE = 16147, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16148"><strong>Nebula</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16148"><strong>Nebula</strong></see> <i>PvE</i> (GNB) [16148] [Ability] /// <para>Reduces damage taken by 30%.</para> /// <para>Duration: 15s</para> /// </summary> -Nebula = 16148, +Nebula_PvE = 16148, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16149"><strong>Demon Slaughter</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16149"><strong>Demon Slaughter</strong></see> <i>PvE</i> (GNB) [16149] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Demon Slice</para> /// <para>Combo Potency: 160</para> /// <para>Combo Bonus: Adds a Cartridge to your Powder Gauge</para> /// </summary> -DemonSlaughter = 16149, +DemonSlaughter_PvE = 16149, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16150"><strong>Wicked Talon</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16150"><strong>Wicked Talon</strong></see> <i>PvE</i> (GNB) [16150] [Weaponskill] /// <para>Delivers an attack with a potency of 540.</para> /// <para>Combo Action: Savage Claw</para> /// <para>Combo Bonus: Grants Ready to Gouge</para> @@ -22898,119 +22898,119 @@ DemonSlaughter = 16149, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WickedTalon = 16150, +WickedTalon_PvE = 16150, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16151"><strong>Aurora</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16151"><strong>Aurora</strong></see> <i>PvE</i> (GNB) [16151] [Ability] /// <para>Grants Regen to target.</para> /// <para>Cure Potency: 200</para> /// <para>Duration: 18s</para> /// <para>Maximum Charges: 2</para> /// </summary> -Aurora = 16151, +Aurora_PvE = 16151, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16152"><strong>Superbolide</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16152"><strong>Superbolide</strong></see> <i>PvE</i> (GNB) [16152] [Ability] /// <para>Reduces HP to 1 and renders you impervious to most attacks.</para> /// <para>Duration: 10s</para> /// </summary> -Superbolide = 16152, +Superbolide_PvE = 16152, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16153"><strong>Sonic Break</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16153"><strong>Sonic Break</strong></see> <i>PvE</i> (GNB) [16153] [Weaponskill] /// <para>Delivers an attack with a potency of 300.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 60</para> /// <para>Duration: 30s</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -SonicBreak = 16153, +SonicBreak_PvE = 16153, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16154"><strong>Rough Divide</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16154"><strong>Rough Divide</strong></see> <i>PvE</i> (GNB) [16154] [Ability] /// <para>Delivers a jumping attack with a potency of 150.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -RoughDivide = 16154, +RoughDivide_PvE = 16154, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16155"><strong>Continuation</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16155"><strong>Continuation</strong></see> <i>PvE</i> (GNB) [16155] [Ability] /// <para>Allows the firing of successive rounds with your gunblade.</para> /// <para>Gnashing Fang may be followed by Jugular Rip.</para> /// <para>Savage Claw may be followed by Abdomen Tear.</para> /// <para>Wicked Talon may be followed by Eye Gouge.</para> /// <para>Burst Strike may be followed by Hypervelocity.</para> /// </summary> -Continuation = 16155, +Continuation_PvE = 16155, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16156"><strong>Jugular Rip</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16156"><strong>Jugular Rip</strong></see> <i>PvE</i> (GNB) [16156] [Ability] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Can only be executed when Ready to Rip.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -JugularRip = 16156, +JugularRip_PvE = 16156, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16157"><strong>Abdomen Tear</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16157"><strong>Abdomen Tear</strong></see> <i>PvE</i> (GNB) [16157] [Ability] /// <para>Delivers an attack with a potency of 240.</para> /// <para>Can only be executed when Ready to Tear.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AbdomenTear = 16157, +AbdomenTear_PvE = 16157, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16158"><strong>Eye Gouge</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16158"><strong>Eye Gouge</strong></see> <i>PvE</i> (GNB) [16158] [Ability] /// <para>Delivers an attack with a potency of 280.</para> /// <para>Can only be executed when Ready to Gouge.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EyeGouge = 16158, +EyeGouge_PvE = 16158, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16159"><strong>Bow Shock</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16159"><strong>Bow Shock</strong></see> <i>PvE</i> (GNB) [16159] [Ability] /// <para>Delivers an attack with a potency of 150 to all nearby enemies.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 60</para> /// <para>Duration: 15s</para> /// </summary> -BowShock = 16159, +BowShock_PvE = 16159, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16160"><strong>Heart of Light</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16160"><strong>Heart of Light</strong></see> <i>PvE</i> (GNB) [16160] [Ability] /// <para>Reduces magic damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// </summary> -HeartOfLight = 16160, +HeartOfLight_PvE = 16160, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16161"><strong>Heart of Stone</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16161"><strong>Heart of Stone</strong></see> <i>PvE</i> (GNB) [16161] [Ability] /// <para>Reduces damage taken by a party member or self by 15%.</para> /// <para>Duration: 7s</para> /// <para>Additional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target</para> /// <para>Duration: 30s</para> /// </summary> -HeartOfStone = 16161, +HeartOfStone_PvE = 16161, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16162"><strong>Burst Strike</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16162"><strong>Burst Strike</strong></see> <i>PvE</i> (GNB) [16162] [Weaponskill] /// <para>Delivers an attack with a potency of 380.</para> /// <para>Additional Effect: Grants Ready to Blast</para> /// <para>Duration: 10s</para> /// <para>Effect of Ready to Blast ends upon execution of any weaponskill.</para> /// <para>Cartridge Cost: 1</para> /// </summary> -BurstStrike = 16162, +BurstStrike_PvE = 16162, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16163"><strong>Fated Circle</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16163"><strong>Fated Circle</strong></see> <i>PvE</i> (GNB) [16163] [Weaponskill] /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para> /// <para>Cartridge Cost: 1</para> /// </summary> -FatedCircle = 16163, +FatedCircle_PvE = 16163, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16164"><strong>Bloodfest</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16164"><strong>Bloodfest</strong></see> <i>PvE</i> (GNB) [16164] [Ability] /// <para>Draws aetheric energy from target, adding Cartridges to your Powder Gauge.</para> /// </summary> -Bloodfest = 16164, +Bloodfest_PvE = 16164, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16165"><strong>Blasting Zone</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/16165"><strong>Blasting Zone</strong></see> <i>PvE</i> (GNB) [16165] [Ability] /// <para>Delivers an attack with a potency of 720.</para> /// </summary> -BlastingZone = 16165, +BlastingZone_PvE = 16165, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16191"><strong>Single Standard Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16191"><strong>Single Standard Finish</strong></see> <i>PvE</i> (DNC) [16191] [Weaponskill] /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 360</para> /// <para>1 Step: 540</para> @@ -23024,9 +23024,9 @@ BlastingZone = 16165, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SingleStandardFinish = 16191, +SingleStandardFinish_PvE = 16191, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16192"><strong>Double Standard Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16192"><strong>Double Standard Finish</strong></see> <i>PvE</i> (DNC) [16192] [Weaponskill] /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 360</para> /// <para>1 Step: 540</para> @@ -23040,9 +23040,9 @@ SingleStandardFinish = 16191, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -DoubleStandardFinish = 16192, +DoubleStandardFinish_PvE = 16192, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16193"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16193"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [16193] [Weaponskill] /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 350</para> /// <para>1 Step: 540</para> @@ -23063,9 +23063,9 @@ DoubleStandardFinish = 16192, /// <para>※Action changes to Tillana upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SingleTechnicalFinish = 16193, +SingleTechnicalFinish_PvE = 16193, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16194"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16194"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [16194] [Weaponskill] /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 350</para> /// <para>1 Step: 540</para> @@ -23086,9 +23086,9 @@ SingleTechnicalFinish = 16193, /// <para>※Action changes to Tillana upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -DoubleTechnicalFinish = 16194, +DoubleTechnicalFinish_PvE = 16194, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16195"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16195"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [16195] [Weaponskill] /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 350</para> /// <para>1 Step: 540</para> @@ -23109,9 +23109,9 @@ DoubleTechnicalFinish = 16194, /// <para>※Action changes to Tillana upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TripleTechnicalFinish = 16195, +TripleTechnicalFinish_PvE = 16195, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16196"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/16196"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [16196] [Weaponskill] /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para> /// <para>0 Steps: 350</para> /// <para>1 Step: 540</para> @@ -23132,56 +23132,56 @@ TripleTechnicalFinish = 16195, /// <para>※Action changes to Tillana upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -QuadrupleTechnicalFinish = 16196, +QuadrupleTechnicalFinish_PvE = 16196, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16230"><strong>Physick</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/16230"><strong>Physick</strong></see> <i>PvE</i> (ACN SMN) [16230] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 400</para> /// </summary> -Physick_16230 = 16230, +Physick_PvE_16230 = 16230, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16269"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16269"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill] /// <para></para> /// </summary> -RightfulSword = 16269, +RightfulSword_PvE = 16269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16418"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16418"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill] /// <para></para> /// </summary> -BrutalShell_16418 = 16418, +BrutalShell_PvE_16418 = 16418, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16434"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16434"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill] /// <para></para> /// </summary> -KeenEdge_16434 = 16434, +KeenEdge_PvE_16434 = 16434, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16435"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16435"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill] /// <para></para> /// </summary> -SolidBarrel_16435 = 16435, +SolidBarrel_PvE_16435 = 16435, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16436"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16436"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability] /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para> /// </summary> -SoothingPotion = 16436, +SoothingPotion_PvE = 16436, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16437"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16437"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill] /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para> /// </summary> -ShiningBlade = 16437, +ShiningBlade_PvE = 16437, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16438"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16438"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability] /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para> /// <para>Additional Effect: Fading Fast</para> /// </summary> -PerfectDeception = 16438, +PerfectDeception_PvE = 16438, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16439"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16439"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill] /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para> /// </summary> -LeapOfFaith = 16439, +LeapOfFaith_PvE = 16439, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16457"><strong>Prominence</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/16457"><strong>Prominence</strong></see> <i>PvE</i> (PLD) [16457] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Total Eclipse</para> /// <para>Combo Potency: 170</para> @@ -23190,9 +23190,9 @@ LeapOfFaith = 16439, /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para> /// <para>Duration: 30s</para> /// </summary> -Prominence = 16457, +Prominence_PvE = 16457, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16458"><strong>Holy Circle</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/16458"><strong>Holy Circle</strong></see> <i>PvE</i> (PLD) [16458] [Spell] /// <para>Deals unaspected damage with a potency of 100 to all nearby enemies.</para> /// <para>Divine Might Potency: 200</para> /// <para>Requiescat Potency: 300</para> @@ -23200,32 +23200,32 @@ Prominence = 16457, /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 400</para> /// </summary> -HolyCircle = 16458, +HolyCircle_PvE = 16458, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16459"><strong>Confiteor</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/16459"><strong>Confiteor</strong></see> <i>PvE</i> (PLD) [16459] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Requiescat Potency: 920</para> /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 400</para> /// <para>Can only be executed while under the effect of Confiteor Ready. Effect fades upon execution.</para> /// </summary> -Confiteor = 16459, +Confiteor_PvE = 16459, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16460"><strong>Atonement</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/16460"><strong>Atonement</strong></see> <i>PvE</i> (PLD) [16460] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Restores MP</para> /// <para>Can only be executed while under the effect of Sword Oath.</para> /// </summary> -Atonement = 16460, +Atonement_PvE = 16460, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16461"><strong>Intervene</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/16461"><strong>Intervene</strong></see> <i>PvE</i> (PLD) [16461] [Ability] /// <para>Rushes target and delivers an attack with a potency of 150.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Intervene = 16461, +Intervene_PvE = 16461, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16462"><strong>Mythril Tempest</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/16462"><strong>Mythril Tempest</strong></see> <i>PvE</i> (WAR) [16462] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Overpower</para> /// <para>Combo Potency: 150</para> @@ -23234,9 +23234,9 @@ Intervene = 16461, /// <para>Extends Surging Tempest duration by 30s to a maximum of 60s.</para> /// <para>Combo Bonus: Increases Beast Gauge by 20</para> /// </summary> -MythrilTempest = 16462, +MythrilTempest_PvE = 16462, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16463"><strong>Chaotic Cyclone</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/16463"><strong>Chaotic Cyclone</strong></see> <i>PvE</i> (WAR) [16463] [Weaponskill] /// <para>Delivers a critical direct hit with a potency of 320 to all nearby enemies.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Additional Effect: Reduces the recast time of Infuriate by 5 seconds</para> @@ -23245,9 +23245,9 @@ MythrilTempest = 16462, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ChaoticCyclone = 16463, +ChaoticCyclone_PvE = 16463, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16464"><strong>Nascent Flash</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/16464"><strong>Nascent Flash</strong></see> <i>PvE</i> (WAR) [16464] [Ability] /// <para>Grants Nascent Flash to self and Nascent Glint to target party member.</para> /// <para>Nascent Flash Effect: Restores HP with each weaponskill successfully delivered</para> /// <para>Cure Potency: 400</para> @@ -23259,9 +23259,9 @@ ChaoticCyclone = 16463, /// <para>Duration: 20s</para> /// <para>Shares a recast timer with BloodwhettingRaw IntuitionRaw Intuition.</para> /// </summary> -NascentFlash = 16464, +NascentFlash_PvE = 16464, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16465"><strong>Inner Chaos</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/16465"><strong>Inner Chaos</strong></see> <i>PvE</i> (WAR) [16465] [Weaponskill] /// <para>Delivers a critical direct hit with a potency of 660.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Additional Effect: Reduces the recast time of Infuriate by 5 seconds</para> @@ -23270,69 +23270,69 @@ NascentFlash = 16464, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -InnerChaos = 16465, +InnerChaos_PvE = 16465, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16466"><strong>Flood of Darkness</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16466"><strong>Flood of Darkness</strong></see> <i>PvE</i> (DRK) [16466] [Ability] /// <para>Deals unaspected damage with a potency of 100 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para> /// <para>Shares a recast timer with Edge of Darkness.</para> /// </summary> -FloodOfDarkness = 16466, +FloodOfDarkness_PvE = 16466, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16467"><strong>Edge of Darkness</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16467"><strong>Edge of Darkness</strong></see> <i>PvE</i> (DRK) [16467] [Ability] /// <para>Deals unaspected damage with a potency of 300.</para> /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para> /// <para>Shares a recast timer with Flood of Darkness.</para> /// </summary> -EdgeOfDarkness = 16467, +EdgeOfDarkness_PvE = 16467, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16468"><strong>Stalwart Soul</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16468"><strong>Stalwart Soul</strong></see> <i>PvE</i> (DRK) [16468] [Spell] /// <para>Deals unaspected damage with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Unleash</para> /// <para>Combo Potency: 140</para> /// <para>Combo Bonus: Restores MP</para> /// <para>Combo Bonus: Increases Blood Gauge by 20</para> /// </summary> -StalwartSoul = 16468, +StalwartSoul_PvE = 16468, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16469"><strong>Flood of Shadow</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16469"><strong>Flood of Shadow</strong></see> <i>PvE</i> (DRK) [16469] [Ability] /// <para>Deals unaspected damage with a potency of 160 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para> /// <para>Shares a recast timer with Edge of Shadow.</para> /// </summary> -FloodOfShadow = 16469, +FloodOfShadow_PvE = 16469, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16470"><strong>Edge of Shadow</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16470"><strong>Edge of Shadow</strong></see> <i>PvE</i> (DRK) [16470] [Ability] /// <para>Deals unaspected damage with a potency of 460.</para> /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para> /// <para>Shares a recast timer with Flood of Shadow.</para> /// </summary> -EdgeOfShadow = 16470, +EdgeOfShadow_PvE = 16470, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16471"><strong>Dark Missionary</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16471"><strong>Dark Missionary</strong></see> <i>PvE</i> (DRK) [16471] [Ability] /// <para>Reduces magic damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// </summary> -DarkMissionary = 16471, +DarkMissionary_PvE = 16471, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16472"><strong>Living Shadow</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/16472"><strong>Living Shadow</strong></see> <i>PvE</i> (DRK) [16472] [Ability] /// <para>Conjure a simulacrum of your darkside to fight alongside you.</para> /// <para>Simulacrum Attack Potency: </para> /// <para>Duration: 20s</para> /// <para>Blood Gauge Cost: 50</para> /// <para>Additional Effect: Simulacrum is able to execute Shadowbringer, delivering an attack to all enemies in a straight line before it with a potency of 500 for the first enemy, and 25% less for all remaining enemies.</para> /// </summary> -LivingShadow = 16472, +LivingShadow_PvE = 16472, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16473"><strong>Four-point Fury</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/16473"><strong>Four-point Fury</strong></see> <i>PvE</i> (MNK) [16473] [Weaponskill] /// <para>Delivers an attack with a potency of 120 to all nearby enemies.</para> /// <para>Can only be executed when in raptor form.</para> /// <para>Additional Effect: Grants Disciplined Fist</para> @@ -23341,87 +23341,87 @@ LivingShadow = 16472, /// <para>Additional Effect: Changes form to coeurl</para> /// <para>Duration: 30s</para> /// </summary> -FourpointFury = 16473, +FourpointFury_PvE = 16473, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16474"><strong>Enlightenment</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/16474"><strong>Enlightenment</strong></see> <i>PvE</i> (MNK) [16474] [Ability] /// <para>Delivers an attack with a potency of 170 to all enemies in a straight line before you.</para> /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para> /// <para>Shares a recast timer with The Forbidden Chakra.</para> /// </summary> -Enlightenment = 16474, +Enlightenment_PvE = 16474, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16475"><strong>Anatman</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/16475"><strong>Anatman</strong></see> <i>PvE</i> (MNK) [16475] [Ability] /// <para>Extends the duration of Disciplined Fist and your present form to maximum and halts their expiration.</para> /// <para>Duration: 30s</para> /// <para>Cancels auto-attack upon execution. Effect ends upon using another action or moving (including facing a different direction).</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// </summary> -Anatman = 16475, +Anatman_PvE = 16475, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16476"><strong>Six-sided Star</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/16476"><strong>Six-sided Star</strong></see> <i>PvE</i> (MNK) [16476] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Increases movement speed</para> /// <para>Duration: 5s</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -SixsidedStar = 16476, +SixsidedStar_PvE = 16476, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16477"><strong>Coerthan Torment</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/16477"><strong>Coerthan Torment</strong></see> <i>PvE</i> (DRG) [16477] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para> /// <para>Combo Action: Sonic Thrust</para> /// <para>Combo Potency: 150</para> /// <para>Combo Bonus: Grants Draconian Fire</para> /// <para>Duration: 30s</para> /// </summary> -CoerthanTorment = 16477, +CoerthanTorment_PvE = 16477, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16478"><strong>High Jump</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/16478"><strong>High Jump</strong></see> <i>PvE</i> (DRG) [16478] [Ability] /// <para>Delivers a jumping attack with a potency of 400. Returns you to your original position after the attack is made.</para> /// <para>Additional Effect: Grants Dive Ready</para> /// <para>Duration: 15s</para> /// </summary> -HighJump = 16478, +HighJump_PvE = 16478, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16479"><strong>Raiden Thrust</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/16479"><strong>Raiden Thrust</strong></see> <i>PvE</i> (DRG) [16479] [Weaponskill] /// <para>Delivers an attack with a potency of 280.</para> /// <para>Additional Effect: Sharpens the Firstminds' Focus by 1</para> /// <para>Can only be executed while under the effect of Draconian Fire.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RaidenThrust = 16479, +RaidenThrust_PvE = 16479, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16480"><strong>Stardiver</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/16480"><strong>Stardiver</strong></see> <i>PvE</i> (DRG) [16480] [Ability] /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 620 for the first enemy, and 30% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Life of the Dragon.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Stardiver = 16480, +Stardiver_PvE = 16480, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16481"><strong>Hissatsu: Senei</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16481"><strong>Hissatsu: Senei</strong></see> <i>PvE</i> (SAM) [16481] [Ability] /// <para>Delivers an attack with a potency of 860.</para> /// <para>Kenki Gauge Cost: 25</para> /// <para>Shares a recast timer with Hissatsu: Guren.</para> /// </summary> -HissatsuSenei = 16481, +HissatsuSenei_PvE = 16481, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16482"><strong>Ikishoten</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16482"><strong>Ikishoten</strong></see> <i>PvE</i> (SAM) [16482] [Ability] /// <para>Increases Kenki Gauge by 50.</para> /// <para>Additional Effect: Grants Ogi Namikiri Ready</para> /// <para>Duration: 30s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Ikishoten = 16482, +Ikishoten_PvE = 16482, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16483"><strong>Tsubame-gaeshi</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16483"><strong>Tsubame-gaeshi</strong></see> <i>PvE</i> (SAM) [16483] [Ability] /// <para>Repeats the previously executed iaijutsu.</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed immediately following Iaijutsu.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// </summary> -Tsubamegaeshi = 16483, +Tsubamegaeshi_PvE = 16483, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16484"><strong>Kaeshi: Higanbana</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16484"><strong>Kaeshi: Higanbana</strong></see> <i>PvE</i> (SAM) [16484] [Ability] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 45</para> @@ -23431,51 +23431,51 @@ Tsubamegaeshi = 16483, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KaeshiHiganbana = 16484, +KaeshiHiganbana_PvE = 16484, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16485"><strong>Kaeshi: Goken</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16485"><strong>Kaeshi: Goken</strong></see> <i>PvE</i> (SAM) [16485] [Ability] /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KaeshiGoken = 16485, +KaeshiGoken_PvE = 16485, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16486"><strong>Kaeshi: Setsugekka</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16486"><strong>Kaeshi: Setsugekka</strong></see> <i>PvE</i> (SAM) [16486] [Ability] /// <para>Delivers a critical hit with a potency of 640.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KaeshiSetsugekka = 16486, +KaeshiSetsugekka_PvE = 16486, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16487"><strong>Shoha</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/16487"><strong>Shoha</strong></see> <i>PvE</i> (SAM) [16487] [Ability] /// <para>Delivers an attack with a potency of 560.</para> /// <para>Can only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikirior Meditateor Meditate while in combat.</para> /// <para>Meditation effect fades upon execution.</para> /// <para>Shares a recast timer with Shoha II.</para> /// </summary> -Shoha = 16487, +Shoha_PvE = 16487, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16488"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/16488"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [16488] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Combo Action: Death Blossom</para> /// <para>Combo Potency: 130</para> /// <para>Combo Bonus: Extends Huton duration by 10s to a maximum of 60s</para> /// <para>Combo Bonus: Increases Ninki Gauge by 5</para> /// </summary> -HakkeMujinsatsu = 16488, +HakkeMujinsatsu_PvE = 16488, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16489"><strong>Meisui</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/16489"><strong>Meisui</strong></see> <i>PvE</i> (NIN) [16489] [Ability] /// <para>Dispels Suiton, increasing the Ninki Gauge by 50.</para> /// <para>Additional Effect: Increases the potency of Bhavacakra to 500</para> /// <para>Duration: 30s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -Meisui = 16489, +Meisui_PvE = 16489, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16491"><strong>Goka Mekkyaku</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/16491"><strong>Goka Mekkyaku</strong></see> <i>PvE</i> (NIN) [16491] [Ability] /// <para>Deals fire damage with a potency of 600 to target and all enemies nearby it.</para> /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para> /// <para>Can only be executed while under the effect of Kassatsu.</para> @@ -23483,9 +23483,9 @@ Meisui = 16489, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -GokaMekkyaku = 16491, +GokaMekkyaku_PvE = 16491, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16492"><strong>Hyosho Ranryu</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/16492"><strong>Hyosho Ranryu</strong></see> <i>PvE</i> (NIN) [16492] [Ability] /// <para>Deals ice damage with a potency of 1,300.</para> /// <para>Mudra Combination: Ten→Jin or Chi→Jin</para> /// <para>Can only be executed while under the effect of Kassatsu.</para> @@ -23493,9 +23493,9 @@ GokaMekkyaku = 16491, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HyoshoRanryu = 16492, +HyoshoRanryu_PvE = 16492, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16493"><strong>Bunshin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/16493"><strong>Bunshin</strong></see> <i>PvE</i> (NIN) [16493] [Ability] /// <para>Grants 5 stacks of Bunshin, each stack allowing your shadow to attack enemies each time you execute a weaponskill. Shadow attack potency varies based on the attack executed, but is not affected by combo bonuses.</para> /// <para>Melee Attack Potency: 160</para> /// <para>Ranged Attack Potency: 160</para> @@ -23508,23 +23508,23 @@ HyoshoRanryu = 16492, /// <para></para> /// <para>※Action changes to Phantom Kamaitachi upon execution.</para> /// </summary> -Bunshin = 16493, +Bunshin_PvE = 16493, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16494"><strong>Shadowbite</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/16494"><strong>Shadowbite</strong></see> <i>PvE</i> (BRD) [16494] [Weaponskill] /// <para>Delivers an attack with a potency of 170 to target and all enemies nearby it.</para> /// <para>Barrage Potency: 270</para> /// <para>Can only be executed when Shadowbite Ready.</para> /// </summary> -Shadowbite = 16494, +Shadowbite_PvE = 16494, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16495"><strong>Burst Shot</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/16495"><strong>Burst Shot</strong></see> <i>PvE</i> (BRD) [16495] [Weaponskill] /// <para>Delivers an attack with a potency of 220.</para> /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para> /// <para>Duration: 30s</para> /// </summary> -BurstShot = 16495, +BurstShot_PvE = 16495, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16496"><strong>Apex Arrow</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/16496"><strong>Apex Arrow</strong></see> <i>PvE</i> (BRD) [16496] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para> /// <para>Soul Voice Gauge Cost: 20 </para> /// <para>Potency increases up to 500 as Soul Voice Gauge exceeds minimum cost.</para> @@ -23534,38 +23534,38 @@ BurstShot = 16495, /// <para></para> /// <para>※Action changes to Blast Arrow while under the effect of Blast Arrow Ready.</para> /// </summary> -ApexArrow = 16496, +ApexArrow_PvE = 16496, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16497"><strong>Auto Crossbow</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16497"><strong>Auto Crossbow</strong></see> <i>PvE</i> (MCH) [16497] [Weaponskill] /// <para>Delivers an attack with a potency of 140 to all enemies in a cone before you.</para> /// <para>Can only be executed when firearm is Overheated.</para> /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -AutoCrossbow = 16497, +AutoCrossbow_PvE = 16497, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16498"><strong>Drill</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16498"><strong>Drill</strong></see> <i>PvE</i> (MCH) [16498] [Weaponskill] /// <para>Delivers an attack with a potency of 600.</para> /// <para>Shares a recast timer with Bioblaster.This weaponskill does not share a recast timer with any other actions.This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -Drill = 16498, +Drill_PvE = 16498, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16499"><strong>Bioblaster</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16499"><strong>Bioblaster</strong></see> <i>PvE</i> (MCH) [16499] [Weaponskill] /// <para>Delivers an attack with a potency of 50 to all enemies in a cone before you.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 15s</para> /// <para>Shares a recast timer with Drill.</para> /// </summary> -Bioblaster = 16499, +Bioblaster_PvE = 16499, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16500"><strong>Air Anchor</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16500"><strong>Air Anchor</strong></see> <i>PvE</i> (MCH) [16500] [Weaponskill] /// <para>Delivers an attack with a potency of 600.</para> /// <para>Additional Effect: Increases Battery Gauge by 20</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -AirAnchor = 16500, +AirAnchor_PvE = 16500, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16501"><strong>Automaton Queen</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16501"><strong>Automaton Queen</strong></see> <i>PvE</i> (MCH) [16501] [Ability] /// <para>Deploys an Automaton Queen to fight at your side.</para> /// <para>Potency of Automaton Queen actions increases as Battery Gauge exceeds required cost at time of deployment.</para> /// <para>Battery Gauge Cost: 50</para> @@ -23574,170 +23574,170 @@ AirAnchor = 16500, /// <para>Shuts down when time expires or upon execution of Queen Overdrive.</para> /// <para>Shares a recast timer with Queen Overdrive.</para> /// </summary> -AutomatonQueen = 16501, +AutomatonQueen_PvE = 16501, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16502"><strong>Queen Overdrive</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16502"><strong>Queen Overdrive</strong></see> <i>PvE</i> (MCH) [16502] [Ability] /// <para>Orders the Automaton Queen to use Pile Bunker.</para> /// <para>Pile Bunker Potency: 340</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 680.</para> /// <para>The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para> /// <para>Shares a recast timer with Automaton Queen.</para> /// </summary> -QueenOverdrive = 16502, +QueenOverdrive_PvE = 16502, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16503"><strong>Pile Bunker</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16503"><strong>Pile Bunker</strong></see> <i>PvE</i> (MCH) [16503] [Ability] /// <para>Delivers an attack with a potency of 340.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 680.</para> /// <para>The Automaton Queen shuts down after execution. The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PileBunker = 16503, +PileBunker_PvE = 16503, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16504"><strong>Arm Punch</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16504"><strong>Arm Punch</strong></see> <i>PvE</i> (MCH) [16504] [Weaponskill] /// <para>Delivers an attack with a potency of 120.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 240.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ArmPunch = 16504, +ArmPunch_PvE = 16504, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16505"><strong>Despair</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/16505"><strong>Despair</strong></see> <i>PvE</i> (BLM) [16505] [Spell] /// <para>Deals fire damage with a potency of 340.</para> /// <para>Additional Effect: Grants Astral Fire III</para> /// <para>Duration: 15s</para> /// <para>Can only be executed while under the effect of Astral Fire.</para> /// </summary> -Despair = 16505, +Despair_PvE = 16505, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16506"><strong>Umbral Soul</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/16506"><strong>Umbral Soul</strong></see> <i>PvE</i> (BLM) [16506] [Spell] /// <para>Grants Umbral Ice and 1 Umbral Heart.</para> /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para> /// <para>Can only be executed while under the effect of Umbral Ice.</para> /// </summary> -UmbralSoul = 16506, +UmbralSoul_PvE = 16506, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16507"><strong>Xenoglossy</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/16507"><strong>Xenoglossy</strong></see> <i>PvE</i> (BLM) [16507] [Spell] /// <para>Deals unaspected damage with a potency of 880.</para> /// <para>Polyglot Cost: 1</para> /// </summary> -Xenoglossy = 16507, +Xenoglossy_PvE = 16507, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16508"><strong>Energy Drain</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/16508"><strong>Energy Drain</strong></see> <i>PvE</i> (ACN SMN) [16508] [Ability] /// <para>Deals unaspected damage with a potency of 200.</para> /// <para>Additional Effect: Aetherflow II</para> /// <para>Additional Effect: Grants Further Ruin</para> /// <para>Duration: 60s</para> /// <para>Shares a recast timer with Energy Siphon.</para> /// </summary> -EnergyDrain_16508 = 16508, +EnergyDrain_PvE_16508 = 16508, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16510"><strong>Energy Siphon</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16510"><strong>Energy Siphon</strong></see> <i>PvE</i> (SMN) [16510] [Ability] /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para> /// <para>Additional Effect: Aetherflow II</para> /// <para>Additional Effect: Grants Further Ruin</para> /// <para>Duration: 60s</para> /// <para>Shares a recast timer with Energy Drain.</para> /// </summary> -EnergySiphon = 16510, +EnergySiphon_PvE = 16510, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16511"><strong>Outburst</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/16511"><strong>Outburst</strong></see> <i>PvE</i> (ACN SMN) [16511] [Spell] /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para> /// </summary> -Outburst = 16511, +Outburst_PvE = 16511, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16514"><strong>Fountain of Fire</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16514"><strong>Fountain of Fire</strong></see> <i>PvE</i> (SMN) [16514] [Spell] /// <para>Deals fire damage with a potency of 540.</para> /// <para>Can only be executed while under the effect of Firebird Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FountainOfFire = 16514, +FountainOfFire_PvE = 16514, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16515"><strong>Brand of Purgatory</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16515"><strong>Brand of Purgatory</strong></see> <i>PvE</i> (SMN) [16515] [Spell] /// <para>Deals fire damage with a potency of 240 to target and all enemies nearby it.</para> /// <para>Can only be executed while under the effect of Firebird Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BrandOfPurgatory = 16515, +BrandOfPurgatory_PvE = 16515, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16516"><strong>Enkindle Phoenix</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16516"><strong>Enkindle Phoenix</strong></see> <i>PvE</i> (SMN) [16516] [Ability] /// <para>Orders Demi-Phoenix to execute Revelation.</para> /// <para>Revelation Effect: Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies</para> /// <para>Action replaces Enkindle Bahamut while Demi-Phoenix is summoned.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnkindlePhoenix = 16516, +EnkindlePhoenix_PvE = 16516, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16517"><strong>Everlasting Flight</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16517"><strong>Everlasting Flight</strong></see> <i>PvE</i> (SMN) [16517] [Ability] /// <para>Gradually restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 21s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EverlastingFlight = 16517, +EverlastingFlight_PvE = 16517, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16518"><strong>Revelation</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16518"><strong>Revelation</strong></see> <i>PvE</i> (SMN) [16518] [Ability] /// <para>Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Can only be executed while Demi-Phoenix is summoned.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Revelation = 16518, +Revelation_PvE = 16518, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16519"><strong>Scarlet Flame</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/16519"><strong>Scarlet Flame</strong></see> <i>PvE</i> (SMN) [16519] [Spell] /// <para>Deals fire damage with a potency of 150.</para> /// <para>Will only execute while Demi-Phoenix is summoned.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ScarletFlame = 16519, +ScarletFlame_PvE = 16519, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16524"><strong>Verthunder II</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16524"><strong>Verthunder II</strong></see> <i>PvE</i> (RDM) [16524] [Spell] /// <para>Deals lightning damage with a potency of to target and all enemies nearby it.</para> /// <para>Additional Effect: Increases Black Mana by 7</para> /// </summary> -VerthunderIi = 16524, +VerthunderIi_PvE = 16524, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16525"><strong>Veraero II</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16525"><strong>Veraero II</strong></see> <i>PvE</i> (RDM) [16525] [Spell] /// <para>Deals wind damage with a potency of to target and all enemies nearby it.</para> /// <para>Additional Effect: Increases White Mana by 7</para> /// </summary> -VeraeroIi = 16525, +VeraeroIi_PvE = 16525, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16526"><strong>Impact</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16526"><strong>Impact</strong></see> <i>PvE</i> (RDM) [16526] [Spell] /// <para>Deals unaspected damage with a potency of to target and all enemies nearby it.</para> /// <para>Acceleration Potency: </para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 3</para> /// </summary> -Impact = 16526, +Impact_PvE = 16526, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16527"><strong>Engagement</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16527"><strong>Engagement</strong></see> <i>PvE</i> (RDM) [16527] [Ability] /// <para>Delivers an attack with a potency of .</para> /// <para>Maximum Charges: 2</para> /// <para>Shares a recast timer with Displacement.</para> /// </summary> -Engagement = 16527, +Engagement_PvE = 16527, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16528"><strong>Enchanted Reprise</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16528"><strong>Enchanted Reprise</strong></see> <i>PvE</i> (RDM) [16528] [Weaponskill] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Balance Gauge Cost: 5 Black Mana</para> /// <para>Balance Gauge Cost: 5 White Mana</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedReprise = 16528, +EnchantedReprise_PvE = 16528, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16529"><strong>Reprise</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16529"><strong>Reprise</strong></see> <i>PvE</i> (RDM) [16529] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Action upgraded to Enchanted Reprise if both Black Mana and White Mana are at 5 or more.</para> /// </summary> -Reprise = 16529, +Reprise_PvE = 16529, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16530"><strong>Scorch</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/16530"><strong>Scorch</strong></see> <i>PvE</i> (RDM) [16530] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 680 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Combo Action: Verflare or Verholy</para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 4</para> @@ -23745,113 +23745,113 @@ Reprise = 16529, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Scorch = 16530, +Scorch_PvE = 16530, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16531"><strong>Afflatus Solace</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16531"><strong>Afflatus Solace</strong></see> <i>PvE</i> (WHM) [16531] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Nourishes the Blood Lily</para> /// <para>Healing Gauge Cost: 1 Lily</para> /// </summary> -AfflatusSolace = 16531, +AfflatusSolace_PvE = 16531, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16532"><strong>Dia</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16532"><strong>Dia</strong></see> <i>PvE</i> (WHM) [16532] [Spell] /// <para>Deals unaspected damage with a potency of 65.</para> /// <para>Additional Effect: Unaspected damage over time</para> /// <para>Potency: 65</para> /// <para>Duration: 30s</para> /// </summary> -Dia = 16532, +Dia_PvE = 16532, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16533"><strong>Glare</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16533"><strong>Glare</strong></see> <i>PvE</i> (WHM) [16533] [Spell] /// <para>Deals unaspected damage with a potency of 290.</para> /// </summary> -Glare = 16533, +Glare_PvE = 16533, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16534"><strong>Afflatus Rapture</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16534"><strong>Afflatus Rapture</strong></see> <i>PvE</i> (WHM) [16534] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Nourishes the Blood Lily</para> /// <para>Healing Gauge Cost: 1 Lily</para> /// </summary> -AfflatusRapture = 16534, +AfflatusRapture_PvE = 16534, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16535"><strong>Afflatus Misery</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16535"><strong>Afflatus Misery</strong></see> <i>PvE</i> (WHM) [16535] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,240 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Can only be executed when the Blood Lily is in full bloom.</para> /// </summary> -AfflatusMisery = 16535, +AfflatusMisery_PvE = 16535, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16536"><strong>Temperance</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/16536"><strong>Temperance</strong></see> <i>PvE</i> (WHM) [16536] [Ability] /// <para>Increases healing magic potency by 20%, while reducing damage taken by self and all party members within a radius of 50 yalms by 10%.</para> /// <para>Duration: 20s</para> /// </summary> -Temperance = 16536, +Temperance_PvE = 16536, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16537"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16537"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [16537] [Ability] /// <para>Orders faerie to execute Whispering Dawn. If Seraph is summoned, orders her to execute Angel's Whisper.</para> /// <para>Whispering Dawn/Angel's Whisper Effect: Gradually restores the HP of all nearby party members</para> /// <para>Cure Potency: 80</para> /// <para>Duration: 21s</para> /// </summary> -WhisperingDawn_16537 = 16537, +WhisperingDawn_PvE_16537 = 16537, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16538"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16538"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [16538] [Ability] /// <para>Orders faerie to execute Fey Illumination. If Seraph is summoned, orders her to execute Seraphic Illumination.</para> /// <para>Fey Illumination/Seraphic Illumination Effect: Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%</para> /// <para>Duration: 20s</para> /// <para>Effect cannot be stacked with Seraphic Illumination.</para> /// </summary> -FeyIllumination_16538 = 16538, +FeyIllumination_PvE_16538 = 16538, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16539"><strong>Art of War</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16539"><strong>Art of War</strong></see> <i>PvE</i> (SCH) [16539] [Spell] /// <para>Deals unaspected damage with a potency of to all nearby enemies.</para> /// </summary> -ArtOfWar = 16539, +ArtOfWar_PvE = 16539, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16540"><strong>Biolysis</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16540"><strong>Biolysis</strong></see> <i>PvE</i> (SCH) [16540] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 70</para> /// <para>Duration: 30s</para> /// </summary> -Biolysis = 16540, +Biolysis_PvE = 16540, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16541"><strong>Broil III</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16541"><strong>Broil III</strong></see> <i>PvE</i> (SCH) [16541] [Spell] /// <para>Deals unaspected damage with a potency of 255.</para> /// </summary> -BroilIii = 16541, +BroilIii_PvE = 16541, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16542"><strong>Recitation</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16542"><strong>Recitation</strong></see> <i>PvE</i> (SCH) [16542] [Ability] /// <para>Allows the execution of Adloquium, Succor, Indomitability, or Excogitation without consuming resources while also ensuring critical HP is restored.</para> /// <para>Duration: 15s</para> /// </summary> -Recitation = 16542, +Recitation_PvE = 16542, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16543"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16543"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16543] [Ability] /// <para>Orders faerie to execute Fey Blessing.</para> /// <para>Fey Blessing Effect: Restores the HP of all nearby party members</para> /// <para>Cure Potency: 320</para> /// </summary> -FeyBlessing = 16543, +FeyBlessing_PvE = 16543, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16544"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16544"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16544] [Ability] /// <para>Restores the HP of all nearby party members.</para> /// <para>Cure Potency: 320</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FeyBlessing_16544 = 16544, +FeyBlessing_PvE_16544 = 16544, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16545"><strong>Summon Seraph</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16545"><strong>Summon Seraph</strong></see> <i>PvE</i> (SCH) [16545] [Ability] /// <para>Summons Seraph to fight at your side. When set to guard, automatically casts Seraphic Veil on party members who suffer damage.</para> /// <para>Cannot summon Seraph unless a pet is already summoned. Current pet will leave the battlefield while Seraph is present, and return once gone.</para> /// <para>Duration: 22s</para> /// <para></para> /// <para>※Action changes to Consolation upon execution.</para> /// </summary> -SummonSeraph = 16545, +SummonSeraph_PvE = 16545, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16546"><strong>Consolation</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16546"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16546] [Ability] /// <para>Orders Seraph to execute Consolation.</para> /// <para>Consolation Effect: Restores the HP of all nearby party members</para> /// <para>Cure Potency: 250</para> @@ -23861,9 +23861,9 @@ SummonSeraph = 16545, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Consolation = 16546, +Consolation_PvE = 16546, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16547"><strong>Consolation</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16547"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16547] [Ability] /// <para>Restores the HP of all nearby party members.</para> /// <para>Cure Potency: 250</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para> @@ -23871,9 +23871,9 @@ Consolation = 16546, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Consolation_16547 = 16547, +Consolation_PvE_16547 = 16547, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16548"><strong>Seraphic Veil</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16548"><strong>Seraphic Veil</strong></see> <i>PvE</i> (SCH) [16548] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para> @@ -23881,63 +23881,63 @@ Consolation_16547 = 16547, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SeraphicVeil = 16548, +SeraphicVeil_PvE = 16548, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16550"><strong>Angel's Whisper</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16550"><strong>Angel's Whisper</strong></see> <i>PvE</i> (SCH) [16550] [Ability] /// <para>Gradually restores the HP of all nearby party members.</para> /// <para>Cure Potency: 80</para> /// <para>Duration: 21s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AngelsWhisper = 16550, +AngelsWhisper_PvE = 16550, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16551"><strong>Seraphic Illumination</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/16551"><strong>Seraphic Illumination</strong></see> <i>PvE</i> (SCH) [16551] [Ability] /// <para>Increases healing magic potency of nearby party members by 10%, while reducing magic damage taken by nearby party members by 5%.</para> /// <para>Duration: 20s</para> /// <para>Effect cannot be stacked with Fey Illumination.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SeraphicIllumination = 16551, +SeraphicIllumination_PvE = 16551, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16552"><strong>Divination</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16552"><strong>Divination</strong></see> <i>PvE</i> (AST) [16552] [Ability] /// <para>Increases damage dealt by self and nearby party members by 6%.</para> /// <para>Duration: 15s</para> /// </summary> -Divination = 16552, +Divination_PvE = 16552, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16553"><strong>Celestial Opposition</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16553"><strong>Celestial Opposition</strong></see> <i>PvE</i> (AST) [16553] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 200</para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 15s</para> /// </summary> -CelestialOpposition = 16553, +CelestialOpposition_PvE = 16553, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16554"><strong>Combust III</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16554"><strong>Combust III</strong></see> <i>PvE</i> (AST) [16554] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 55</para> /// <para>Duration: 30s</para> /// </summary> -CombustIii = 16554, +CombustIii_PvE = 16554, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16555"><strong>Malefic IV</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16555"><strong>Malefic IV</strong></see> <i>PvE</i> (AST) [16555] [Spell] /// <para>Deals unaspected damage with a potency of 230.</para> /// </summary> -MaleficIv = 16555, +MaleficIv_PvE = 16555, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16556"><strong>Celestial Intersection</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16556"><strong>Celestial Intersection</strong></see> <i>PvE</i> (AST) [16556] [Ability] /// <para>Restores own or target party member's HP.</para> /// <para>Cure Potency: 200</para> /// <para>Additional Sect Effect: Erects a magicked barrier which nullifies damage equaling 200% of the amount of HP restored</para> /// <para>Duration: 30s</para> /// <para>Maximum Charges: 2</para> /// </summary> -CelestialIntersection = 16556, +CelestialIntersection_PvE = 16556, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16557"><strong>Horoscope</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16557"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16557] [Ability] /// <para>Reads your fortune and those of nearby party members, granting them Horoscope.</para> /// <para>Duration: 10s</para> /// <para>Effect upgraded to Horoscope Helios upon receiving the effects of Helios or Aspected Helios.</para> @@ -23946,17 +23946,17 @@ CelestialIntersection = 16556, /// <para>Horoscope Cure Potency: 200</para> /// <para>Horoscope Helios Cure Potency: 400</para> /// </summary> -Horoscope = 16557, +Horoscope_PvE = 16557, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16558"><strong>Horoscope</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16558"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16558] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Potency is determined by the Horoscope effect of party members. Effect expires upon execution.</para> /// <para>Horoscope Potency: 200</para> /// <para>Horoscope Helios Potency: 400</para> /// </summary> -Horoscope_16558 = 16558, +Horoscope_PvE_16558 = 16558, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16559"><strong>Neutral Sect</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/16559"><strong>Neutral Sect</strong></see> <i>PvE</i> (AST) [16559] [Ability] /// <para>Increases healing magic potency by 20%.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: When casting Aspected Benefic or Aspected Helios, erects a magicked barrier which nullifies damage</para> @@ -23964,460 +23964,460 @@ Horoscope_16558 = 16558, /// <para>Aspected Helios Effect: Nullifies damage equaling 125% of the amount of HP restored</para> /// <para>Duration: 30s</para> /// </summary> -NeutralSect = 16559, +NeutralSect_PvE = 16559, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16560"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/16560"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell] /// <para>Afflicts target with Sleep.</para> /// <para>Duration: 30s</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -Repose = 16560, +Repose_PvE = 16560, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16574"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16574"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell] /// <para>Deals fire damage with a potency of 430.</para> /// </summary> -RonkanFireIii = 16574, +RonkanFireIii_PvE = 16574, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16575"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16575"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell] /// <para>Deals ice damage with a potency of 240.</para> /// <para>Additional Effect: Restores MP</para> /// </summary> -RonkanBlizzardIii = 16575, +RonkanBlizzardIii_PvE = 16575, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16576"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16576"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell] /// <para>Deals lightning damage with a potency of 200.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 40</para> /// <para>Duration: 24s</para> /// </summary> -RonkanThunderIii = 16576, +RonkanThunderIii_PvE = 16576, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16577"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16577"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell] /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para> /// </summary> -RonkanFlare = 16577, +RonkanFlare_PvE = 16577, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16578"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16578"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break] /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para> /// </summary> -FallingStar = 16578, +FallingStar_PvE = 16578, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16766"><strong>Detonator</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16766"><strong>Detonator</strong></see> <i>PvE</i> (MCH) [16766] [Ability] /// <para>Ends the effect of Wildfire, dealing damage to the target.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Detonator = 16766, +Detonator_PvE = 16766, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16788"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16788"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill] /// <para></para> /// </summary> -FastBlade_16788 = 16788, +FastBlade_PvE_16788 = 16788, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16789"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16789"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill] /// <para></para> /// </summary> -Sunshadow = 16789, +Sunshadow_PvE = 16789, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16804"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16804"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability] /// <para>Delivers a jumping attack with a potency of 200.</para> /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -RoughDivide_16804 = 16804, +RoughDivide_PvE_16804 = 16804, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16889"><strong>Tactician</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/16889"><strong>Tactician</strong></see> <i>PvE</i> (MCH) [16889] [Ability] /// <para>Reduces damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para>Effect cannot be stacked with bard's Troubadour or dancer's Shield Samba.</para> /// </summary> -Tactician = 16889, +Tactician_PvE = 16889, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16984"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16984"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill] /// <para></para> /// </summary> -Swashbuckler = 16984, +Swashbuckler_PvE = 16984, /// <summary> -/// <see href="https://garlandtools.org/db/#action/16985"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/16985"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill] /// <para></para> /// </summary> -GreatestEclipse = 16985, +GreatestEclipse_PvE = 16985, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17000"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17000"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 1300</para> /// </summary> -RonkanCureIi = 17000, +RonkanCureIi_PvE = 17000, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17001"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17001"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 500</para> /// </summary> -RonkanMedica = 17001, +RonkanMedica_PvE = 17001, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17002"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17002"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell] /// <para>Removes a single detrimental effect from target.</para> /// </summary> -RonkanEsuna = 17002, +RonkanEsuna_PvE = 17002, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17003"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17003"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell] /// <para>Deals earth damage with a potency of 200.</para> /// </summary> -RonkanStoneIi = 17003, +RonkanStoneIi_PvE = 17003, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17004"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17004"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability] /// <para>Restores all of a target's HP.</para> /// </summary> -RonkanRenew = 17004, +RonkanRenew_PvE = 17004, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17055"><strong>Play</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/17055"><strong>Play</strong></see> <i>PvE</i> (AST) [17055] [Ability] /// <para>Triggers the effect of your drawn arcanum.</para> /// </summary> -Play = 17055, +Play_PvE = 17055, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17105"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17105"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break] /// <para></para> /// </summary> -GunmetalSoul = 17105, +GunmetalSoul_PvE = 17105, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17106"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17106"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break] /// <para></para> /// </summary> -CrimsonLotus = 17106, +CrimsonLotus_PvE = 17106, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17122"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17122"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill] /// <para>Delivers an attack with a potency of 300.</para> /// <para>Additional Effect: Acidic Bite</para> /// <para>Potency: 120</para> /// <para>Duration: 30s</para> /// </summary> -AcidicBite = 17122, +AcidicBite_PvE = 17122, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17123"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17123"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill] /// <para>Delivers an attack with a potency of 550.</para> /// </summary> -HeavyShot_17123 = 17123, +HeavyShot_PvE_17123 = 17123, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17124"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17124"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability] /// <para>Delivers an attack with a potency of 1,100.</para> /// </summary> -RadiantArrow = 17124, +RadiantArrow_PvE = 17124, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17125"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17125"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill] /// <para>Interrupts the use of a target's action.</para> /// </summary> -DullingArrow = 17125, +DullingArrow_PvE = 17125, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17206"><strong>Roller Dash</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/17206"><strong>Roller Dash</strong></see> <i>PvE</i> (MCH) [17206] [Weaponskill] /// <para>Rushes target and delivers an attack with a potency of 240.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 480.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RollerDash = 17206, +RollerDash_PvE = 17206, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17209"><strong>Hypercharge</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/17209"><strong>Hypercharge</strong></see> <i>PvE</i> (MCH) [17209] [Ability] /// <para>Grants 5 stacks of Overheated, each stack allowing the execution of Heat Blast or Auto Crossbow.</para> /// <para>Duration: 10s</para> /// <para>Overheated Effect: Increases the potency of single-target weaponskills by 20</para> /// <para>Heat Gauge Cost: 50</para> /// <para>Overheated effect only applicable to machinist job actions.</para> /// </summary> -Hypercharge = 17209, +Hypercharge_PvE = 17209, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17215"><strong>Summon Eos</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/17215"><strong>Summon Eos</strong></see> <i>PvE</i> (SCH) [17215] [Spell] /// <para>Summons the faerie Eos to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.</para> /// </summary> -SummonEos = 17215, +SummonEos_PvE = 17215, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17236"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17236"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 1200</para> /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para> /// </summary> -ChivalrousSpirit = 17236, +ChivalrousSpirit_PvE = 17236, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17291"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17291"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability] /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para> /// <para>Additional Effect: Fading Fast and Vital Sign</para> /// </summary> -SouldeepInvisibility = 17291, +SouldeepInvisibility_PvE = 17291, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17390"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17390"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event] /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para> /// </summary> -SortofDreadGaze = 17390, +SortofDreadGaze_PvE = 17390, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17391"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17391"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount] /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para> /// <para>※Has no effect in battle.</para> /// </summary> -SortofDreadGaze_17391 = 17391, +SortofDreadGaze_PvE_17391 = 17391, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17413"><strong>Spinning Edge</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17413"><strong>Spinning Edge</strong></see> <i>PvE</i> (NIN) [17413] [Weaponskill] /// <para></para> /// </summary> -SpinningEdge_17413 = 17413, +SpinningEdge_PvE_17413 = 17413, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17414"><strong>Gust Slash</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17414"><strong>Gust Slash</strong></see> <i>PvE</i> (NIN) [17414] [Weaponskill] /// <para></para> /// </summary> -GustSlash_17414 = 17414, +GustSlash_PvE_17414 = 17414, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17415"><strong>Aeolian Edge</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17415"><strong>Aeolian Edge</strong></see> <i>PvE</i> (NIN) [17415] [Weaponskill] /// <para></para> /// </summary> -AeolianEdge_17415 = 17415, +AeolianEdge_PvE_17415 = 17415, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17417"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17417"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [17417] [Weaponskill] /// <para></para> /// </summary> -ArmorCrush_17417 = 17417, +ArmorCrush_PvE_17417 = 17417, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17418"><strong>Throwing Dagger</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17418"><strong>Throwing Dagger</strong></see> <i>PvE</i> (NIN) [17418] [Weaponskill] /// <para></para> /// </summary> -ThrowingDagger_17418 = 17418, +ThrowingDagger_PvE_17418 = 17418, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17419"><strong>Death Blossom</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17419"><strong>Death Blossom</strong></see> <i>PvE</i> (NIN) [17419] [Weaponskill] /// <para></para> /// </summary> -DeathBlossom_17419 = 17419, +DeathBlossom_PvE_17419 = 17419, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17420"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/17420"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [17420] [Weaponskill] /// <para></para> /// </summary> -HakkeMujinsatsu_17420 = 17420, +HakkeMujinsatsu_PvE_17420 = 17420, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17596"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17596"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability] /// <para>Restores own HP.</para> /// <para>Cure Potency: 1,000</para> /// <para>Cure potency varies with current attack power.</para> /// </summary> -HuntersPrudence = 17596, +HuntersPrudence_PvE = 17596, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17839"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17839"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability] /// <para>Reduces damage taken by 25%.</para> /// <para>Duration: 10s</para> /// </summary> -Nebula_17839 = 17839, +Nebula_PvE_17839 = 17839, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17864"><strong>Bio</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/17864"><strong>Bio</strong></see> <i>PvE</i> (SCH) [17864] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 20</para> /// <para>Duration: 30s</para> /// </summary> -Bio = 17864, +Bio_PvE = 17864, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17865"><strong>Bio II</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/17865"><strong>Bio II</strong></see> <i>PvE</i> (SCH) [17865] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 40</para> /// <para>Duration: 30s</para> /// </summary> -BioIi = 17865, +BioIi_PvE = 17865, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17869"><strong>Ruin</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/17869"><strong>Ruin</strong></see> <i>PvE</i> (SCH) [17869] [Spell] /// <para>Deals unaspected damage with a potency of 150.</para> /// </summary> -Ruin_17869 = 17869, +Ruin_PvE_17869 = 17869, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17870"><strong>Ruin II</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/17870"><strong>Ruin II</strong></see> <i>PvE</i> (SCH) [17870] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// </summary> -RuinIi_17870 = 17870, +RuinIi_PvE_17870 = 17870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/17901"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/17901"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability] /// <para>Increases damage dealt by 10% and accuracy by 100%.</para> /// <para>Duration: 10s</para> /// </summary> -Smackdown = 17901, +Smackdown_PvE = 17901, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18073"><strong>Ending</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/18073"><strong>Ending</strong></see> <i>PvE</i> (DNC) [18073] [Ability] /// <para>Ends dance with your partner.</para> /// </summary> -Ending = 18073, +Ending_PvE = 18073, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18187"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18187"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event] /// <para>Sucks up any substance with a great huffing snort.</para> /// </summary> -SiphonSnout = 18187, +SiphonSnout_PvE = 18187, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18188"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18188"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount] /// <para>Sucks up any substance with a great huffing snort.</para> /// <para>※Has no effect in battle.</para> /// </summary> -SiphonSnout_18188 = 18188, +SiphonSnout_PvE_18188 = 18188, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18295"><strong>Alpine Draft</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18295"><strong>Alpine Draft</strong></see> <i>PvE</i> (BLU) [18295] [Spell] /// <para>Deals wind damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -AlpineDraft = 18295, +AlpineDraft_PvE = 18295, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18296"><strong>Protean Wave</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18296"><strong>Protean Wave</strong></see> <i>PvE</i> (BLU) [18296] [Spell] /// <para>Deals water damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: 15-yalm knockback</para> /// </summary> -ProteanWave = 18296, +ProteanWave_PvE = 18296, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18297"><strong>Northerlies</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18297"><strong>Northerlies</strong></see> <i>PvE</i> (BLU) [18297] [Spell] /// <para>Deals ice damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Enemies affected by Dropsy are frozen. The Dropsy effect is also removed.</para> /// <para>Duration: 20s</para> /// </summary> -Northerlies = 18297, +Northerlies_PvE = 18297, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18298"><strong>Electrogenesis</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18298"><strong>Electrogenesis</strong></see> <i>PvE</i> (BLU) [18298] [Spell] /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -Electrogenesis = 18298, +Electrogenesis_PvE = 18298, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18299"><strong>Kaltstrahl</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18299"><strong>Kaltstrahl</strong></see> <i>PvE</i> (BLU) [18299] [Spell] /// <para>Deals physical damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -Kaltstrahl = 18299, +Kaltstrahl_PvE = 18299, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18300"><strong>Abyssal Transfixion</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18300"><strong>Abyssal Transfixion</strong></see> <i>PvE</i> (BLU) [18300] [Spell] /// <para>Deals physical damage with a potency of 220.</para> /// <para>Additional Effect: Paralysis</para> /// <para>Duration: 30s</para> /// </summary> -AbyssalTransfixion = 18300, +AbyssalTransfixion_PvE = 18300, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18301"><strong>Chirp</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18301"><strong>Chirp</strong></see> <i>PvE</i> (BLU) [18301] [Spell] /// <para>Puts all nearby enemies to sleep.</para> /// <para>Duration: 40s</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -Chirp = 18301, +Chirp_PvE = 18301, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18302"><strong>Eerie Soundwave</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18302"><strong>Eerie Soundwave</strong></see> <i>PvE</i> (BLU) [18302] [Spell] /// <para>Removes one beneficial effect from all nearby enemies.</para> /// </summary> -EerieSoundwave = 18302, +EerieSoundwave_PvE = 18302, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18303"><strong>Pom Cure</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18303"><strong>Pom Cure</strong></see> <i>PvE</i> (BLU) [18303] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 100</para> /// <para>Cure potency is increased to 500 when you are under the effect of Aetheric Mimicry: Healer.</para> /// </summary> -PomCure = 18303, +PomCure_PvE = 18303, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18304"><strong>Gobskin</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18304"><strong>Gobskin</strong></see> <i>PvE</i> (BLU) [18304] [Spell] /// <para>Creates a barrier around self and all nearby party members that absorbs damage equivalent to a heal of 100 potency.</para> /// <para>Duration: 30s</para> /// <para>Barrier strength is increased to absorb damage equivalent to a heal of 250 potency when you are under the effect of Aetheric Mimicry: Healer.</para> /// <para>Effect cannot be stacked with those of scholar's Galvanize or sage's Eukrasian Diagnosis and Eukrasian Prognosis.</para> /// </summary> -Gobskin = 18304, +Gobskin_PvE = 18304, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18305"><strong>Magic Hammer</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18305"><strong>Magic Hammer</strong></see> <i>PvE</i> (BLU) [18305] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Lowers intelligence and mind attributes by 10%</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Restores 10% of maximum MP</para> /// <para>Shares a recast timer with Candy Cane.</para> /// </summary> -MagicHammer = 18305, +MagicHammer_PvE = 18305, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18306"><strong>Avail</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18306"><strong>Avail</strong></see> <i>PvE</i> (BLU) [18306] [Spell] /// <para>Direct damage intended for you to another party member.</para> /// <para>Duration: 12s</para> /// <para>Can only be executed when member is within 10 yalms. Does not activate with certain attacks.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Avail = 18306, +Avail_PvE = 18306, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18307"><strong>Frog Legs</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18307"><strong>Frog Legs</strong></see> <i>PvE</i> (BLU) [18307] [Spell] /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list.</para> /// </summary> -FrogLegs = 18307, +FrogLegs_PvE = 18307, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18308"><strong>Sonic Boom</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18308"><strong>Sonic Boom</strong></see> <i>PvE</i> (BLU) [18308] [Spell] /// <para>Deals wind damage with a potency of 210.</para> /// </summary> -SonicBoom = 18308, +SonicBoom_PvE = 18308, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18309"><strong>Whistle</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18309"><strong>Whistle</strong></see> <i>PvE</i> (BLU) [18309] [Spell] /// <para>Increases the potency of the next physical damage spell cast by 80%.</para> /// <para>Duration: 30s</para> /// <para>Effect cannot be stacked with Boost.</para> /// </summary> -Whistle = 18309, +Whistle_PvE = 18309, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18310"><strong>White Knight's Tour</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18310"><strong>White Knight's Tour</strong></see> <i>PvE</i> (BLU) [18310] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Potency is increased to 400 when enemies are bound. The Bind effect is also removed.</para> /// <para>Additional Effect: Slow +20%</para> /// <para>Duration: 20s</para> /// </summary> -WhiteKnightsTour = 18310, +WhiteKnightsTour_PvE = 18310, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18311"><strong>Black Knight's Tour</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18311"><strong>Black Knight's Tour</strong></see> <i>PvE</i> (BLU) [18311] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Potency is increased to 400 when enemies are under the effect of Slow. The Slow effect is also removed.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 20s</para> /// </summary> -BlackKnightsTour = 18311, +BlackKnightsTour_PvE = 18311, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18312"><strong>Level 5 Death</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18312"><strong>Level 5 Death</strong></see> <i>PvE</i> (BLU) [18312] [Spell] /// <para>KOs all nearby enemies.</para> /// <para>Chance of successful attack is low.</para> /// <para>Enemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.</para> /// <para>Shares a recast timer with Ultravibration.</para> /// </summary> -Level5Death = 18312, +Level5Death_PvE = 18312, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18313"><strong>Launcher</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18313"><strong>Launcher</strong></see> <i>PvE</i> (BLU) [18313] [Spell] /// <para>Delivers an attack to all nearby enemies randomly dealing 50%, 30%, 20%, or 10% of their HP.</para> /// <para>Has no effect on enemies whose level is higher than your own.</para> /// </summary> -Launcher = 18313, +Launcher_PvE = 18313, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18314"><strong>Perpetual Ray</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18314"><strong>Perpetual Ray</strong></see> <i>PvE</i> (BLU) [18314] [Spell] /// <para>Deals unaspected damage with a potency of 220.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 1s</para> /// <para>Ignores target's Stun resistance.</para> /// </summary> -PerpetualRay = 18314, +PerpetualRay_PvE = 18314, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18315"><strong>Cactguard</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18315"><strong>Cactguard</strong></see> <i>PvE</i> (BLU) [18315] [Spell] /// <para>Reduces target party member's damage taken by 5%.</para> /// <para>Duration: 6s</para> /// <para>Increases damage reduction to 15% when you are under the effect of Aetheric Mimicry: Tank.</para> /// </summary> -Cactguard = 18315, +Cactguard_PvE = 18315, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18316"><strong>Revenge Blast</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18316"><strong>Revenge Blast</strong></see> <i>PvE</i> (BLU) [18316] [Spell] /// <para>Deals physical damage with a potency of 50.</para> /// <para>Potency is increased to 500 when your HP is below 20%.</para> /// </summary> -RevengeBlast = 18316, +RevengeBlast_PvE = 18316, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18317"><strong>Angel Whisper</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18317"><strong>Angel Whisper</strong></see> <i>PvE</i> (BLU) [18317] [Spell] /// <para>Resurrects target to a weakened state.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -AngelWhisper = 18317, +AngelWhisper_PvE = 18317, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18318"><strong>Exuviation</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18318"><strong>Exuviation</strong></see> <i>PvE</i> (BLU) [18318] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 50</para> /// <para>Additional Effect: Removes one detrimental effect from all nearby party members</para> /// <para>Cure potency is increased to 300 when you are under the effect of Aetheric Mimicry: Healer.</para> /// </summary> -Exuviation = 18318, +Exuviation_PvE = 18318, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18319"><strong>Reflux</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18319"><strong>Reflux</strong></see> <i>PvE</i> (BLU) [18319] [Spell] /// <para>Deals lightning damage with a potency of 220.</para> /// <para>Additional Effect: Heavy +40%</para> /// <para>Duration: 10s</para> /// <para>Ignores target's Heavy resistance.</para> /// </summary> -Reflux = 18319, +Reflux_PvE = 18319, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18320"><strong>Devour</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18320"><strong>Devour</strong></see> <i>PvE</i> (BLU) [18320] [Spell] /// <para>Deals unaspected damage with a potency of 250.</para> /// <para>Additional Effect: Increases maximum HP by 20%</para> /// <para>Duration: 15s</para> @@ -24425,9 +24425,9 @@ Reflux = 18319, /// <para>Additional Effect: Restores an amount of own HP equal to damage dealt</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Devour = 18320, +Devour_PvE = 18320, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18321"><strong>Condensed Libra</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18321"><strong>Condensed Libra</strong></see> <i>PvE</i> (BLU) [18321] [Spell] /// <para>Afflicts target with Physical Attenuation, Astral Attenuation, or Umbral Attenuation.</para> /// <para>Duration: 30s</para> /// <para>Physical Attenuation Effect: Increases damage taken from physical attacks by 5%</para> @@ -24435,18 +24435,18 @@ Devour = 18320, /// <para>Umbral Attenuation Effect: Increases damage taken from water-, earth-, and ice-aspected attacks by 5%</para> /// <para>Only one of these statuses can be applied to a target at a time.</para> /// </summary> -CondensedLibra = 18321, +CondensedLibra_PvE = 18321, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18322"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18322"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [18322] [Spell] /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para> /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para> /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para> /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing potency by 20% and augmenting certain blue magic spells.</para> /// <para>Cannot be cast on self. Effect ends upon reuse.</para> /// </summary> -AethericMimicry = 18322, +AethericMimicry_PvE = 18322, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18323"><strong>Surpanakha</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18323"><strong>Surpanakha</strong></see> <i>PvE</i> (BLU) [18323] [Ability] /// <para>Deals earth damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Surpanakha's Fury, increasing potency of Surpanakha by 50%</para> /// <para>Duration: 3s</para> @@ -24454,146 +24454,146 @@ AethericMimicry = 18322, /// <para>Maximum Charges: 4</para> /// <para>Effect is canceled upon execution of any action other than Surpanakha.</para> /// </summary> -Surpanakha = 18323, +Surpanakha_PvE = 18323, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18324"><strong>Quasar</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18324"><strong>Quasar</strong></see> <i>PvE</i> (BLU) [18324] [Ability] /// <para>Deals unaspected damage to all nearby enemies with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Shares a recast timer with J Kick.</para> /// </summary> -Quasar = 18324, +Quasar_PvE = 18324, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18325"><strong>J Kick</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/18325"><strong>J Kick</strong></see> <i>PvE</i> (BLU) [18325] [Ability] /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Cannot be executed while bound.</para> /// <para>Shares a recast timer with Quasar.</para> /// </summary> -JKick = 18325, +JKick_PvE = 18325, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18772"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18772"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill] /// <para></para> /// </summary> -DoomSpike_18772 = 18772, +DoomSpike_PvE_18772 = 18772, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18773"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18773"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill] /// <para></para> /// </summary> -SonicThrust_18773 = 18773, +SonicThrust_PvE_18773 = 18773, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18774"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18774"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill] /// <para></para> /// </summary> -CoerthanTorment_18774 = 18774, +CoerthanTorment_PvE_18774 = 18774, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18775"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18775"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability] /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para> /// </summary> -SkydragonDive = 18775, +SkydragonDive_PvE = 18775, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18776"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18776"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para> /// </summary> -AlaMorn = 18776, +AlaMorn_PvE = 18776, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18777"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18777"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill] /// <para>Delivers an attack with a potency of 500.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Duration: 15s</para> /// </summary> -Drachenlance = 18777, +Drachenlance_PvE = 18777, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18778"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18778"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill] /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -HorridRoar = 18778, +HorridRoar_PvE = 18778, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18780"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18780"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability] /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para> /// </summary> -Stardiver_18780 = 18780, +Stardiver_PvE_18780 = 18780, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18781"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18781"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break] /// <para>Delivers an attack to target and all enemies nearby it.</para> /// </summary> -DragonshadowDive = 18781, +DragonshadowDive_PvE = 18781, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18782"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18782"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break] /// <para></para> /// </summary> -DragonshadowDive_18782 = 18782, +DragonshadowDive_PvE_18782 = 18782, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18805"><strong>Ten</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18805"><strong>Ten</strong></see> <i>PvE</i> (NIN) [18805] [Ability] /// <para>Make the ritual mudra hand gesture for “heaven.”</para> /// <para>Duration: 6s</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Ten_18805 = 18805, +Ten_PvE_18805 = 18805, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18806"><strong>Chi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18806"><strong>Chi</strong></see> <i>PvE</i> (NIN) [18806] [Ability] /// <para>Make the ritual mudra hand gesture for “earth.”</para> /// <para>Duration: 6s</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Chi_18806 = 18806, +Chi_PvE_18806 = 18806, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18807"><strong>Jin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18807"><strong>Jin</strong></see> <i>PvE</i> (NIN) [18807] [Ability] /// <para>Make the ritual mudra hand gesture for “man.”</para> /// <para>Duration: 6s</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para> /// </summary> -Jin_18807 = 18807, +Jin_PvE_18807 = 18807, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18813"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18813"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability] /// <para>Direct Ezel II to devour a dream.</para> /// </summary> -SolicitSiphonSnout = 18813, +SolicitSiphonSnout_PvE = 18813, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18863"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/18863"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability] /// <para>Scatters potentially harmful aether.</para> /// </summary> -Deflect_18863 = 18863, +Deflect_PvE_18863 = 18863, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18873"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18873"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18873] [Ability] /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para> /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FumaShuriken_18873 = 18873, +FumaShuriken_PvE_18873 = 18873, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18874"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18874"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18874] [Ability] /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para> /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FumaShuriken_18874 = 18874, +FumaShuriken_PvE_18874 = 18874, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18875"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18875"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18875] [Ability] /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para> /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FumaShuriken_18875 = 18875, +FumaShuriken_PvE_18875 = 18875, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18876"><strong>Katon</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18876"><strong>Katon</strong></see> <i>PvE</i> (NIN) [18876] [Ability] /// <para>Delivers fire damage with a potency of 350 to target and all enemies nearby it.</para> /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para> /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Katon_18876 = 18876, +Katon_PvE_18876 = 18876, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18877"><strong>Raiton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18877"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [18877] [Ability] /// <para>Deals lightning damage with a potency of 650.</para> /// <para>Additional Effect: Grants a stack of Raiju Ready</para> /// <para>Duration: 30s</para> @@ -24604,9 +24604,9 @@ Katon_18876 = 18876, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Raiton_18877 = 18877, +Raiton_PvE_18877 = 18877, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18878"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18878"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [18878] [Ability] /// <para>Delivers ice damage with a potency of 350.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 15s</para> @@ -24616,9 +24616,9 @@ Raiton_18877 = 18877, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hyoton_18878 = 18878, +Hyoton_PvE_18878 = 18878, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18879"><strong>Huton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18879"><strong>Huton</strong></see> <i>PvE</i> (NIN) [18879] [Ability] /// <para>Reduces weaponskill recast time and auto-attack delay by 15%.</para> /// <para>Duration: 60s</para> /// <para>Mudra Combination: Jin→Chi→Ten or Chi→Jin→Ten</para> @@ -24626,9 +24626,9 @@ Hyoton_18878 = 18878, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Huton_18879 = 18879, +Huton_PvE_18879 = 18879, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18880"><strong>Doton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18880"><strong>Doton</strong></see> <i>PvE</i> (NIN) [18880] [Ability] /// <para>Creates a patch of corrupted earth, dealing damage with a potency of 80 to any enemies who enter.</para> /// <para>Duration: 18s</para> /// <para>Additional Effect: Heavy +40%</para> @@ -24637,9 +24637,9 @@ Huton_18879 = 18879, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Doton_18880 = 18880, +Doton_PvE_18880 = 18880, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18881"><strong>Suiton</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18881"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [18881] [Ability] /// <para>Deals water damage with a potency of 500.</para> /// <para>Additional Effect: Grants Suiton</para> /// <para>Duration: 20s</para> @@ -24649,444 +24649,444 @@ Doton_18880 = 18880, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Suiton_18881 = 18881, +Suiton_PvE_18881 = 18881, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18923"><strong>Throwing Dagger</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18923"><strong>Throwing Dagger</strong></see> <i>PvP</i> (NIN) [18923] [Weaponskill] /// <para></para> /// </summary> -ThrowingDagger_18923 = 18923, +ThrowingDagger_PvP = 18923, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18924"><strong>Death Blossom</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18924"><strong>Death Blossom</strong></see> <i>PvP</i> (NIN) [18924] [Weaponskill] /// <para></para> /// </summary> -DeathBlossom_18924 = 18924, +DeathBlossom_PvP = 18924, /// <summary> -/// <see href="https://garlandtools.org/db/#action/18925"><strong>Hakke Mujinsatsu</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/18925"><strong>Hakke Mujinsatsu</strong></see> <i>PvP</i> (NIN) [18925] [Weaponskill] /// <para></para> /// </summary> -HakkeMujinsatsu_18925 = 18925, +HakkeMujinsatsu_PvP = 18925, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19002"><strong>Waste Not II</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/19002"><strong>Waste Not II</strong></see> <i>PvE</i> (ALC) [19002] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_19002 = 19002, +WasteNotIi_PvE_19002 = 19002, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19003"><strong>Waste Not II</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/19003"><strong>Waste Not II</strong></see> <i>PvE</i> (CUL) [19003] [DoH Ability] /// <para>Reduces loss of durability by 50% for the next eight steps.</para> /// </summary> -WasteNotIi_19003 = 19003, +WasteNotIi_PvE_19003 = 19003, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19004"><strong>Innovation</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/19004"><strong>Innovation</strong></see> <i>PvE</i> (CRP) [19004] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation = 19004, +Innovation_PvE = 19004, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19005"><strong>Innovation</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/19005"><strong>Innovation</strong></see> <i>PvE</i> (BSM) [19005] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19005 = 19005, +Innovation_PvE_19005 = 19005, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19006"><strong>Innovation</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/19006"><strong>Innovation</strong></see> <i>PvE</i> (ARM) [19006] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19006 = 19006, +Innovation_PvE_19006 = 19006, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19007"><strong>Innovation</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/19007"><strong>Innovation</strong></see> <i>PvE</i> (GSM) [19007] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19007 = 19007, +Innovation_PvE_19007 = 19007, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19008"><strong>Innovation</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/19008"><strong>Innovation</strong></see> <i>PvE</i> (LTW) [19008] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19008 = 19008, +Innovation_PvE_19008 = 19008, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19009"><strong>Innovation</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/19009"><strong>Innovation</strong></see> <i>PvE</i> (WVR) [19009] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19009 = 19009, +Innovation_PvE_19009 = 19009, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19010"><strong>Innovation</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/19010"><strong>Innovation</strong></see> <i>PvE</i> (ALC) [19010] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19010 = 19010, +Innovation_PvE_19010 = 19010, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19011"><strong>Innovation</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/19011"><strong>Innovation</strong></see> <i>PvE</i> (CUL) [19011] [DoH Ability] /// <para>Increases efficiency of Touch actions by 50% for the next four steps.</para> /// </summary> -Innovation_19011 = 19011, +Innovation_PvE_19011 = 19011, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19012"><strong>Final Appraisal</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/19012"><strong>Final Appraisal</strong></see> <i>PvE</i> (CRP) [19012] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal = 19012, +FinalAppraisal_PvE = 19012, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19013"><strong>Final Appraisal</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/19013"><strong>Final Appraisal</strong></see> <i>PvE</i> (BSM) [19013] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19013 = 19013, +FinalAppraisal_PvE_19013 = 19013, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19014"><strong>Final Appraisal</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/19014"><strong>Final Appraisal</strong></see> <i>PvE</i> (ARM) [19014] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19014 = 19014, +FinalAppraisal_PvE_19014 = 19014, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19015"><strong>Final Appraisal</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/19015"><strong>Final Appraisal</strong></see> <i>PvE</i> (GSM) [19015] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19015 = 19015, +FinalAppraisal_PvE_19015 = 19015, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19016"><strong>Final Appraisal</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/19016"><strong>Final Appraisal</strong></see> <i>PvE</i> (LTW) [19016] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19016 = 19016, +FinalAppraisal_PvE_19016 = 19016, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19017"><strong>Final Appraisal</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/19017"><strong>Final Appraisal</strong></see> <i>PvE</i> (WVR) [19017] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19017 = 19017, +FinalAppraisal_PvE_19017 = 19017, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19018"><strong>Final Appraisal</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/19018"><strong>Final Appraisal</strong></see> <i>PvE</i> (ALC) [19018] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19018 = 19018, +FinalAppraisal_PvE_19018 = 19018, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19019"><strong>Final Appraisal</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/19019"><strong>Final Appraisal</strong></see> <i>PvE</i> (CUL) [19019] [DoH Ability] /// <para>The next action that would complete item synthesis will instead leave one progress point remaining.</para> /// <para>Effect active for five steps.</para> /// </summary> -FinalAppraisal_19019 = 19019, +FinalAppraisal_PvE_19019 = 19019, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19046"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19046"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill] /// <para></para> /// </summary> -Gofu = 19046, +Gofu_PvE = 19046, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19047"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19047"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill] /// <para></para> /// </summary> -Yagetsu = 19047, +Yagetsu_PvE = 19047, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19218"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19218"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability] /// <para>Restores own HP.</para> /// </summary> -AquaVitae = 19218, +AquaVitae_PvE = 19218, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19238"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/19238"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19238] [Spell] /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para> /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para> /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para> /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para> /// <para>Cannot be cast on self. Effect ends upon reuse.</para> /// </summary> -AethericMimicry_19238 = 19238, +AethericMimicry_PvE_19238 = 19238, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19239"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/19239"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19239] [Spell] /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para> /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para> /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para> /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para> /// <para>Cannot be cast on self. Effect ends upon reuse.</para> /// </summary> -AethericMimicry_19239 = 19239, +AethericMimicry_PvE_19239 = 19239, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19240"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/19240"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19240] [Spell] /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para> /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para> /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para> /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para> /// <para>Cannot be cast on self. Effect ends upon reuse.</para> /// </summary> -AethericMimicry_19240 = 19240, +AethericMimicry_PvE_19240 = 19240, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19264"><strong>Release List</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/19264"><strong>Release List</strong></see> <i>PvE</i> (FSH) [19264] [DoL Ability] /// <para>Selects fish to be automatically released upon catching them at a given fishing hole.</para> /// <para>Settings are reset upon putting away rod.</para> /// <para>Has no effect on fish that have yet to be logged in the Fish Guide.</para> /// </summary> -ReleaseList = 19264, +ReleaseList_PvE = 19264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19275"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19275"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount] /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para> /// <para>※Has no effect in battle.</para> /// </summary> -CouldbeworseBreath = 19275, +CouldbeworseBreath_PvE = 19275, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19297"><strong>Veneration</strong></see> <i>PvE</i> (CRP) +/// <see href="https://garlandtools.org/db/#action/19297"><strong>Veneration</strong></see> <i>PvE</i> (CRP) [19297] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration = 19297, +Veneration_PvE = 19297, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19298"><strong>Veneration</strong></see> <i>PvE</i> (BSM) +/// <see href="https://garlandtools.org/db/#action/19298"><strong>Veneration</strong></see> <i>PvE</i> (BSM) [19298] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19298 = 19298, +Veneration_PvE_19298 = 19298, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19299"><strong>Veneration</strong></see> <i>PvE</i> (ARM) +/// <see href="https://garlandtools.org/db/#action/19299"><strong>Veneration</strong></see> <i>PvE</i> (ARM) [19299] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19299 = 19299, +Veneration_PvE_19299 = 19299, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19300"><strong>Veneration</strong></see> <i>PvE</i> (GSM) +/// <see href="https://garlandtools.org/db/#action/19300"><strong>Veneration</strong></see> <i>PvE</i> (GSM) [19300] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19300 = 19300, +Veneration_PvE_19300 = 19300, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19301"><strong>Veneration</strong></see> <i>PvE</i> (LTW) +/// <see href="https://garlandtools.org/db/#action/19301"><strong>Veneration</strong></see> <i>PvE</i> (LTW) [19301] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19301 = 19301, +Veneration_PvE_19301 = 19301, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19302"><strong>Veneration</strong></see> <i>PvE</i> (WVR) +/// <see href="https://garlandtools.org/db/#action/19302"><strong>Veneration</strong></see> <i>PvE</i> (WVR) [19302] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19302 = 19302, +Veneration_PvE_19302 = 19302, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19303"><strong>Veneration</strong></see> <i>PvE</i> (ALC) +/// <see href="https://garlandtools.org/db/#action/19303"><strong>Veneration</strong></see> <i>PvE</i> (ALC) [19303] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19303 = 19303, +Veneration_PvE_19303 = 19303, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19304"><strong>Veneration</strong></see> <i>PvE</i> (CUL) +/// <see href="https://garlandtools.org/db/#action/19304"><strong>Veneration</strong></see> <i>PvE</i> (CUL) [19304] [DoH Ability] /// <para>Increases efficiency of Synthesis actions by 50% for the next four steps.</para> /// </summary> -Veneration_19304 = 19304, +Veneration_PvE_19304 = 19304, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19700"><strong>Aetheromatic Auger</strong></see> <i>PvE</i> (MIN, BTN) +/// <see href="https://garlandtools.org/db/#action/19700"><strong>Aetheromatic Auger</strong></see> <i>PvE</i> (MIN, BTN) [19700] [Weaponskill] /// <para>Release a blast of highly destructive compressed aether.</para> /// </summary> -AetheromaticAuger = 19700, +AetheromaticAuger_PvE = 19700, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19731"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19731"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special] /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para> /// </summary> -RemoveCostume = 19731, +RemoveCostume_PvE = 19731, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19994"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19994"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability] /// <para>Brace yourself to stand against even the most relentless onslaught.</para> /// </summary> -StandFirm = 19994, +StandFirm_PvE = 19994, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19997"><strong>Seize</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19997"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special] /// <para>Snare a chicken in your net with a single swift motion.</para> /// </summary> -Seize = 19997, +Seize_PvE = 19997, /// <summary> -/// <see href="https://garlandtools.org/db/#action/19998"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/19998"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special] /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para> /// </summary> -Birdlime = 19998, +Birdlime_PvE = 19998, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20030"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20030"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event] /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para> /// </summary> -PeculiarLight_20030 = 20030, +PeculiarLight_PvE_20030 = 20030, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20031"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20031"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount] /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para> /// <para>※Has no effect in battle.</para> /// </summary> -PeculiarLight_20031 = 20031, +PeculiarLight_PvE_20031 = 20031, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20061"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20061"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item] /// <para></para> /// </summary> -Accessorize = 20061, +Accessorize_PvE = 20061, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20064"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20064"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount] /// <para>Commands your peacock to proudly display its plumage.</para> /// <para>※Has no effect in battle.</para> /// </summary> -DazzlingDisplay = 20064, +DazzlingDisplay_PvE = 20064, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20121"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20121"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event] /// <para>Solves your problems with excessive explosive force.</para> /// </summary> -Cannonfire_20121 = 20121, +Cannonfire_PvE_20121 = 20121, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20122"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20122"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount] /// <para>Solves your problems with excessive explosive force.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Cannonfire_20122 = 20122, +Cannonfire_PvE_20122 = 20122, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20304"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20304"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability] /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para> /// </summary> -BlackPaint_20304 = 20304, +BlackPaint_PvE_20304 = 20304, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20489"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20489"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill] /// <para>Deals unaspected damage with a potency of 600.</para> /// </summary> -AetherCannon = 20489, +AetherCannon_PvE = 20489, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20490"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20490"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill] /// <para></para> /// </summary> -Aethersaber = 20490, +Aethersaber_PvE = 20490, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20491"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20491"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill] /// <para></para> /// </summary> -Aethercut = 20491, +Aethercut_PvE = 20491, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20492"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20492"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill] /// <para></para> /// </summary> -FinalFlourish = 20492, +FinalFlourish_PvE = 20492, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20493"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20493"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill] /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para> /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para> /// </summary> -UltimaBuster = 20493, +UltimaBuster_PvE = 20493, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20494"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20494"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability] /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -PyreticBooster = 20494, +PyreticBooster_PvE = 20494, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20495"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20495"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability] /// <para>Reduces damage taken by 50%. EP is drained while in use.</para> /// <para>Effect ends upon reuse or when EP is depleted.</para> /// </summary> -AetherialAegis = 20495, +AetherialAegis_PvE = 20495, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20496"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20496"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill] /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para> /// <para>Additional Effect: Increases target's damage taken by 20%</para> /// <para>Duration: 60s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -AetherMine = 20496, +AetherMine_PvE = 20496, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20529"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20529"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell] /// <para></para> /// </summary> -Verfire_20529 = 20529, +Verfire_PvE_20529 = 20529, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20530"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20530"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell] /// <para></para> /// </summary> -Veraero_20530 = 20530, +Veraero_PvE_20530 = 20530, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20531"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20531"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell] /// <para></para> /// </summary> -Verstone_20531 = 20531, +Verstone_PvE_20531 = 20531, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20532"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20532"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell] /// <para></para> /// </summary> -Verflare_20532 = 20532, +Verflare_PvE_20532 = 20532, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20533"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20533"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill] /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para> /// </summary> -CrimsonSavior = 20533, +CrimsonSavior_PvE = 20533, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20692"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20692"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item] /// <para></para> /// </summary> -DynamisDice = 20692, +DynamisDice_PvE = 20692, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20693"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20693"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item] /// <para></para> /// </summary> -DynamisDice_20693 = 20693, +DynamisDice_PvE_20693 = 20693, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20694"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20694"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item] /// <para></para> /// </summary> -DynamisDice_20694 = 20694, +DynamisDice_PvE_20694 = 20694, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20695"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20695"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item] /// <para></para> /// </summary> -DynamisDice_20695 = 20695, +DynamisDice_PvE_20695 = 20695, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20696"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20696"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item] /// <para></para> /// </summary> -DynamisDice_20696 = 20696, +DynamisDice_PvE_20696 = 20696, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20697"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20697"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item] /// <para></para> /// </summary> -DynamisDice_20697 = 20697, +DynamisDice_PvE_20697 = 20697, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20698"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20698"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item] /// <para></para> /// </summary> -DynamisDice_20698 = 20698, +DynamisDice_PvE_20698 = 20698, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20699"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20699"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item] /// <para></para> /// </summary> -DynamisDice_20699 = 20699, +DynamisDice_PvE_20699 = 20699, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20700"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20700"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item] /// <para></para> /// </summary> -DynamisDice_20700 = 20700, +DynamisDice_PvE_20700 = 20700, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20701"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20701"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell] /// <para>Afflicts target and all nearby enemies with Paralysis.</para> /// <para>Duration: 60s</para> /// </summary> -LostParalyzeIii = 20701, +LostParalyzeIii_PvE = 20701, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20702"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20702"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell] /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para> /// <para>Additional Effect: Increases damage undead enemies take by 25%</para> /// <para>Duration: 60s</para> /// </summary> -LostBanishIii = 20702, +LostBanishIii_PvE = 20702, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20703"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20703"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability] /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para> /// <para>Duration: 6s</para> /// </summary> -LostManawall = 20703, +LostManawall_PvE = 20703, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20704"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20704"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell] /// <para>Removes one beneficial status from target.</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -LostDispel = 20704, +LostDispel_PvE = 20704, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20705"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20705"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability] /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para> /// <para>Cannot be executed while in combat.</para> /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para> /// </summary> -LostStealth = 20705, +LostStealth_PvE = 20705, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20706"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20706"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell] /// <para>Grants the effect of Lost Spellforge to self or target ally.</para> /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para> /// <para>Duration: 300s</para> /// <para>Effect cannot be stacked with Lost Steelsting.</para> /// </summary> -LostSpellforge = 20706, +LostSpellforge_PvE = 20706, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20707"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20707"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell] /// <para>Grants the effect of Lost Steelsting to self or target ally.</para> /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para> /// <para>Duration: 300s</para> /// <para>Effect cannot be stacked with Lost Spellforge.</para> /// </summary> -LostSteelsting = 20707, +LostSteelsting_PvE = 20707, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20708"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20708"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability] /// <para>Greatly increases movement speed.</para> /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para> /// <para>Duration: 10s</para> @@ -25097,49 +25097,49 @@ LostSteelsting = 20707, /// <para>Effect only applies to certain abilities.</para> /// <para>Duration: 30s</para> /// </summary> -LostSwift = 20708, +LostSwift_PvE = 20708, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20709"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20709"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell] /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para> /// <para>Duration: 30m</para> /// </summary> -LostProtect = 20709, +LostProtect_PvE = 20709, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20710"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20710"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell] /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para> /// <para>Duration: 30m</para> /// </summary> -LostShell = 20710, +LostShell_PvE = 20710, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20711"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20711"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell] /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para> /// <para>Duration: 10s</para> /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para> /// </summary> -LostReflect = 20711, +LostReflect_PvE = 20711, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20712"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20712"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell] /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para> /// <para>Duration: 60s</para> /// </summary> -LostStoneskin = 20712, +LostStoneskin_PvE = 20712, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20713"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20713"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell] /// <para>Increases damage dealt by an ally or self by 5%.</para> /// <para>Duration: 600s</para> /// </summary> -LostBravery = 20713, +LostBravery_PvE = 20713, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20714"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20714"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability] /// <para>Grants a stack of Boost, up to a maximum of 16.</para> /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para> /// <para>Duration: 30s</para> /// <para>Effect ends upon using another lost action.</para> /// <para>Shares a recast timer with all other weaponskills and spells.</para> /// </summary> -LostFocus = 20714, +LostFocus_PvE = 20714, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20715"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20715"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability] /// <para>Increases damage dealt by 70%, draining MP while in use.</para> /// <para>Duration: 30s</para> /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para> @@ -25147,14 +25147,14 @@ LostFocus = 20714, /// <para>Duration: 15s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -LostFontOfMagic = 20715, +LostFontOfMagic_PvE = 20715, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20716"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20716"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability] /// <para>Resets the recast timer for most actions and role actions.</para> /// </summary> -LostFontOfSkill = 20716, +LostFontOfSkill_PvE = 20716, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20717"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20717"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability] /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para> /// <para>Duration: 30s</para> /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para> @@ -25163,38 +25163,38 @@ LostFontOfSkill = 20716, /// <para>Duration: 15s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -LostFontOfPower = 20717, +LostFontOfPower_PvE = 20717, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20718"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20718"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill] /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para> /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para> /// </summary> -LostSlash = 20718, +LostSlash_PvE = 20718, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20719"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20719"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell] /// <para>KOs target. The less the target's HP, the greater the chance of success.</para> /// <para>Spirit of the Ordained Effect: Chance of success is increased</para> /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para> /// </summary> -LostDeath = 20719, +LostDeath_PvE = 20719, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20720"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20720"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability] /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para> /// <para>Duration: 15s</para> /// <para>Can only be executed while in combat.</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfNobleEnds = 20720, +BannerOfNobleEnds_PvE = 20720, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20721"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20721"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability] /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para> /// <para>Duration: 15s</para> /// <para>Can only be executed while in combat.</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfHonoredSacrifice = 20721, +BannerOfHonoredSacrifice_PvE = 20721, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20722"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20722"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability] /// <para>Storm the field under the Banner of Tireless Conviction, gaining additional stacks each time damage is taken, up to a maximum of 5.</para> /// <para>Banner of Tireless Conviction Effect: Increases damage taken by 15% per stack</para> /// <para>Duration: 30s</para> @@ -25203,9 +25203,9 @@ BannerOfHonoredSacrifice = 20721, /// <para>Duration: 180s</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfTirelessConviction = 20722, +BannerOfTirelessConviction_PvE = 20722, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20723"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20723"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability] /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para> /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para> /// <para>Duration: 30s</para> @@ -25214,9 +25214,9 @@ BannerOfTirelessConviction = 20722, /// <para>Duration: 180s</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfFirmResolve = 20723, +BannerOfFirmResolve_PvE = 20723, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20724"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20724"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability] /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para> /// <para>Duration: 30s</para> /// <para>Effect ends upon using another action or moving (including facing a different direction).</para> @@ -25227,9 +25227,9 @@ BannerOfFirmResolve = 20723, /// <para>Can only be executed while in combat.</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfSolemnClarity = 20724, +BannerOfSolemnClarity_PvE = 20724, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20725"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20725"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability] /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para> /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para> /// <para>Duration: 120s</para> @@ -25239,84 +25239,84 @@ BannerOfSolemnClarity = 20724, /// <para>Can only be executed while in combat.</para> /// <para>Effect cannot be stacked with other Banner actions.</para> /// </summary> -BannerOfHonedAcuity = 20725, +BannerOfHonedAcuity_PvE = 20725, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20726"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20726"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 15,000</para> /// </summary> -LostCure = 20726, +LostCure_PvE = 20726, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20727"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20727"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 21,700</para> /// <para>Spirit of the Savior Effect: Regen</para> /// <para>Cure Potency: 6,000</para> /// <para>Duration: 21s</para> /// </summary> -LostCureIi = 20727, +LostCureIi_PvE = 20727, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20728"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20728"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell] /// <para>Restores own or target party member's HP and all party members nearby target.</para> /// <para>Cure Potency: 15,000</para> /// </summary> -LostCureIii = 20728, +LostCureIii_PvE = 20728, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20729"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20729"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability] /// <para>Restores own or target party member's HP and all party members nearby target.</para> /// <para>Cure Potency: 21,700</para> /// <para>Spirit of the Savior Effect: Regen</para> /// <para>Cure Potency: 6,000</para> /// <para>Duration: 21s</para> /// </summary> -LostCureIv = 20729, +LostCureIv_PvE = 20729, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20730"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) +/// <see href="https://garlandtools.org/db/#action/20730"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell] /// <para>Restores all of a KO'd target's HP.</para> /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para> /// </summary> -LostArise = 20730, +LostArise_PvE = 20730, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20731"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20731"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability] /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para> /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para> /// <para>Duration: 20s</para> /// </summary> -LostIncense = 20731, +LostIncense_PvE = 20731, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20732"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20732"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill] /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para> /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para> /// <para>The lost action thrown will be lost upon execution.</para> /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para> /// </summary> -LostFairTrade = 20732, +LostFairTrade_PvE = 20732, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20733"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20733"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability] /// <para>Study the lost techniques used by a targeted ally and make them your own.</para> /// <para>Cannot be executed while in combat.</para> /// </summary> -Mimic = 20733, +Mimic_PvE = 20733, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20734"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20734"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item] /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para> /// <para>Can only be executed while in combat.</para> /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para> /// </summary> -DynamisDice_20734 = 20734, +DynamisDice_PvE_20734 = 20734, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20735"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20735"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item] /// <para>Resurrects target to a weakened state.</para> /// </summary> -ResistancePhoenix = 20735, +ResistancePhoenix_PvE = 20735, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20736"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20736"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item] /// <para>Grants a 70% chance of automatic revival upon KO.</para> /// <para>Duration: 180m</para> /// </summary> -ResistanceReraiser = 20736, +ResistanceReraiser_PvE = 20736, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20737"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20737"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item] /// <para>Grants Auto-potion to self.</para> /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para> /// <para>Duration: 600s</para> @@ -25324,9 +25324,9 @@ ResistanceReraiser = 20736, /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para> /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para> /// </summary> -ResistancePotionKit = 20737, +ResistancePotionKit_PvE = 20737, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20738"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20738"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item] /// <para>Grants Auto-ether to self.</para> /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para> /// <para>Duration: 600s</para> @@ -25334,345 +25334,345 @@ ResistancePotionKit = 20737, /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para> /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para> /// </summary> -ResistanceEtherKit = 20738, +ResistanceEtherKit_PvE = 20738, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20739"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20739"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item] /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para> /// <para>Effect cannot be stacked with similar barrier actions.</para> /// <para>Duration: 30m</para> /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para> /// </summary> -ResistanceMedikit = 20739, +ResistanceMedikit_PvE = 20739, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20740"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20740"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item] /// <para>Gradually restores HP.</para> /// <para>Cure Potency: 1,600</para> /// <para>Duration: 40s</para> /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para> /// </summary> -ResistancePotion = 20740, +ResistancePotion_PvE = 20740, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20741"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20741"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item] /// <para>Increases damage dealt by 80%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheAetherweaver = 20741, +EssenceOfTheAetherweaver_PvE = 20741, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20742"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20742"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item] /// <para>Increases damage dealt by 60%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheMartialist = 20742, +EssenceOfTheMartialist_PvE = 20742, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20743"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20743"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item] /// <para>Increases healing potency by 60%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheSavior = 20743, +EssenceOfTheSavior_PvE = 20743, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20744"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20744"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item] /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheVeteran = 20744, +EssenceOfTheVeteran_PvE = 20744, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20745"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20745"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item] /// <para>Increases defense by 80% and maximum HP by 45%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfThePlatebearer = 20745, +EssenceOfThePlatebearer_PvE = 20745, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20746"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20746"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item] /// <para>Increases defense by 30% and maximum HP by 10%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheGuardian = 20746, +EssenceOfTheGuardian_PvE = 20746, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20747"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20747"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item] /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheOrdained = 20747, +EssenceOfTheOrdained_PvE = 20747, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20748"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20748"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item] /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheSkirmisher = 20748, +EssenceOfTheSkirmisher_PvE = 20748, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20749"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20749"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item] /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheWatcher = 20749, +EssenceOfTheWatcher_PvE = 20749, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20750"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20750"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item] /// <para>Reduces healing potency by 70% while increasing damage dealt by 100%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheProfane = 20750, +EssenceOfTheProfane_PvE = 20750, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20751"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20751"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item] /// <para>Increases damage dealt by 90% and damage taken by 200% while reducing maximum HP by 30%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheIrregular = 20751, +EssenceOfTheIrregular_PvE = 20751, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20752"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20752"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item] /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheBreathtaker = 20752, +EssenceOfTheBreathtaker_PvE = 20752, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20753"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20753"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item] /// <para>Increases damage dealt by 40%.</para> /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheBloodsucker = 20753, +EssenceOfTheBloodsucker_PvE = 20753, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20754"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20754"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item] /// <para>Increases defense by 50% and maximum HP by 45%.</para> /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheBeast = 20754, +EssenceOfTheBeast_PvE = 20754, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20755"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20755"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item] /// <para>Increases defense by 50%, maximum HP by 45%, and damage dealt by 60%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -EssenceOfTheTemplar = 20755, +EssenceOfTheTemplar_PvE = 20755, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20756"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20756"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item] /// <para>Increases damage dealt by 96%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheAetherweaver = 20756, +DeepEssenceOfTheAetherweaver_PvE = 20756, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20757"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20757"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item] /// <para>Increases damage dealt by 72%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheMartialist = 20757, +DeepEssenceOfTheMartialist_PvE = 20757, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20758"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20758"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item] /// <para>Increases healing potency by 72%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheSavior = 20758, +DeepEssenceOfTheSavior_PvE = 20758, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20759"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20759"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item] /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheVeteran = 20759, +DeepEssenceOfTheVeteran_PvE = 20759, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20760"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20760"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item] /// <para>Increases defense by 96% and maximum HP by 54%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfThePlatebearer = 20760, +DeepEssenceOfThePlatebearer_PvE = 20760, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20761"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20761"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item] /// <para>Increases defense by 36% and maximum HP by 12%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheGuardian = 20761, +DeepEssenceOfTheGuardian_PvE = 20761, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20762"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/20762"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item] /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheOrdained = 20762, +DeepEssenceOfTheOrdained_PvE = 20762, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20763"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20763"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item] /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheSkirmisher = 20763, +DeepEssenceOfTheSkirmisher_PvE = 20763, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20764"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20764"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item] /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheWatcher = 20764, +DeepEssenceOfTheWatcher_PvE = 20764, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20765"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20765"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item] /// <para>Reduces healing potency by 70% while increasing damage dealt by 120%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheProfane = 20765, +DeepEssenceOfTheProfane_PvE = 20765, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20766"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20766"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item] /// <para>Increases damage dealt by 108% and damage taken by 200% while reducing maximum HP by 30%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheIrregular = 20766, +DeepEssenceOfTheIrregular_PvE = 20766, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20767"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/20767"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item] /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheBreathtaker = 20767, +DeepEssenceOfTheBreathtaker_PvE = 20767, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20768"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/20768"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item] /// <para>Increases damage dealt by 48%.</para> /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheBloodsucker = 20768, +DeepEssenceOfTheBloodsucker_PvE = 20768, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20769"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/20769"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item] /// <para>Increases defense by 60% and maximum HP by 54%.</para> /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheBeast = 20769, +DeepEssenceOfTheBeast_PvE = 20769, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20770"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/20770"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item] /// <para>Increases defense by 60%, maximum HP by 54%, and damage dealt by 72%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence or Deep Essence actions.</para> /// </summary> -DeepEssenceOfTheTemplar = 20770, +DeepEssenceOfTheTemplar_PvE = 20770, /// <summary> -/// <see href="https://garlandtools.org/db/#action/20940"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/20940"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability] /// <para>Restores up to 40% of own HP and 30% of own EP.</para> /// </summary> -AutoRestoration = 20940, +AutoRestoration_PvE = 20940, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21023"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/21023"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] [] /// <para></para> /// </summary> -LostAction = 21023, +LostAction_PvE = 21023, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21177"><strong>Mountaineer's Gift I</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/21177"><strong>Mountaineer's Gift I</strong></see> <i>PvE</i> (MIN) [21177] [DoL Ability] /// <para>Increases the chance of triggering Gatherer's Boon by 10%. Does not apply to items at 0%.</para> /// </summary> -MountaineersGiftI = 21177, +MountaineersGiftI_PvE = 21177, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21178"><strong>Pioneer's Gift I</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/21178"><strong>Pioneer's Gift I</strong></see> <i>PvE</i> (BTN) [21178] [DoL Ability] /// <para>Increases the chance of triggering Gatherer's Boon by 10%. Does not apply to items at 0%.</para> /// </summary> -PioneersGiftI = 21178, +PioneersGiftI_PvE = 21178, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21203"><strong>Nald'thal's Tidings</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/21203"><strong>Nald'thal's Tidings</strong></see> <i>PvE</i> (MIN) [21203] [DoL Ability] /// <para>Increases item yield from Gatherer's Boon by 1.</para> /// </summary> -NaldthalsTidings = 21203, +NaldthalsTidings_PvE = 21203, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21204"><strong>Nophica's Tidings</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/21204"><strong>Nophica's Tidings</strong></see> <i>PvE</i> (BTN) [21204] [DoL Ability] /// <para>Increases item yield from Gatherer's Boon by 1.</para> /// </summary> -NophicasTidings = 21204, +NophicasTidings_PvE = 21204, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21205"><strong>Collector's Focus</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/21205"><strong>Collector's Focus</strong></see> <i>PvE</i> (MIN) [21205] [DoL Ability] /// <para>Increases the chance to trigger Collector's Intuition by 75% on your next collectable action.</para> /// </summary> -CollectorsFocus = 21205, +CollectorsFocus_PvE = 21205, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21206"><strong>Collector's Focus</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/21206"><strong>Collector's Focus</strong></see> <i>PvE</i> (BTN) [21206] [DoL Ability] /// <para>Increases the chance to trigger Collector's Intuition by 75% on your next collectable action.</para> /// </summary> -CollectorsFocus_21206 = 21206, +CollectorsFocus_PvE_21206 = 21206, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21324"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21324"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special] /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para> /// </summary> -EnkindlingFlameDance = 21324, +EnkindlingFlameDance_PvE = 21324, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21325"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21325"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special] /// <para>Fills a Bombard with vim and vigor.</para> /// </summary> -InvigoratingFlameDance = 21325, +InvigoratingFlameDance_PvE = 21325, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21494"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21494"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability] /// <para>Delivers an attack with a potency of 440.</para> /// </summary> -Fleche_21494 = 21494, +Fleche_PvE_21494 = 21494, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21495"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21495"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability] /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para> /// </summary> -ContreSixte_21495 = 21495, +ContreSixte_PvE_21495 = 21495, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21496"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21496"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability] /// <para></para> /// </summary> -Displacement_21496 = 21496, +Displacement_PvE_21496 = 21496, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21497"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21497"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 350</para> /// </summary> -Vercure_21497 = 21497, +Vercure_PvE_21497 = 21497, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21498"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21498"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell] /// <para>Deals unaspected damage with a potency of 210.</para> /// </summary> -MaleficIii_21498 = 21498, +MaleficIii_PvE_21498 = 21498, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21499"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21499"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability] /// <para></para> /// </summary> -DestinyDrawn = 21499, +DestinyDrawn_PvE = 21499, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21607"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21607"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability] /// <para></para> /// </summary> -LordOfCrowns_21607 = 21607, +LordOfCrowns_PvE_21607 = 21607, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21608"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21608"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 400</para> /// </summary> -Benefic_21608 = 21608, +Benefic_PvE_21608 = 21608, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21609"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21609"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 200</para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 15s</para> /// </summary> -AspectedHelios_21609 = 21609, +AspectedHelios_PvE_21609 = 21609, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21610"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21610"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability] /// <para></para> /// </summary> -TheScroll = 21610, +TheScroll_PvE = 21610, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21611"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21611"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability] /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para> /// <para>Duration: 18s</para> /// <para>Additional Effect: Healing over time</para> @@ -25681,192 +25681,192 @@ TheScroll = 21610, /// <para>Effect ends upon using another action or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -FixedSign = 21611, +FixedSign_PvE = 21611, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21612"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21612"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell] /// <para></para> /// </summary> -FireIv_21612 = 21612, +FireIv_PvE_21612 = 21612, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21613"><strong>Foul</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21613"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell] /// <para></para> /// </summary> -Foul_21613 = 21613, +Foul_PvE_21613 = 21613, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21852"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21852"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell] /// <para>Deals ice damage with a potency of 300.</para> /// <para>Additional Effect: Restores up to 40% of MP</para> /// </summary> -AllaganBlizzardIv = 21852, +AllaganBlizzardIv_PvE = 21852, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21884"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21884"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell] /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para> /// <para>Additional Effect: Lightning damage over time</para> /// <para>Potency: 30</para> /// <para>Duration: 18s</para> /// <para></para> /// </summary> -ThunderIv_21884 = 21884, +ThunderIv_PvE_21884 = 21884, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21886"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21886"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 700</para> /// </summary> -CureIi_21886 = 21886, +CureIi_PvE_21886 = 21886, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21888"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21888"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 200</para> /// <para>Additional Effect: Regen</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 15s</para> /// </summary> -MedicaIi_21888 = 21888, +MedicaIi_PvE_21888 = 21888, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21921"><strong>Break</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21921"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell] /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para> /// </summary> -Break = 21921, +Break_PvE = 21921, /// <summary> -/// <see href="https://garlandtools.org/db/#action/21923"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/21923"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell] /// <para></para> /// </summary> -Verholy_21923 = 21923, +Verholy_PvE_21923 = 21923, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22182"><strong>Scour</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/22182"><strong>Scour</strong></see> <i>PvE</i> (MIN) [22182] [DoL Ability] /// <para>Increases collectability of an item. Increase is determined by your gathering rating.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -Scour = 22182, +Scour_PvE = 22182, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22183"><strong>Brazen Prospector</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/22183"><strong>Brazen Prospector</strong></see> <i>PvE</i> (MIN) [22183] [DoL Ability] /// <para>Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -BrazenProspector = 22183, +BrazenProspector_PvE = 22183, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22184"><strong>Meticulous Prospector</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/22184"><strong>Meticulous Prospector</strong></see> <i>PvE</i> (MIN) [22184] [DoL Ability] /// <para>Increases collectability of an item. Increase is 75% of the effectiveness of Scour.</para> /// <para>Reduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.</para> /// </summary> -MeticulousProspector = 22184, +MeticulousProspector_PvE = 22184, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22185"><strong>Scrutiny</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/22185"><strong>Scrutiny</strong></see> <i>PvE</i> (MIN) [22185] [DoL Ability] /// <para>Improves next item collectability increase. Effect is determined by your perception rating.</para> /// </summary> -Scrutiny = 22185, +Scrutiny_PvE = 22185, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22186"><strong>Scour</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/22186"><strong>Scour</strong></see> <i>PvE</i> (BTN) [22186] [DoL Ability] /// <para>Increases collectability of an item. Increase is determined by your gathering rating.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -Scour_22186 = 22186, +Scour_PvE_22186 = 22186, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22187"><strong>Brazen Woodsman</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/22187"><strong>Brazen Woodsman</strong></see> <i>PvE</i> (BTN) [22187] [DoL Ability] /// <para>Increases the collectability of an item. Increase is a random amount ranging from 50% to 150% of the effectiveness of Scour.</para> /// <para>Reduces integrity by 1.</para> /// </summary> -BrazenWoodsman = 22187, +BrazenWoodsman_PvE = 22187, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22188"><strong>Meticulous Woodsman</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/22188"><strong>Meticulous Woodsman</strong></see> <i>PvE</i> (BTN) [22188] [DoL Ability] /// <para>Increases collectability of an item. Increase is 75% of the effectiveness of Scour.</para> /// <para>Reduces integrity by 1. There is a chance integrity is unaffected, determined by your gathering rating.</para> /// </summary> -MeticulousWoodsman = 22188, +MeticulousWoodsman_PvE = 22188, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22189"><strong>Scrutiny</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/22189"><strong>Scrutiny</strong></see> <i>PvE</i> (BTN) [22189] [DoL Ability] /// <para>Improves next item collectability increase. Effect is determined by your perception rating.</para> /// </summary> -Scrutiny_22189 = 22189, +Scrutiny_PvE_22189 = 22189, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22344"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/22344"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability] /// <para>Detect traps within a radius of 15 yalms.</para> /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -LostPerception = 22344, +LostPerception_PvE = 22344, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22345"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/22345"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell] /// <para>Restores all of a KO'd target's HP.</para> /// <para>Cannot be executed if currently afflicted with Sacrifice.</para> /// <para>Additional Effect: Inflicts Sacrifice on self</para> /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para> /// <para>Duration: 10s</para> /// </summary> -LostSacrifice = 22345, +LostSacrifice_PvE = 22345, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22346"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/22346"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item] /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheGambler = 22346, +PureEssenceOfTheGambler_PvE = 22346, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22347"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) +/// <see href="https://garlandtools.org/db/#action/22347"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [22347] [Item] /// <para>Increases defense by 25%, damage dealt by 50%, and maximum HP by 100%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheElder = 22347, +PureEssenceOfTheElder_PvE = 22347, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22348"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/22348"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item] /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheDuelist = 22348, +PureEssenceOfTheDuelist_PvE = 22348, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22349"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/22349"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [22349] [Item] /// <para>Increases defense by 60%, damage dealt by 50%, and maximum HP by 81%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheFiendhunter = 22349, +PureEssenceOfTheFiendhunter_PvE = 22349, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22350"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/22350"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item] /// <para>Increases defense by 40%, damage dealt by 72%, and maximum HP by 50%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheIndomitable = 22350, +PureEssenceOfTheIndomitable_PvE = 22350, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22351"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/22351"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item] /// <para>Increases defense by 25%, damage dealt by 35%, and maximum HP by 100%.</para> /// <para>Effect ends upon reuse.</para> /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para> /// <para>It is said that Pure Essences may grant unexpected effects...</para> /// <para>※This action can only be used in Delubrum Reginae.</para> /// </summary> -PureEssenceOfTheDivine = 22351, +PureEssenceOfTheDivine_PvE = 22351, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22352"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) +/// <see href="https://garlandtools.org/db/#action/22352"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) [22352] [Spell] /// <para>Consumes MP to deal unaspected damage with a potency of 300 to all nearby enemies.</para> /// <para>Additional Effect: Unaspected damage over time</para> /// <para>Potency: 350</para> /// <para>Duration: 60s</para> /// <para>The damage over time effect of Lost Flare Star can only be applied once per target at any given time. This effect cannot be stacked by multiple players.</para> /// </summary> -LostFlareStar = 22352, +LostFlareStar_PvE = 22352, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22353"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) +/// <see href="https://garlandtools.org/db/#action/22353"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability] /// <para>Delivers a jumping attack with a potency of 100.</para> /// <para>Additional Effect: Increases target's damage taken by 10%.</para> /// <para>Duration: 30s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -LostRendArmor = 22353, +LostRendArmor_PvE = 22353, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22354"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/22354"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability] /// <para>Consumes MP to deliver a jumping attack that deals unaspected damage with a potency of 500.</para> /// <para>Additional Effect: Reduces target's accuracy by 10%.</para> /// <para>Duration: 15s</para> @@ -25875,51 +25875,51 @@ LostRendArmor = 22353, /// <para>Duration: 15s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -LostSeraphStrike = 22354, +LostSeraphStrike_PvE = 22354, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22355"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/22355"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability] /// <para>Reduces damage taken by self and nearby party members by 30%.</para> /// <para>Duration: 15s</para> /// </summary> -LostAethershield = 22355, +LostAethershield_PvE = 22355, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22356"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) +/// <see href="https://garlandtools.org/db/#action/22356"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) [22356] [Ability] /// <para>Increases critical hit rate of self and nearby party members by 10%, increases damage dealt by 7%, and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 1%.</para> /// <para>Duration: 60s</para> /// </summary> -LostDervish = 22356, +LostDervish_PvE = 22356, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22502"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/22502"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell] /// <para></para> /// </summary> -FireIv_22502 = 22502, +FireIv_PvE_22502 = 22502, /// <summary> -/// <see href="https://garlandtools.org/db/#action/22817"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/22817"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell] /// <para></para> /// </summary> -FireIv_22817 = 22817, +FireIv_PvE_22817 = 22817, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23264"><strong>Triple Trident</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23264"><strong>Triple Trident</strong></see> <i>PvE</i> (BLU) [23264] [Spell] /// <para>Delivers a threefold attack, each hit with a potency of 150.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -TripleTrident = 23264, +TripleTrident_PvE = 23264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23265"><strong>Tingle</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23265"><strong>Tingle</strong></see> <i>PvE</i> (BLU) [23265] [Spell] /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Increases the potency of the next physical damage spell cast by 100</para> /// <para>Duration: 15s</para> /// </summary> -Tingle = 23265, +Tingle_PvE = 23265, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23266"><strong>Tatami-gaeshi</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23266"><strong>Tatami-gaeshi</strong></see> <i>PvE</i> (BLU) [23266] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 3s</para> /// </summary> -Tatamigaeshi = 23266, +Tatamigaeshi_PvE = 23266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23267"><strong>Cold Fog</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23267"><strong>Cold Fog</strong></see> <i>PvE</i> (BLU) [23267] [Spell] /// <para>Grants Cold Fog to self.</para> /// <para>Duration: 5s</para> /// <para>Effect changes to Touch of Frost if damage is taken.</para> @@ -25932,35 +25932,35 @@ Tatamigaeshi = 23266, /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of Touch of Frost.</para> /// </summary> -ColdFog = 23267, +ColdFog_PvE = 23267, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23268"><strong>White Death</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23268"><strong>White Death</strong></see> <i>PvE</i> (BLU) [23268] [Spell] /// <para>Deals ice damage with a potency of 400.</para> /// <para>Additional Effect: Deep Freeze</para> /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of Touch of Frost.</para> /// </summary> -WhiteDeath = 23268, +WhiteDeath_PvE = 23268, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23269"><strong>Stotram</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23269"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23269] [Spell] /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para> /// <para>Action effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetheric Mimicry: Healer.</para> /// <para>Cure Potency: 300</para> /// </summary> -Stotram = 23269, +Stotram_PvE = 23269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23270"><strong>Saintly Beam</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23270"><strong>Saintly Beam</strong></see> <i>PvE</i> (BLU) [23270] [Spell] /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para> /// <para>Potency increases to 500 when used against undead enemies.</para> /// </summary> -SaintlyBeam = 23270, +SaintlyBeam_PvE = 23270, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23271"><strong>Feculent Flood</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23271"><strong>Feculent Flood</strong></see> <i>PvE</i> (BLU) [23271] [Spell] /// <para>Deals earth damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -FeculentFlood = 23271, +FeculentFlood_PvE = 23271, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23272"><strong>Angel's Snack</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23272"><strong>Angel's Snack</strong></see> <i>PvE</i> (BLU) [23272] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 400</para> /// <para>Additional Effect: Grants healing over time effect when you are under the effect of Aetheric Mimicry: Healer</para> @@ -25968,9 +25968,9 @@ FeculentFlood = 23271, /// <para>Duration: 15s</para> /// <para>Shares a recast timer with Dragon Force and Matra Magic.</para> /// </summary> -AngelsSnack = 23272, +AngelsSnack_PvE = 23272, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23273"><strong>Chelonian Gate</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23273"><strong>Chelonian Gate</strong></see> <i>PvE</i> (BLU) [23273] [Spell] /// <para>Summons a chelonian gate, reducing damage taken by 20%.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Grants Auspicious Trance after taking damage equal to 30% of maximum HP</para> @@ -25985,189 +25985,189 @@ AngelsSnack = 23272, /// <para>Potency increases to 1,000 when you are under the effect of Aetheric Mimicry: Tank.</para> /// <para>Can only be executed when under the effect of Auspicious Trance.</para> /// </summary> -ChelonianGate = 23273, +ChelonianGate_PvE = 23273, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23274"><strong>Divine Cataract</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23274"><strong>Divine Cataract</strong></see> <i>PvE</i> (BLU) [23274] [Spell] /// <para>Deals water damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Potency increases to 1,000 when you are under the effect of Aetheric Mimicry: Tank.</para> /// <para>Can only be executed when under the effect of Auspicious Trance.</para> /// </summary> -DivineCataract = 23274, +DivineCataract_PvE = 23274, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23275"><strong>The Rose of Destruction</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23275"><strong>The Rose of Destruction</strong></see> <i>PvE</i> (BLU) [23275] [Spell] /// <para>Deals unaspected damage with a potency of 400.</para> /// <para>Additional Effect: 10-yalm knockback</para> /// <para>Shares a recast timer with Chelonian Gate and Ruby Dynamics.</para> /// </summary> -TheRoseOfDestruction = 23275, +TheRoseOfDestruction_PvE = 23275, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23276"><strong>Basic Instinct</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23276"><strong>Basic Instinct</strong></see> <i>PvE</i> (BLU) [23276] [Spell] /// <para>Increases movement speed by 30%, and healing potency and damage dealt by 100%. Also ignores the damage penalty inflicted by Mighty Guard.</para> /// <para>Can only be used in duties intended for two or more players while playing alone, while no other party members are in the instance, or when all party members are incapacitated. Effect ends when joined by one or more party members.</para> /// </summary> -BasicInstinct = 23276, +BasicInstinct_PvE = 23276, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23277"><strong>Ultravibration</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23277"><strong>Ultravibration</strong></see> <i>PvE</i> (BLU) [23277] [Spell] /// <para>KOs all nearby enemies afflicted with Deep Freeze or Petrification. Has no effect on enemies whose level is higher than your own, and certain others.</para> /// <para>Shares a recast timer with Level 5 Death.</para> /// </summary> -Ultravibration = 23277, +Ultravibration_PvE = 23277, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23278"><strong>Blaze</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23278"><strong>Blaze</strong></see> <i>PvE</i> (BLU) [23278] [Spell] /// <para>Deals ice damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// </summary> -Blaze = 23278, +Blaze_PvE = 23278, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23279"><strong>Mustard Bomb</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23279"><strong>Mustard Bomb</strong></see> <i>PvE</i> (BLU) [23279] [Spell] /// <para>Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Enemies affected by Lightheaded suffer damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 15s</para> /// </summary> -MustardBomb = 23279, +MustardBomb_PvE = 23279, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23280"><strong>Dragon Force</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23280"><strong>Dragon Force</strong></see> <i>PvE</i> (BLU) [23280] [Spell] /// <para>Reduces damage taken by 20%.</para> /// <para>Duration: 15s</para> /// <para>Increases damage reduction to 40% when you are under the effect of Aetheric Mimicry: Tank.</para> /// <para>Shares a recast timer with Angel's Snack and Matra Magic.</para> /// </summary> -DragonForce = 23280, +DragonForce_PvE = 23280, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23281"><strong>Aetherial Spark</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23281"><strong>Aetherial Spark</strong></see> <i>PvE</i> (BLU) [23281] [Spell] /// <para>Deals unaspected damage with a potency of 50 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Unaspected damage over time</para> /// <para>Potency: 50</para> /// <para>Duration: 15s</para> /// </summary> -AetherialSpark = 23281, +AetherialSpark_PvE = 23281, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23282"><strong>Hydro Pull</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23282"><strong>Hydro Pull</strong></see> <i>PvE</i> (BLU) [23282] [Spell] /// <para>Deals water damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Draw-in</para> /// </summary> -HydroPull = 23282, +HydroPull_PvE = 23282, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23283"><strong>Malediction of Water</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23283"><strong>Malediction of Water</strong></see> <i>PvE</i> (BLU) [23283] [Spell] /// <para>Deals water damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: 10-yalm knockback to all enemies and party members in range</para> /// <para>Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para> /// </summary> -MaledictionOfWater = 23283, +MaledictionOfWater_PvE = 23283, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23284"><strong>Choco Meteor</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23284"><strong>Choco Meteor</strong></see> <i>PvE</i> (BLU) [23284] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Potency increases to 300 when partied with your personal chocobo.</para> /// </summary> -ChocoMeteor = 23284, +ChocoMeteor_PvE = 23284, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23285"><strong>Matra Magic</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23285"><strong>Matra Magic</strong></see> <i>PvE</i> (BLU) [23285] [Spell] /// <para>Deals an unaspected eightfold attack, each hit with a potency of 50.</para> /// <para>Potency is increased to 100 when you are under the effect of Aetheric Mimicry: DPS.</para> /// <para>Shares a recast timer with Angel's Snack and Dragon Force.</para> /// </summary> -MatraMagic = 23285, +MatraMagic_PvE = 23285, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23286"><strong>Peripheral Synthesis</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23286"><strong>Peripheral Synthesis</strong></see> <i>PvE</i> (BLU) [23286] [Spell] /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Potency increased to 400 when target becomes afflicted with Lightheaded.</para> /// <para>Additional Effect: Inflicts Lightheaded</para> /// <para>Duration: 5s</para> /// <para>Repeated use of this action in a short period will reduce the additional effect's duration, eventually rendering targets immune to Lightheaded.</para> /// </summary> -PeripheralSynthesis = 23286, +PeripheralSynthesis_PvE = 23286, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23287"><strong>Both Ends</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23287"><strong>Both Ends</strong></see> <i>PvE</i> (BLU) [23287] [Ability] /// <para>Deals physical damage with a potency of 600 to all nearby enemies.</para> /// <para>Shares a recast timer with Nightbloom.</para> /// </summary> -BothEnds = 23287, +BothEnds_PvE = 23287, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23288"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23288"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23288] [Ability] /// <para>Deals physical damage over time with a potency of 200 to all enemies in a cone before you.</para> /// <para>Duration: 5s</para> /// <para>Executing Phantom Flurry again before its effect expires deals physical damage to all enemies in a cone before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Effect ends upon using an action other than Phantom Flurry or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -PhantomFlurry = 23288, +PhantomFlurry_PvE = 23288, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23289"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23289"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23289] [Ability] /// <para>Deals physical damage over time with a potency of 200 to all enemies in a cone before you.</para> /// <para>Duration: 5s</para> /// <para>Executing Phantom Flurry again before its effect expires deals physical damage to all enemies in a cone before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Effect ends upon using an action other than Phantom Flurry or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -PhantomFlurry_23289 = 23289, +PhantomFlurry_PvE_23289 = 23289, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23290"><strong>Nightbloom</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23290"><strong>Nightbloom</strong></see> <i>PvE</i> (BLU) [23290] [Ability] /// <para>Deals unaspected damage to all nearby enemies with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Unaspected damage over time</para> /// <para>Potency: 75</para> /// <para>Duration: 60s</para> /// <para>Shares a recast timer with Both Ends.</para> /// </summary> -Nightbloom = 23290, +Nightbloom_PvE = 23290, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23345"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/23345"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount] /// <para>Unleash an Eternal Breath...sort-of.</para> /// <para>※Has no effect in battle.</para> /// </summary> -SemieternalBreath = 23345, +SemieternalBreath_PvE = 23345, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23416"><strong>Stotram</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/23416"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23416] [Spell] /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para> /// <para> Action effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetheric Mimicry: Healer.</para> /// <para> Cure Potency: 300</para> /// </summary> -Stotram_23416 = 23416, +Stotram_PvE_23416 = 23416, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23907"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23907"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item] /// <para>Instantly return to the starting point of the area.</para> /// <para>Cannot be executed while in combat.</para> /// <para>Shares a recast timer with all other weaponskills and spells.</para> /// </summary> -Lodestone = 23907, +Lodestone_PvE = 23907, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23908"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23908"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell] /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para> /// <para>Duration: 30s</para> /// </summary> -LostStoneskinIi = 23908, +LostStoneskinIi_PvE = 23908, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23909"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/23909"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell] /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para> /// <para>Additional Effect: Interrupts all nearby enemies</para> /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para> /// <para>Duration: 60s</para> /// </summary> -LostBurst = 23909, +LostBurst_PvE = 23909, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23910"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/23910"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill] /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para> /// <para>Additional Effect: Interrupts all nearby enemies</para> /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para> /// <para>Duration: 60s</para> /// </summary> -LostRampage = 23910, +LostRampage_PvE = 23910, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23911"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23911"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item] /// <para>Grants the effect of Lost Reflect to self.</para> /// <para>Lost Reflect Effect: Reflects most magic attacks</para> /// <para>Duration: 10s</para> /// <para>Shares a recast timer with all other weaponskills and spells.</para> /// </summary> -LightCurtain = 23911, +LightCurtain_PvE = 23911, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23912"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23912"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell] /// <para>Grants the effect of Reraise to self or target player.</para> /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para> /// <para>Duration: 180m</para> /// </summary> -LostReraise = 23912, +LostReraise_PvE = 23912, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23913"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) +/// <see href="https://garlandtools.org/db/#action/23913"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability] /// <para>Temporarily eliminates cast time for all spells.</para> /// <para>Duration: 30s</para> /// <para>Additional Effect: Magic Burst</para> @@ -26177,36 +26177,36 @@ LostReraise = 23912, /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -LostChainspell = 23913, +LostChainspell_PvE = 23913, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23914"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/23914"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill] /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para> /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para> /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para> /// <para>Duration: 18s</para> /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para> /// </summary> -LostAssassination = 23914, +LostAssassination_PvE = 23914, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23915"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23915"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell] /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para> /// <para>Duration: 30m</para> /// </summary> -LostProtectIi = 23915, +LostProtectIi_PvE = 23915, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23916"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23916"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell] /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para> /// <para>Duration: 30m</para> /// </summary> -LostShellIi = 23916, +LostShellIi_PvE = 23916, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23917"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23917"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell] /// <para>Increases maximum HP of self or target player by 30%.</para> /// <para>Duration: 600s</para> /// </summary> -LostBubble = 23917, +LostBubble_PvE = 23917, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23918"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23918"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability] /// <para>Quickly dash 10 yalms forward.</para> /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para> /// <para>Lost Swift Effect: Greatly increases movement speed</para> @@ -26220,18 +26220,18 @@ LostBubble = 23917, /// <para>Duration: 15s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -LostImpetus = 23918, +LostImpetus_PvE = 23918, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23919"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) +/// <see href="https://garlandtools.org/db/#action/23919"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability] /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para> /// <para>Duration: 10s</para> /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para> /// <para>Duration: 50s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -LostExcellence = 23919, +LostExcellence_PvE = 23919, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23920"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) +/// <see href="https://garlandtools.org/db/#action/23920"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability] /// <para>Fully restores HP and MP while granting Auto-potion and Auto-ether to self and nearby party members.</para> /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para> /// <para>Duration: 600s</para> @@ -26241,9 +26241,9 @@ LostExcellence = 23919, /// <para>When triggered, there is a 50% chance the effect will end.</para> /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion and Auto-ether effect to end is reduced to 10%</para> /// </summary> -LostFullCure = 23920, +LostFullCure_PvE = 23920, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23921"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) +/// <see href="https://garlandtools.org/db/#action/23921"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability] /// <para>Increases damage dealt by 15% and reduces damage taken by 5% per stack. Stacks increase with each use of a dash attack while effect is active, to a maximum of 4.</para> /// <para>Duration: 18s</para> /// <para>Maximum stacks grant the effect of Blood Rush.</para> @@ -26251,100 +26251,100 @@ LostFullCure = 23920, /// <para>Duration: 30s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -LostBloodRage = 23921, +LostBloodRage_PvE = 23921, /// <summary> -/// <see href="https://garlandtools.org/db/#action/23922"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/23922"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item] /// <para>Restores own HP and MP to maximum.</para> /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para> /// </summary> -ResistanceElixir = 23922, +ResistanceElixir_PvE = 23922, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24066"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24066"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability] /// <para></para> /// </summary> -DestinysSleeve = 24066, +DestinysSleeve_PvE = 24066, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24276"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24276"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount] /// <para>Create a shower of delicate frozen crystals.</para> /// <para>※Has no effect in battle.</para> /// </summary> -CrystalIce = 24276, +CrystalIce_PvE = 24276, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24277"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24277"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special] /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para> /// </summary> -MightyMaximizer = 24277, +MightyMaximizer_PvE = 24277, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24278"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24278"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special] /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para> /// </summary> -ChirpyChecker = 24278, +ChirpyChecker_PvE = 24278, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24279"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24279"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special] /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para> /// </summary> -PerkyPeeler = 24279, +PerkyPeeler_PvE = 24279, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24280"><strong>Aetheromatic Clipper</strong></see> <i>PvE</i> (Disciples of the Land or Hand) +/// <see href="https://garlandtools.org/db/#action/24280"><strong>Aetheromatic Clipper</strong></see> <i>PvE</i> (Disciples of the Land or Hand) [24280] [Special] /// <para>Release a blast of fleece-shearing aether. No animals were harmed in the development of this device. Probably.</para> /// </summary> -AetheromaticClipper = 24280, +AetheromaticClipper_PvE = 24280, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24283"><strong>Dosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24283"><strong>Dosis</strong></see> <i>PvE</i> (SGE) [24283] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// </summary> -Dosis = 24283, +Dosis_PvE = 24283, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24284"><strong>Diagnosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24284"><strong>Diagnosis</strong></see> <i>PvE</i> (SGE) [24284] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: </para> /// </summary> -Diagnosis = 24284, +Diagnosis_PvE = 24284, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24285"><strong>Kardia</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24285"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [24285] [Ability] /// <para>Grants self the effect of Kardia and a selected party member or self the effect of Kardion, restoring HP after casting certain magic attacks.</para> /// </summary> -Kardia = 24285, +Kardia_PvE = 24285, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24286"><strong>Prognosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24286"><strong>Prognosis</strong></see> <i>PvE</i> (SGE) [24286] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 300</para> /// </summary> -Prognosis = 24286, +Prognosis_PvE = 24286, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24287"><strong>Egeiro</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24287"><strong>Egeiro</strong></see> <i>PvE</i> (SGE) [24287] [Spell] /// <para>Resurrects target to a weakened state.</para> /// </summary> -Egeiro = 24287, +Egeiro_PvE = 24287, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24288"><strong>Physis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24288"><strong>Physis</strong></see> <i>PvE</i> (SGE) [24288] [Ability] /// <para>Gradually restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 100</para> /// <para>Duration: 15s</para> /// </summary> -Physis = 24288, +Physis_PvE = 24288, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24289"><strong>Phlegma</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24289"><strong>Phlegma</strong></see> <i>PvE</i> (SGE) [24289] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of for the first enemy, and 30% less for all remaining enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// <para>Maximum Charges: 2</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -Phlegma = 24289, +Phlegma_PvE = 24289, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24290"><strong>Eukrasia</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24290"><strong>Eukrasia</strong></see> <i>PvE</i> (SGE) [24290] [Spell] /// <para>Augments certain offensive and healing magic actions.</para> /// <para>Dosis III is upgraded to Eukrasian Dosis IIIDosis II is upgraded to Eukrasian Dosis IIDosis is upgraded to Eukrasian DosisDosis is upgraded to Eukrasian DosisDosis II is upgraded to Eukrasian Dosis IIDosis is upgraded to Eukrasian DosisDosis is upgraded to Eukrasian Dosis.</para> /// <para>Diagnosis is upgraded to Eukrasian Diagnosis.</para> /// <para>Prognosis is upgraded to Eukrasian Prognosis.</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// </summary> -Eukrasia = 24290, +Eukrasia_PvE = 24290, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24291"><strong>Eukrasian Diagnosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24291"><strong>Eukrasian Diagnosis</strong></see> <i>PvE</i> (SGE) [24291] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 300</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored. When critical HP is restored, also grants Differential Diagnosis, nullifying damage equaling % the amount of HP restored.</para> @@ -26353,9 +26353,9 @@ Eukrasia = 24290, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianDiagnosis = 24291, +EukrasianDiagnosis_PvE = 24291, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24292"><strong>Eukrasian Prognosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24292"><strong>Eukrasian Prognosis</strong></see> <i>PvE</i> (SGE) [24292] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 100</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored</para> @@ -26364,9 +26364,9 @@ EukrasianDiagnosis = 24291, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianPrognosis = 24292, +EukrasianPrognosis_PvE = 24292, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24293"><strong>Eukrasian Dosis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24293"><strong>Eukrasian Dosis</strong></see> <i>PvE</i> (SGE) [24293] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: </para> /// <para>Duration: 30s</para> @@ -26375,36 +26375,36 @@ EukrasianPrognosis = 24292, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianDosis = 24293, +EukrasianDosis_PvE = 24293, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24294"><strong>Soteria</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24294"><strong>Soteria</strong></see> <i>PvE</i> (SGE) [24294] [Ability] /// <para>Grants 4 stacks of Soteria, each stack increasing the cure potency of Kardion effects granted by you by 70%.</para> /// <para>Duration: 15s</para> /// </summary> -Soteria = 24294, +Soteria_PvE = 24294, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24295"><strong>Icarus</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24295"><strong>Icarus</strong></see> <i>PvE</i> (SGE) [24295] [Ability] /// <para>Rush to a targeted enemy's or party member's location.</para> /// <para>Unable to cast if bound.</para> /// </summary> -Icarus = 24295, +Icarus_PvE = 24295, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24296"><strong>Druochole</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24296"><strong>Druochole</strong></see> <i>PvE</i> (SGE) [24296] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 600</para> /// <para>Additional Effect: Restores 7% of maximum MP</para> /// <para>Addersgall Cost: 1</para> /// </summary> -Druochole = 24296, +Druochole_PvE = 24296, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24297"><strong>Dyskrasia</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24297"><strong>Dyskrasia</strong></see> <i>PvE</i> (SGE) [24297] [Spell] /// <para>Deals unaspected damage with a potency of 160 to all nearby enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// </summary> -Dyskrasia = 24297, +Dyskrasia_PvE = 24297, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24298"><strong>Kerachole</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24298"><strong>Kerachole</strong></see> <i>PvE</i> (SGE) [24298] [Ability] /// <para>Reduces damage taken by self and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para>Effect cannot be stacked with Taurochole.</para> @@ -26414,40 +26414,40 @@ Dyskrasia = 24297, /// <para>Additional Effect: Restores 7% of maximum MP</para> /// <para>Addersgall Cost: 1</para> /// </summary> -Kerachole = 24298, +Kerachole_PvE = 24298, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24299"><strong>Ixochole</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24299"><strong>Ixochole</strong></see> <i>PvE</i> (SGE) [24299] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 400</para> /// <para>Additional Effect: Restores 7% of maximum MP</para> /// <para>Addersgall Cost: 1</para> /// </summary> -Ixochole = 24299, +Ixochole_PvE = 24299, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24300"><strong>Zoe</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24300"><strong>Zoe</strong></see> <i>PvE</i> (SGE) [24300] [Ability] /// <para>Increases healing magic potency of your next healing spell by 50%.</para> /// <para>Duration: 30s</para> /// </summary> -Zoe = 24300, +Zoe_PvE = 24300, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24301"><strong>Pepsis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24301"><strong>Pepsis</strong></see> <i>PvE</i> (SGE) [24301] [Ability] /// <para>Restores own HP and the HP of nearby party members by removing Eukrasian Diagnosis and Eukrasian Prognosis effects granted by you.</para> /// <para>Eukrasian Diagnosis Cure Potency: 450</para> /// <para>Eukrasian Prognosis Cure Potency: 350</para> /// <para>Targets not under the effect of Eukrasian Diagnosis or Eukrasian Prognosis will not be healed.</para> /// </summary> -Pepsis = 24301, +Pepsis_PvE = 24301, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24302"><strong>Physis II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24302"><strong>Physis II</strong></see> <i>PvE</i> (SGE) [24302] [Ability] /// <para>Gradually restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 130</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Increases HP recovered by healing actions by 10%</para> /// <para>Duration: 10s</para> /// </summary> -PhysisIi = 24302, +PhysisIi_PvE = 24302, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24303"><strong>Taurochole</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24303"><strong>Taurochole</strong></see> <i>PvE</i> (SGE) [24303] [Ability] /// <para>Restores own or target party member's HP.</para> /// <para>Cure Potency: 700</para> /// <para>Additional Effect: Reduces target's damage taken by 10%</para> @@ -26456,17 +26456,17 @@ PhysisIi = 24302, /// <para>Additional Effect: Restores 7% of maximum MP</para> /// <para>Addersgall Cost: 1</para> /// </summary> -Taurochole = 24303, +Taurochole_PvE = 24303, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24304"><strong>Toxikon</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24304"><strong>Toxikon</strong></see> <i>PvE</i> (SGE) [24304] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// <para>Addersting Cost: 1</para> /// </summary> -Toxikon = 24304, +Toxikon_PvE = 24304, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24305"><strong>Haima</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24305"><strong>Haima</strong></see> <i>PvE</i> (SGE) [24305] [Ability] /// <para>Erects a magicked barrier around self or target party member that absorbs damage equivalent to a heal of 300 potency.</para> /// <para>Additional Effect: Grants 5 stacks of Haimatinon</para> /// <para>Duration: 15s</para> @@ -26474,25 +26474,25 @@ Toxikon = 24304, /// <para>When the effect duration expires, a healing effect is then applied.</para> /// <para>Cure Potency: 150 per remaining stack of Haimatinon</para> /// </summary> -Haima = 24305, +Haima_PvE = 24305, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24306"><strong>Dosis II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24306"><strong>Dosis II</strong></see> <i>PvE</i> (SGE) [24306] [Spell] /// <para>Deals unaspected damage with a potency of 320.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// </summary> -DosisIi = 24306, +DosisIi_PvE = 24306, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24307"><strong>Phlegma II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24307"><strong>Phlegma II</strong></see> <i>PvE</i> (SGE) [24307] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 490 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// <para>Maximum Charges: 2</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -PhlegmaIi = 24307, +PhlegmaIi_PvE = 24307, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24308"><strong>Eukrasian Dosis II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24308"><strong>Eukrasian Dosis II</strong></see> <i>PvE</i> (SGE) [24308] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 60</para> /// <para>Duration: 30s</para> @@ -26501,14 +26501,14 @@ PhlegmaIi = 24307, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianDosisIi = 24308, +EukrasianDosisIi_PvE = 24308, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24309"><strong>Rhizomata</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24309"><strong>Rhizomata</strong></see> <i>PvE</i> (SGE) [24309] [Ability] /// <para>Grants 1 stack of Addersgall.</para> /// </summary> -Rhizomata = 24309, +Rhizomata_PvE = 24309, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24310"><strong>Holos</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24310"><strong>Holos</strong></see> <i>PvE</i> (SGE) [24310] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 300</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para> @@ -26516,9 +26516,9 @@ Rhizomata = 24309, /// <para>Additional Effect: Reduces damage taken by self and nearby party members by 10%</para> /// <para>Duration: 20s</para> /// </summary> -Holos = 24310, +Holos_PvE = 24310, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24311"><strong>Panhaima</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24311"><strong>Panhaima</strong></see> <i>PvE</i> (SGE) [24311] [Ability] /// <para>Erects a magicked barrier around self and all party members near you that absorbs damage equivalent to a heal of 200 potency.</para> /// <para>Additional Effect: Grants 5 stacks of Panhaimatinon</para> /// <para>Duration: 15s</para> @@ -26526,25 +26526,25 @@ Holos = 24310, /// <para>When the effect duration expires, a healing effect is then applied.</para> /// <para>Cure Potency: 100 per remaining stack of Panhaimatinon</para> /// </summary> -Panhaima = 24311, +Panhaima_PvE = 24311, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24312"><strong>Dosis III</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24312"><strong>Dosis III</strong></see> <i>PvE</i> (SGE) [24312] [Spell] /// <para>Deals unaspected damage with a potency of 330.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// </summary> -DosisIii = 24312, +DosisIii_PvE = 24312, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24313"><strong>Phlegma III</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24313"><strong>Phlegma III</strong></see> <i>PvE</i> (SGE) [24313] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// <para>Maximum Charges: 2</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -PhlegmaIii = 24313, +PhlegmaIii_PvE = 24313, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24314"><strong>Eukrasian Dosis III</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24314"><strong>Eukrasian Dosis III</strong></see> <i>PvE</i> (SGE) [24314] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 75</para> /// <para>Duration: 30s</para> @@ -26553,30 +26553,30 @@ PhlegmaIii = 24313, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianDosisIii = 24314, +EukrasianDosisIii_PvE = 24314, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24315"><strong>Dyskrasia II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24315"><strong>Dyskrasia II</strong></see> <i>PvE</i> (SGE) [24315] [Spell] /// <para>Deals unaspected damage with a potency of 170 to all nearby enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// </summary> -DyskrasiaIi = 24315, +DyskrasiaIi_PvE = 24315, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24316"><strong>Toxikon II</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24316"><strong>Toxikon II</strong></see> <i>PvE</i> (SGE) [24316] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 330 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: </para> /// <para>Addersting Cost: 1</para> /// </summary> -ToxikonIi = 24316, +ToxikonIi_PvE = 24316, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24317"><strong>Krasis</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24317"><strong>Krasis</strong></see> <i>PvE</i> (SGE) [24317] [Ability] /// <para>Increases HP recovery via healing actions for a party member or self by 20%.</para> /// <para>Duration: 10s</para> /// </summary> -Krasis = 24317, +Krasis_PvE = 24317, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24318"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/24318"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [24318] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 330 for the first enemy, and 40% less for all remaining enemies.</para> /// <para>Additional Effect: Restores own HP and the HP of all party members within a radius of 20 yalms</para> /// <para>Cure Potency: 600</para> @@ -26584,81 +26584,81 @@ Krasis = 24317, /// <para>Cure Potency: </para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -Pneuma = 24318, +Pneuma_PvE = 24318, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24373"><strong>Slice</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24373"><strong>Slice</strong></see> <i>PvE</i> (RPR) [24373] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Increases Soul Gauge by 10</para> /// </summary> -Slice = 24373, +Slice_PvE = 24373, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24374"><strong>Waxing Slice</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24374"><strong>Waxing Slice</strong></see> <i>PvE</i> (RPR) [24374] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Slice</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Soul Gauge by 10</para> /// </summary> -WaxingSlice = 24374, +WaxingSlice_PvE = 24374, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24375"><strong>Infernal Slice</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24375"><strong>Infernal Slice</strong></see> <i>PvE</i> (RPR) [24375] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Combo Action: Waxing Slice</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Soul Gauge by 10</para> /// </summary> -InfernalSlice = 24375, +InfernalSlice_PvE = 24375, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24376"><strong>Spinning Scythe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24376"><strong>Spinning Scythe</strong></see> <i>PvE</i> (RPR) [24376] [Weaponskill] /// <para>Delivers an attack with a potency of to all nearby enemies.</para> /// <para>Additional Effect: Increases Soul Gauge by 10</para> /// </summary> -SpinningScythe = 24376, +SpinningScythe_PvE = 24376, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24377"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24377"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (RPR) [24377] [Weaponskill] /// <para>Delivers an attack with a potency of to all nearby enemies.</para> /// <para>Combo Action: Spinning Scythe</para> /// <para>Combo Potency: </para> /// <para>Combo Bonus: Increases Soul Gauge by 10</para> /// </summary> -NightmareScythe = 24377, +NightmareScythe_PvE = 24377, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24378"><strong>Shadow of Death</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24378"><strong>Shadow of Death</strong></see> <i>PvE</i> (RPR) [24378] [Weaponskill] /// <para>Delivers an attack with a potency of .</para> /// <para>Additional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends duration of Death's Design by 30s to a maximum of 60s.</para> /// <para>Additional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires</para> /// </summary> -ShadowOfDeath = 24378, +ShadowOfDeath_PvE = 24378, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24379"><strong>Whorl of Death</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24379"><strong>Whorl of Death</strong></see> <i>PvE</i> (RPR) [24379] [Weaponskill] /// <para>Delivers an attack with a potency of to all nearby enemies.</para> /// <para>Additional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%</para> /// <para>Duration: 30s</para> /// <para>Extends duration of Death's Design by 30s to a maximum of 60s.</para> /// <para>Additional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires</para> /// </summary> -WhorlOfDeath = 24379, +WhorlOfDeath_PvE = 24379, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24380"><strong>Soul Slice</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24380"><strong>Soul Slice</strong></see> <i>PvE</i> (RPR) [24380] [Weaponskill] /// <para>Delivers an attack with a potency of 460.</para> /// <para>Additional Effect: Increases Soul Gauge by 50</para> /// <para>Maximum Charges: 2</para> /// <para>Shares a recast timer with Soul Scythe.</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -SoulSlice = 24380, +SoulSlice_PvE = 24380, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24381"><strong>Soul Scythe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24381"><strong>Soul Scythe</strong></see> <i>PvE</i> (RPR) [24381] [Weaponskill] /// <para>Delivers an attack with a potency of 180 to all nearby enemies.</para> /// <para>Additional Effect: Increases Soul Gauge by 50</para> /// <para>Maximum Charges: 2</para> /// <para>Shares a recast timer with Soul Slice.</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -SoulScythe = 24381, +SoulScythe_PvE = 24381, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24382"><strong>Gibbet</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24382"><strong>Gibbet</strong></see> <i>PvE</i> (RPR) [24382] [Weaponskill] /// <para>Delivers an attack with a potency of 400.</para> /// <para>460 when executed from a target's flank.</para> /// <para>Enhanced Gibbet Potency: 460</para> @@ -26671,9 +26671,9 @@ SoulScythe = 24381, /// <para></para> /// <para>※Action changes to Void Reaping while under the effect of Enshrouded.</para> /// </summary> -Gibbet = 24382, +Gibbet_PvE = 24382, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24383"><strong>Gallows</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24383"><strong>Gallows</strong></see> <i>PvE</i> (RPR) [24383] [Weaponskill] /// <para>Delivers an attack with a potency of 400.</para> /// <para>460 when executed from a target's rear.</para> /// <para>Enhanced Gallows Potency: 460</para> @@ -26686,18 +26686,18 @@ Gibbet = 24382, /// <para></para> /// <para>※Action changes to Cross Reaping while under the effect of Enshrouded.</para> /// </summary> -Gallows = 24383, +Gallows_PvE = 24383, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24384"><strong>Guillotine</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24384"><strong>Guillotine</strong></see> <i>PvE</i> (RPR) [24384] [Weaponskill] /// <para>Delivers an attack with a potency of 200 to all enemies in a cone before you.</para> /// <para>Additional Effect: Increases Shroud Gauge by 10</para> /// <para>Can only be executed while under the effect of Soul Reaver.</para> /// <para></para> /// <para>※Action changes to Grim Reaping while under the effect of Enshrouded.</para> /// </summary> -Guillotine = 24384, +Guillotine_PvE = 24384, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24385"><strong>Plentiful Harvest</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24385"><strong>Plentiful Harvest</strong></see> <i>PvE</i> (RPR) [24385] [Weaponskill] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 720 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Immortal Sacrifice Cost: 1 stack</para> /// <para>Potency increases up to 1,000 as stacks of Immortal Sacrifice exceed minimum cost.</para> @@ -26705,28 +26705,28 @@ Guillotine = 24384, /// <para>Cannot be executed while under the effect of Bloodsown Circle.</para> /// <para>Consumes all stacks of Immortal Sacrifice upon execution.</para> /// </summary> -PlentifulHarvest = 24385, +PlentifulHarvest_PvE = 24385, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24386"><strong>Harpe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24386"><strong>Harpe</strong></see> <i>PvE</i> (RPR) [24386] [Spell] /// <para>Deals unaspected damage with a potency of .</para> /// </summary> -Harpe = 24386, +Harpe_PvE = 24386, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24387"><strong>Soulsow</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24387"><strong>Soulsow</strong></see> <i>PvE</i> (RPR) [24387] [Spell] /// <para>Grants Soulsow to self, changing the action to Harvest Moon.</para> /// <para>Cast time is instant when used outside of battle.</para> /// </summary> -Soulsow = 24387, +Soulsow_PvE = 24387, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24388"><strong>Harvest Moon</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24388"><strong>Harvest Moon</strong></see> <i>PvE</i> (RPR) [24388] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Soulsow.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HarvestMoon = 24388, +HarvestMoon_PvE = 24388, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24389"><strong>Blood Stalk</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24389"><strong>Blood Stalk</strong></see> <i>PvE</i> (RPR) [24389] [Ability] /// <para>Summons your avatar to deliver an attack with a potency of 340.</para> /// <para>Additional Effect: Grants Soul Reaver</para> /// <para>Duration: 30s</para> @@ -26736,9 +26736,9 @@ HarvestMoon = 24388, /// <para></para> /// <para>※Action changes to Lemure's Slice while under the effect of Enshrouded.</para> /// </summary> -BloodStalk = 24389, +BloodStalk_PvE = 24389, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24390"><strong>Unveiled Gibbet</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24390"><strong>Unveiled Gibbet</strong></see> <i>PvE</i> (RPR) [24390] [Ability] /// <para>Summons your avatar to deliver an attack with a potency of 400.</para> /// <para>Additional Effect: Grants Soul Reaver</para> /// <para>Duration: 30s</para> @@ -26749,9 +26749,9 @@ BloodStalk = 24389, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -UnveiledGibbet = 24390, +UnveiledGibbet_PvE = 24390, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24391"><strong>Unveiled Gallows</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24391"><strong>Unveiled Gallows</strong></see> <i>PvE</i> (RPR) [24391] [Ability] /// <para>Summons your avatar to deliver an attack with a potency of 400.</para> /// <para>Additional Effect: Grants Soul Reaver</para> /// <para>Duration: 30s</para> @@ -26762,9 +26762,9 @@ UnveiledGibbet = 24390, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -UnveiledGallows = 24391, +UnveiledGallows_PvE = 24391, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24392"><strong>Grim Swathe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24392"><strong>Grim Swathe</strong></see> <i>PvE</i> (RPR) [24392] [Ability] /// <para>Summons your avatar to deliver an attack with a potency of 140 to all enemies in a cone before you.</para> /// <para>Additional Effect: Grants Soul Reaver</para> /// <para>Duration: 30s</para> @@ -26774,25 +26774,25 @@ UnveiledGallows = 24391, /// <para></para> /// <para>※Action changes to Lemure's Scythe while under the effect of Enshrouded.</para> /// </summary> -GrimSwathe = 24392, +GrimSwathe_PvE = 24392, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24393"><strong>Gluttony</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24393"><strong>Gluttony</strong></see> <i>PvE</i> (RPR) [24393] [Ability] /// <para>Summons your avatar to deal unaspected damage to target and all enemies nearby it with a potency of 520 for the first enemy, and 25% less for all remaining enemies.</para> /// <para>Additional Effect: Grants 2 stacks of Soul Reaver</para> /// <para>Duration: 30s</para> /// <para>Soul Gauge Cost: 50</para> /// </summary> -Gluttony = 24393, +Gluttony_PvE = 24393, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24394"><strong>Enshroud</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24394"><strong>Enshroud</strong></see> <i>PvE</i> (RPR) [24394] [Ability] /// <para>Offers your flesh as a vessel to your avatar, gaining maximum stacks of Lemure Shroud.</para> /// <para>Duration: 30s</para> /// <para>Certain actions cannot be executed while playing host to your avatar.</para> /// <para>Shroud Gauge Cost: 50</para> /// </summary> -Enshroud = 24394, +Enshroud_PvE = 24394, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24395"><strong>Void Reaping</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24395"><strong>Void Reaping</strong></see> <i>PvE</i> (RPR) [24395] [Weaponskill] /// <para>Delivers an attack with a potency of 460.</para> /// <para>Enhanced Void Reaping Potency: 520</para> /// <para>Additional Effect: Grants Enhanced Cross Reaping</para> @@ -26805,9 +26805,9 @@ Enshroud = 24394, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -VoidReaping = 24395, +VoidReaping_PvE = 24395, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24396"><strong>Cross Reaping</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24396"><strong>Cross Reaping</strong></see> <i>PvE</i> (RPR) [24396] [Weaponskill] /// <para>Delivers an attack with a potency of 460.</para> /// <para>Enhanced Cross Reaping Potency: 520</para> /// <para>Additional Effect: Grants Enhanced Void Reaping</para> @@ -26819,9 +26819,9 @@ VoidReaping = 24395, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrossReaping = 24396, +CrossReaping_PvE = 24396, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24397"><strong>Grim Reaping</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24397"><strong>Grim Reaping</strong></see> <i>PvE</i> (RPR) [24397] [Weaponskill] /// <para>Delivers an attack with a potency of 200 to all enemies in a cone before you.</para> /// <para>Additional Effect: Grants Void Shroud</para> /// <para>Can only be executed while under the effect of Enshrouded.</para> @@ -26830,34 +26830,34 @@ CrossReaping = 24396, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -GrimReaping = 24397, +GrimReaping_PvE = 24397, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24398"><strong>Communio</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24398"><strong>Communio</strong></see> <i>PvE</i> (RPR) [24398] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Enshrouded effect expires upon execution.</para> /// <para>Requires at least one stack of Lemure Shroud to execute.</para> /// </summary> -Communio = 24398, +Communio_PvE = 24398, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24399"><strong>Lemure's Slice</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24399"><strong>Lemure's Slice</strong></see> <i>PvE</i> (RPR) [24399] [Ability] /// <para>Delivers an attack with a potency of 240.</para> /// <para>Void Shroud Cost: 2</para> /// <para>Shares a recast timer with Lemure's Scythe.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -LemuresSlice = 24399, +LemuresSlice_PvE = 24399, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24400"><strong>Lemure's Scythe</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24400"><strong>Lemure's Scythe</strong></see> <i>PvE</i> (RPR) [24400] [Ability] /// <para>Delivers an attack with a potency of 100 to all enemies in a cone before you.</para> /// <para>Void Shroud Cost: 2</para> /// <para>Shares a recast timer with Lemure's Slice.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -LemuresScythe = 24400, +LemuresScythe_PvE = 24400, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24401"><strong>Hell's Ingress</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24401"><strong>Hell's Ingress</strong></see> <i>PvE</i> (RPR) [24401] [Ability] /// <para>Quickly dash 15 yalms forward.</para> /// <para>Additional Effect: Allows next Harpe to be cast immediately</para> /// <para>Duration: 20s</para> @@ -26866,9 +26866,9 @@ LemuresScythe = 24400, /// <para>Cannot be executed while bound.</para> /// <para>Shares a recast timer with Hell's Egress.</para> /// </summary> -HellsIngress = 24401, +HellsIngress_PvE = 24401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24402"><strong>Hell's Egress</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24402"><strong>Hell's Egress</strong></see> <i>PvE</i> (RPR) [24402] [Ability] /// <para>Quickly dash 15 yalms backwards.</para> /// <para>Additional Effect: Allows next Harpe to be cast immediately</para> /// <para>Duration: 20s</para> @@ -26877,18 +26877,18 @@ HellsIngress = 24401, /// <para>Cannot be executed while bound.</para> /// <para>Shares a recast timer with Hell's Ingress.</para> /// </summary> -HellsEgress = 24402, +HellsEgress_PvE = 24402, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24403"><strong>Regress</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24403"><strong>Regress</strong></see> <i>PvE</i> (RPR) [24403] [Ability] /// <para>Move instantly to the Hellsgate left behind by you.</para> /// <para>Can only be executed while under the effect of Threshold.</para> /// <para>Cannot be executed while bound.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Regress = 24403, +Regress_PvE = 24403, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24404"><strong>Arcane Crest</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24404"><strong>Arcane Crest</strong></see> <i>PvE</i> (RPR) [24404] [Ability] /// <para>Grants Crest of Time Borrowed to self, creating a barrier that nullifies damage totaling up to 10% of maximum HP.</para> /// <para>Duration: 5s</para> /// <para>Grants Crest of Time Returned to self and nearby party members within a radius of 15 yalms when barrier is completely absorbed.</para> @@ -26896,9 +26896,9 @@ Regress = 24403, /// <para>Cure Potency: 50</para> /// <para>Duration: 15s</para> /// </summary> -ArcaneCrest = 24404, +ArcaneCrest_PvE = 24404, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24405"><strong>Arcane Circle</strong></see> <i>PvE</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/24405"><strong>Arcane Circle</strong></see> <i>PvE</i> (RPR) [24405] [Ability] /// <para>Increases damage dealt by self and nearby party members by 3%.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Grants Circle of Sacrifice to self and nearby party members</para> @@ -26909,86 +26909,86 @@ ArcaneCrest = 24404, /// <para>Duration: 30s</para> /// <para>Bloodsown Circle Effect: Allows you to accumulate stacks of Immortal Sacrifice from party members under the effect of your Circle of Sacrifice</para> /// </summary> -ArcaneCircle = 24405, +ArcaneCircle_PvE = 24405, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24619"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24619"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill] /// <para>Unleash a digital barrage that damages black walls and pylons.</para> /// </summary> -LiminalFire = 24619, +LiminalFire_PvE = 24619, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24620"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24620"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill] /// <para>Unleash a digital barrage that damages white walls and pylons.</para> /// </summary> -LiminalFire_24620 = 24620, +LiminalFire_PvE_24620 = 24620, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24621"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24621"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability] /// <para>Swap your color.</para> /// </summary> -F0Switch = 24621, +F0Switch_PvE = 24621, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24622"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24622"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability] /// <para>Swap your color.</para> /// </summary> -F0Switch_24622 = 24622, +F0Switch_PvE_24622 = 24622, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24831"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24831"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell] /// <para></para> /// </summary> -Scorch_24831 = 24831, +Scorch_PvE_24831 = 24831, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24858"><strong>the End</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24858"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break] /// <para></para> /// </summary> -TheEnd = 24858, +TheEnd_PvE = 24858, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24859"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24859"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break] /// <para></para> /// </summary> -TechneMakre = 24859, +TechneMakre_PvE = 24859, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24898"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24898"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell] /// <para></para> /// </summary> -Scorch_24898 = 24898, +Scorch_PvE_24898 = 24898, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24917"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24917"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability] /// <para></para> /// </summary> -Corpsacorps_24917 = 24917, +Corpsacorps_PvE_24917 = 24917, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24918"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24918"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill] /// <para></para> /// </summary> -EnchantedRiposte_24918 = 24918, +EnchantedRiposte_PvE_24918 = 24918, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24919"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24919"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill] /// <para></para> /// </summary> -EnchantedZwerchhau_24919 = 24919, +EnchantedZwerchhau_PvE_24919 = 24919, /// <summary> -/// <see href="https://garlandtools.org/db/#action/24920"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/24920"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill] /// <para></para> /// </summary> -EnchantedRedoublement_24920 = 24920, +EnchantedRedoublement_PvE_24920 = 24920, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25133"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/25133"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability] /// <para></para> /// </summary> -MedicalKit = 25133, +MedicalKit_PvE = 25133, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25589"><strong>Mountaineer's Gift II</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/25589"><strong>Mountaineer's Gift II</strong></see> <i>PvE</i> (MIN) [25589] [DoL Ability] /// <para>Increases the chance of triggering Gatherer's Boon by 30%. Does not apply to items at 0%.</para> /// <para>Effect can be stacked with Mountaineer's Gift I.</para> /// </summary> -MountaineersGiftIi = 25589, +MountaineersGiftIi_PvE = 25589, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25590"><strong>Pioneer's Gift II</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/25590"><strong>Pioneer's Gift II</strong></see> <i>PvE</i> (BTN) [25590] [DoL Ability] /// <para>Increases the chance of triggering Gatherer's Boon by 30%. Does not apply to items at 0%.</para> /// <para>Effect can be stacked with Pioneer's Gift I.</para> /// </summary> -PioneersGiftIi = 25590, +PioneersGiftIi_PvE = 25590, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25746"><strong>Holy Sheltron</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/25746"><strong>Holy Sheltron</strong></see> <i>PvE</i> (PLD) [25746] [Ability] /// <para>Reduces damage taken by 15%.</para> /// <para>Duration: 8s</para> /// <para>Additional Effect: Grants Knight's Resolve</para> @@ -27000,15 +27000,15 @@ PioneersGiftIi = 25590, /// <para>Duration: 12s</para> /// <para>Oath Gauge Cost: 50</para> /// </summary> -HolySheltron = 25746, +HolySheltron_PvE = 25746, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25747"><strong>Expiacion</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/25747"><strong>Expiacion</strong></see> <i>PvE</i> (PLD) [25747] [Ability] /// <para>Delivers an attack to target and all enemies nearby it with a potency of 450 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Additional Effect: Restores MP</para> /// </summary> -Expiacion = 25747, +Expiacion_PvE = 25747, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25748"><strong>Blade of Faith</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/25748"><strong>Blade of Faith</strong></see> <i>PvE</i> (PLD) [25748] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Requiescat Potency: 720</para> /// <para>Combo Action: Confiteor</para> @@ -27017,9 +27017,9 @@ Expiacion = 25747, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfFaith = 25748, +BladeOfFaith_PvE = 25748, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25749"><strong>Blade of Truth</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/25749"><strong>Blade of Truth</strong></see> <i>PvE</i> (PLD) [25749] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 320 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Requiescat Potency: 820</para> /// <para>Combo Action: Blade of Faith</para> @@ -27028,9 +27028,9 @@ BladeOfFaith = 25748, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfTruth = 25749, +BladeOfTruth_PvE = 25749, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25750"><strong>Blade of Valor</strong></see> <i>PvE</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/25750"><strong>Blade of Valor</strong></see> <i>PvE</i> (PLD) [25750] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Requiescat Potency: 920</para> /// <para>Combo Action: Blade of Truth</para> @@ -27039,9 +27039,9 @@ BladeOfTruth = 25749, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfValor = 25750, +BladeOfValor_PvE = 25750, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25751"><strong>Bloodwhetting</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/25751"><strong>Bloodwhetting</strong></see> <i>PvE</i> (WAR) [25751] [Ability] /// <para>Reduces damage taken by 10%.</para> /// <para>Duration: 8s</para> /// <para>Additional Effect: Restores HP with each weaponskill successfully delivered</para> @@ -27054,50 +27054,50 @@ BladeOfValor = 25750, /// <para>Duration: 20s</para> /// <para>Shares a recast timer with Nascent Flash.</para> /// </summary> -Bloodwhetting = 25751, +Bloodwhetting_PvE = 25751, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25752"><strong>Orogeny</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/25752"><strong>Orogeny</strong></see> <i>PvE</i> (WAR) [25752] [Ability] /// <para>Delivers an attack with a potency of 150 to all nearby enemies.</para> /// <para>Shares a recast timer with Upheaval.</para> /// </summary> -Orogeny = 25752, +Orogeny_PvE = 25752, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25753"><strong>Primal Rend</strong></see> <i>PvE</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/25753"><strong>Primal Rend</strong></see> <i>PvE</i> (WAR) [25753] [Weaponskill] /// <para>Jumps to the target and delivers a critical direct hit to target and all enemies nearby it with a potency of 700 for the first enemy, and 70% less for all remaining enemies.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Stacks of Inner Release are not consumed upon execution.</para> /// <para>Can only be executed while under the effect of Primal Rend Ready, granted by Inner Release.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -PrimalRend = 25753, +PrimalRend_PvE = 25753, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25754"><strong>Oblation</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/25754"><strong>Oblation</strong></see> <i>PvE</i> (DRK) [25754] [Ability] /// <para>Reduces damage taken by target party member or self by 10%.</para> /// <para>Duration: 10s</para> /// <para>Maximum Charges: 2</para> /// </summary> -Oblation = 25754, +Oblation_PvE = 25754, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25755"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/25755"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25755] [Ability] /// <para>All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SaltAndDarkness = 25755, +SaltAndDarkness_PvE = 25755, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25756"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/25756"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25756] [Ability] /// <para></para> /// </summary> -SaltAndDarkness_25756 = 25756, +SaltAndDarkness_PvE_25756 = 25756, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25757"><strong>Shadowbringer</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/25757"><strong>Shadowbringer</strong></see> <i>PvE</i> (DRK) [25757] [Ability] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed while under the effect of Darkside.</para> /// </summary> -Shadowbringer = 25757, +Shadowbringer_PvE = 25757, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25758"><strong>Heart of Corundum</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/25758"><strong>Heart of Corundum</strong></see> <i>PvE</i> (GNB) [25758] [Ability] /// <para>Reduces damage taken by target party member or self by 15%.</para> /// <para>Duration: 8s</para> /// <para>Additional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target</para> @@ -27110,47 +27110,47 @@ Shadowbringer = 25757, /// <para>Cure Potency: 900</para> /// <para>Duration: 20s</para> /// </summary> -HeartOfCorundum = 25758, +HeartOfCorundum_PvE = 25758, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25759"><strong>Hypervelocity</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/25759"><strong>Hypervelocity</strong></see> <i>PvE</i> (GNB) [25759] [Ability] /// <para>Delivers an attack with a potency of 180.</para> /// <para>Can only be executed when Ready to Blast.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hypervelocity = 25759, +Hypervelocity_PvE = 25759, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25760"><strong>Double Down</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/25760"><strong>Double Down</strong></see> <i>PvE</i> (GNB) [25760] [Weaponskill] /// <para>Delivers an attack to all nearby enemies with a potency of 1,200 for the first enemy, and 15% less for all remaining enemies.</para> /// <para>Cartridge Cost: 2</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -DoubleDown = 25760, +DoubleDown_PvE = 25760, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25761"><strong>Steel Peak</strong></see> <i>PvE</i> (PGL MNK) +/// <see href="https://garlandtools.org/db/#action/25761"><strong>Steel Peak</strong></see> <i>PvE</i> (PGL MNK) [25761] [Ability] /// <para>Delivers an attack with a potency of 180.</para> /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para> /// <para>Shares a recast timer with Howling Fist.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SteelPeak = 25761, +SteelPeak_PvE = 25761, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25762"><strong>Thunderclap</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25762"><strong>Thunderclap</strong></see> <i>PvE</i> (MNK) [25762] [Ability] /// <para>Rush to a targeted enemy's or party member's location.</para> /// <para>Maximum Charges: </para> /// <para>Cannot be executed while bound.</para> /// </summary> -Thunderclap = 25762, +Thunderclap_PvE = 25762, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25763"><strong>Howling Fist</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25763"><strong>Howling Fist</strong></see> <i>PvE</i> (MNK) [25763] [Ability] /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para> /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para> /// <para>Shares a recast timer with The Forbidden ChakraSteel PeakSteel Peak.</para> /// </summary> -HowlingFist = 25763, +HowlingFist_PvE = 25763, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25764"><strong>Masterful Blitz</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25764"><strong>Masterful Blitz</strong></see> <i>PvE</i> (MNK) [25764] [Weaponskill] /// <para>Strike the enemy with a technique fueled by the power of your Beast Chakra.</para> /// <para>The technique used is determined by the number of different types of Beast Chakra opened.</para> /// <para>1 Beast Chakra Type: Elixir Field</para> @@ -27158,9 +27158,9 @@ HowlingFist = 25763, /// <para>3 Beast Chakra Types: Rising PhoenixFlint StrikeFlint Strike</para> /// <para>3 Beast Chakra and Both Nadi: Phantom RushTornado KickTornado Kick</para> /// </summary> -MasterfulBlitz = 25764, +MasterfulBlitz_PvE = 25764, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25765"><strong>Celestial Revolution</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25765"><strong>Celestial Revolution</strong></see> <i>PvE</i> (MNK) [25765] [Weaponskill] /// <para>Delivers an attack with a potency of 450.</para> /// <para>Additional Effect: Opens the Lunar Nadi</para> /// <para>If the Lunar Nadi is already open, opens the Solar Nadi instead.</para> @@ -27171,24 +27171,24 @@ MasterfulBlitz = 25764, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CelestialRevolution = 25765, +CelestialRevolution_PvE = 25765, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25766"><strong>Riddle of Wind</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25766"><strong>Riddle of Wind</strong></see> <i>PvE</i> (MNK) [25766] [Ability] /// <para>Reduces auto-attack delay by 50%.</para> /// <para>Duration: 15s</para> /// </summary> -RiddleOfWind = 25766, +RiddleOfWind_PvE = 25766, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25767"><strong>Shadow of the Destroyer</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25767"><strong>Shadow of the Destroyer</strong></see> <i>PvE</i> (MNK) [25767] [Weaponskill] /// <para>Delivers an attack with a potency of 110 to all nearby enemies.</para> /// <para>Opo-opo Form Bonus: Guarantees a critical hit</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para> /// <para>Additional Effect: Changes form to raptor</para> /// <para>Duration: 30s</para> /// </summary> -ShadowOfTheDestroyer = 25767, +ShadowOfTheDestroyer_PvE = 25767, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25768"><strong>Rising Phoenix</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25768"><strong>Rising Phoenix</strong></see> <i>PvE</i> (MNK) [25768] [Weaponskill] /// <para>Deals physical fire damage to all nearby enemies with a potency of 700 for the first enemy, and 70% less for all remaining enemies.</para> /// <para>Additional Effect: Opens the Solar Nadi</para> /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para> @@ -27198,9 +27198,9 @@ ShadowOfTheDestroyer = 25767, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RisingPhoenix = 25768, +RisingPhoenix_PvE = 25768, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25769"><strong>Phantom Rush</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25769"><strong>Phantom Rush</strong></see> <i>PvE</i> (MNK) [25769] [Weaponskill] /// <para>Delivers an attack to target and all enemies nearby it with a potency of 1,150 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para> /// <para>Duration: 30s</para> @@ -27209,18 +27209,18 @@ RisingPhoenix = 25768, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PhantomRush = 25769, +PhantomRush_PvE = 25769, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25770"><strong>Draconian Fury</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/25770"><strong>Draconian Fury</strong></see> <i>PvE</i> (DRG) [25770] [Weaponskill] /// <para>Delivers an attack with a potency of 130 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Sharpens the Firstminds' Focus by 1</para> /// <para>Can only be executed while under the effect of Draconian Fire.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -DraconianFury = 25770, +DraconianFury_PvE = 25770, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25771"><strong>Heavens' Thrust</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/25771"><strong>Heavens' Thrust</strong></see> <i>PvE</i> (DRG) [25771] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>Combo Action: Vorpal Thrust</para> /// <para>Combo Potency: 480</para> @@ -27228,9 +27228,9 @@ DraconianFury = 25770, /// <para>Duration: 30s</para> /// <para>Effect of Fang and Claw Bared ends upon execution of any melee weaponskill.</para> /// </summary> -HeavensThrust = 25771, +HeavensThrust_PvE = 25771, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25772"><strong>Chaotic Spring</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/25772"><strong>Chaotic Spring</strong></see> <i>PvE</i> (DRG) [25772] [Weaponskill] /// <para>Delivers an attack with a potency of 100.</para> /// <para>140 when executed from a target's rear.</para> /// <para>Combo Action: Disembowel</para> @@ -27243,15 +27243,15 @@ HeavensThrust = 25771, /// <para>Duration: 30s</para> /// <para>Effect of Wheel in Motion ends upon execution of any melee weaponskill.</para> /// </summary> -ChaoticSpring = 25772, +ChaoticSpring_PvE = 25772, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25773"><strong>Wyrmwind Thrust</strong></see> <i>PvE</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/25773"><strong>Wyrmwind Thrust</strong></see> <i>PvE</i> (DRG) [25773] [Ability] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Firstminds' Focus Cost: 2</para> /// </summary> -WyrmwindThrust = 25773, +WyrmwindThrust_PvE = 25773, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25774"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25774"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25774] [Weaponskill] /// <para>Your shadow deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Extends Huton duration by 10s to a maximum of 60s</para> /// <para>Additional Effect: Increases Ninki Gauge by 10</para> @@ -27259,52 +27259,52 @@ WyrmwindThrust = 25773, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PhantomKamaitachi = 25774, +PhantomKamaitachi_PvE = 25774, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25775"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25775"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25775] [Weaponskill] /// <para></para> /// </summary> -PhantomKamaitachi_25775 = 25775, +PhantomKamaitachi_PvE_25775 = 25775, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25776"><strong>Hollow Nozuchi</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25776"><strong>Hollow Nozuchi</strong></see> <i>PvE</i> (NIN) [25776] [Ability] /// <para>All enemies standing in the corrupted earth of Doton take additional earth damage with a potency of 50.</para> /// <para>Requires Hakke Mujinsatsu to be executed as a combo action or upon executing Katon, Goka Mekkyaku, or Phantom Kamaitachi.</para> /// <para>Effect can only be triggered while Doton is active.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HollowNozuchi = 25776, +HollowNozuchi_PvE = 25776, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25777"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25777"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25777] [Weaponskill] /// <para>Rushes target and delivers a lightning attack with a potency of 560.</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// <para>Can only be executed while under the effect of Raiju Ready.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -ForkedRaiju = 25777, +ForkedRaiju_PvE = 25777, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25778"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25778"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25778] [Weaponskill] /// <para>Deals lightning damage with a potency of 560.</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// <para>Can only be executed while under the effect of Raiju Ready.</para> /// </summary> -FleetingRaiju = 25778, +FleetingRaiju_PvE = 25778, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25779"><strong>Shoha II</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/25779"><strong>Shoha II</strong></see> <i>PvE</i> (SAM) [25779] [Ability] /// <para>Delivers an attack with a potency of 200 to all nearby enemies.</para> /// <para>Can only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikirior Meditateor Meditate while in combat.</para> /// <para>Meditation effect fades upon execution.</para> /// <para>Shares a recast timer with Shoha.</para> /// </summary> -ShohaIi = 25779, +ShohaIi_PvE = 25779, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25780"><strong>Fuko</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/25780"><strong>Fuko</strong></see> <i>PvE</i> (SAM) [25780] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Additional Effect: Increases Kenki Gauge by 10</para> /// </summary> -Fuko = 25780, +Fuko_PvE = 25780, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25781"><strong>Ogi Namikiri</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/25781"><strong>Ogi Namikiri</strong></see> <i>PvE</i> (SAM) [25781] [Weaponskill] /// <para>Delivers a critical hit to all enemies in a cone before you with a potency of 860 for the first enemy, and 75% less for all remaining enemies.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para> /// <para>Grants a stack of Meditation, up to a maximum of 3.</para> @@ -27312,33 +27312,33 @@ Fuko = 25780, /// <para></para> /// <para>※Action changes to Kaeshi: Namikiri upon execution.</para> /// </summary> -OgiNamikiri = 25781, +OgiNamikiri_PvE = 25781, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25782"><strong>Kaeshi: Namikiri</strong></see> <i>PvE</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/25782"><strong>Kaeshi: Namikiri</strong></see> <i>PvE</i> (SAM) [25782] [Ability] /// <para>Delivers a critical hit to all enemies in a cone before you with a potency of 860 for the first enemy, and 75% less for all remaining enemies.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para> /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KaeshiNamikiri = 25782, +KaeshiNamikiri_PvE = 25782, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25783"><strong>Ladonsbite</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/25783"><strong>Ladonsbite</strong></see> <i>PvE</i> (BRD) [25783] [Weaponskill] /// <para>Delivers an attack with a potency of 130 to all enemies in a cone before you.</para> /// <para>Additional Effect: 35% chance of becoming Shadowbite Ready</para> /// <para>Duration: 30s</para> /// </summary> -Ladonsbite = 25783, +Ladonsbite_PvE = 25783, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25784"><strong>Blast Arrow</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/25784"><strong>Blast Arrow</strong></see> <i>PvE</i> (BRD) [25784] [Weaponskill] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Blast Arrow Ready.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BlastArrow = 25784, +BlastArrow_PvE = 25784, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25785"><strong>Radiant Finale</strong></see> <i>PvE</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/25785"><strong>Radiant Finale</strong></see> <i>PvE</i> (BRD) [25785] [Ability] /// <para>Increases damage dealt by self and nearby party members.</para> /// <para>Duration: 15s</para> /// <para>Effectiveness is determined by the number of different Coda active in the Song Gauge.</para> @@ -27347,31 +27347,31 @@ BlastArrow = 25784, /// <para>3 Coda: 6%</para> /// <para>Can only be executed when at least 1 coda is active.</para> /// </summary> -RadiantFinale = 25785, +RadiantFinale_PvE = 25785, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25786"><strong>Scattergun</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/25786"><strong>Scattergun</strong></see> <i>PvE</i> (MCH) [25786] [Weaponskill] /// <para>Delivers an attack with a potency of 150 to all enemies in a cone before you.</para> /// <para>Additional Effect: Increases Heat Gauge by 10</para> /// </summary> -Scattergun = 25786, +Scattergun_PvE = 25786, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25787"><strong>Crowned Collider</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/25787"><strong>Crowned Collider</strong></see> <i>PvE</i> (MCH) [25787] [Ability] /// <para>Delivers an attack with a potency of 390.</para> /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 780.</para> /// <para>The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrownedCollider = 25787, +CrownedCollider_PvE = 25787, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25788"><strong>Chain Saw</strong></see> <i>PvE</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/25788"><strong>Chain Saw</strong></see> <i>PvE</i> (MCH) [25788] [Weaponskill] /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 65% less for all remaining enemies.</para> /// <para>Additional Effect: Increases Battery Gauge by 20</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -ChainSaw = 25788, +ChainSaw_PvE = 25788, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25789"><strong>Improvised Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/25789"><strong>Improvised Finish</strong></see> <i>PvE</i> (DNC) [25789] [Ability] /// <para>Creates a barrier around self and all nearby party members. Damage absorbed increases with stacks of Rising Rhythm.</para> /// <para>0 Stacks: 5% of maximum HP</para> /// <para>1 Stack: 6% of maximum HP</para> @@ -27383,9 +27383,9 @@ ChainSaw = 25788, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ImprovisedFinish = 25789, +ImprovisedFinish_PvE = 25789, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25790"><strong>Tillana</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/25790"><strong>Tillana</strong></see> <i>PvE</i> (DNC) [25790] [Weaponskill] /// <para>Delivers an attack to all nearby enemies with a potency of 360 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner</para> /// <para>Standard Finish Effect: Increases damage dealt by 5%</para> @@ -27395,51 +27395,51 @@ ImprovisedFinish = 25789, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Tillana = 25790, +Tillana_PvE = 25790, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25791"><strong>Fan Dance IV</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/25791"><strong>Fan Dance IV</strong></see> <i>PvE</i> (DNC) [25791] [Ability] /// <para>Delivers an attack to all enemies in a cone before you with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Fourfold Fan Dance.</para> /// </summary> -FanDanceIv = 25791, +FanDanceIv_PvE = 25791, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25792"><strong>Starfall Dance</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/25792"><strong>Starfall Dance</strong></see> <i>PvE</i> (DNC) [25792] [Weaponskill] /// <para>Delivers a critical direct hit to all enemies in a straight line before you with a potency of 600 for the first enemy, and 75% less for all remaining enemies.</para> /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para> /// <para>Can only be executed while under the effect of Flourishing Starfall.</para> /// </summary> -StarfallDance = 25792, +StarfallDance_PvE = 25792, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25793"><strong>Blizzard II</strong></see> <i>PvE</i> (THM BLM) +/// <see href="https://garlandtools.org/db/#action/25793"><strong>Blizzard II</strong></see> <i>PvE</i> (THM BLM) [25793] [Spell] /// <para>Deals ice damage with a potency of 100 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants Umbral Ice III andGrants Umbral Ice III andGrants Umbral Ice orGrants Umbral Ice or removes Astral Fire</para> /// <para>Duration: 15s</para> /// </summary> -BlizzardIi = 25793, +BlizzardIi_PvE = 25793, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25794"><strong>High Fire II</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/25794"><strong>High Fire II</strong></see> <i>PvE</i> (BLM) [25794] [Spell] /// <para>Deals fire damage with a potency of 140 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants Astral Fire III and removes Umbral Ice</para> /// <para>Duration: 15s</para> /// <para>Astral Fire Bonus: Grants Enhanced Flare</para> /// <para>Effect is canceled if Astral Fire ends.</para> /// </summary> -HighFireIi = 25794, +HighFireIi_PvE = 25794, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25795"><strong>High Blizzard II</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/25795"><strong>High Blizzard II</strong></see> <i>PvE</i> (BLM) [25795] [Spell] /// <para>Deals ice damage with a potency of 140 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants Umbral Ice III and removes Astral Fire</para> /// <para>Duration: 15s</para> /// </summary> -HighBlizzardIi = 25795, +HighBlizzardIi_PvE = 25795, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25796"><strong>Amplifier</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/25796"><strong>Amplifier</strong></see> <i>PvE</i> (BLM) [25796] [Ability] /// <para>Grants Polyglot.</para> /// <para>Can only be executed while under the effect of Astral Fire or Umbral Ice.</para> /// </summary> -Amplifier = 25796, +Amplifier_PvE = 25796, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25797"><strong>Paradox</strong></see> <i>PvE</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/25797"><strong>Paradox</strong></see> <i>PvE</i> (BLM) [25797] [Spell] /// <para>Deals unaspected damage with a potency of 500.</para> /// <para>Astral Fire Bonus: Refreshes the duration of Astral Fire and 40% chance to grant Firestarter</para> /// <para>Duration: 15s</para> @@ -27451,37 +27451,37 @@ Amplifier = 25796, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Paradox = 25797, +Paradox_PvE = 25797, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25798"><strong>Summon Carbuncle</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25798"><strong>Summon Carbuncle</strong></see> <i>PvE</i> (ACN SMN) [25798] [Spell] /// <para>Summons Carbuncle to your side.</para> /// </summary> -SummonCarbuncle = 25798, +SummonCarbuncle_PvE = 25798, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25799"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25799"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25799] [Ability] /// <para>Orders Carbuncle to execute Radiant Aegis.</para> /// <para>Radiant Aegis Effect: Creates a barrier around self that absorbs damage totaling 20% of your maximum HP</para> /// <para>Duration: 30s</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed while Carbuncle is summoned.</para> /// </summary> -RadiantAegis = 25799, +RadiantAegis_PvE = 25799, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25800"><strong>Aethercharge</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25800"><strong>Aethercharge</strong></see> <i>PvE</i> (ACN SMN) [25800] [Spell] /// <para>Grants Aethercharge, increasing the potency of Ruin, Ruin II, and Ruin III by 50, and Outburst by 20.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald ArcanumRuby Arcanum, Topaz Arcanum, and Emerald ArcanumRuby Arcanum and Topaz ArcanumRuby Arcanum and Topaz ArcanumRuby ArcanumRuby ArcanumRuby Arcanum and Topaz ArcanumRuby Arcanum and Topaz ArcanumRuby ArcanumRuby Arcanum</para> /// <para>Can only be executed in combat and while Carbuncle is summoned.</para> /// </summary> -Aethercharge = 25800, +Aethercharge_PvE = 25800, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25801"><strong>Searing Light</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25801"><strong>Searing Light</strong></see> <i>PvE</i> (SMN) [25801] [Ability] /// <para>Increases damage dealt by self and nearby party members by 3%.</para> /// <para>Duration: 30s</para> /// </summary> -SearingLight = 25801, +SearingLight_PvE = 25801, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25802"><strong>Summon Ruby</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25802"><strong>Summon Ruby</strong></see> <i>PvE</i> (ACN SMN) [25802] [Spell] /// <para>Summons Ruby Carbuncle, and orders it to execute Glittering Ruby.</para> /// <para>Glittering Ruby Effect: Rushes target and deals fire damage with a potency of 400</para> /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para> @@ -27490,9 +27490,9 @@ SearingLight = 25801, /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Ruby Carbuncle is present, and return once gone.</para> /// </summary> -SummonRuby = 25802, +SummonRuby_PvE = 25802, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25803"><strong>Summon Topaz</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25803"><strong>Summon Topaz</strong></see> <i>PvE</i> (ACN SMN) [25803] [Spell] /// <para>Summons Topaz Carbuncle, and orders it to execute Glittering Topaz.</para> /// <para>Glittering Topaz Effect: Rushes target and deals earth damage with a potency of 400</para> /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para> @@ -27501,9 +27501,9 @@ SummonRuby = 25802, /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Topaz Carbuncle is present, and return once gone.</para> /// </summary> -SummonTopaz = 25803, +SummonTopaz_PvE = 25803, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25804"><strong>Summon Emerald</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25804"><strong>Summon Emerald</strong></see> <i>PvE</i> (ACN SMN) [25804] [Spell] /// <para>Summons Emerald Carbuncle, and orders it to execute Glittering Emerald.</para> /// <para>Glittering Emerald Effect: Deals wind damage with a potency of 400</para> /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para> @@ -27512,9 +27512,9 @@ SummonTopaz = 25803, /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Emerald Carbuncle is present, and return once gone.</para> /// </summary> -SummonEmerald = 25804, +SummonEmerald_PvE = 25804, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25805"><strong>Summon Ifrit</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25805"><strong>Summon Ifrit</strong></see> <i>PvE</i> (SMN) [25805] [Spell] /// <para>Summons Ifrit-Egi and orders it to execute InfernoBurning StrikeBurning Strike.</para> /// <para>Inferno Effect: Rushes forward and deals fire damage to all enemies in a 5-yalm cone before it with a potency of 600 for the first enemy, and 60% less for all remaining enemiesBurning Strike Effect: Rushes forward and deals fire damage with a potency of 500Burning Strike Effect: Rushes forward and deals fire damage with a potency of 500</para> /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para> @@ -27525,9 +27525,9 @@ SummonEmerald = 25804, /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Ifrit-Egi is present, and return once gone.</para> /// </summary> -SummonIfrit = 25805, +SummonIfrit_PvE = 25805, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25806"><strong>Summon Titan</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25806"><strong>Summon Titan</strong></see> <i>PvE</i> (SMN) [25806] [Spell] /// <para>Summons Titan-Egi and orders it to execute Earthen FuryRock BusterRock Buster.</para> /// <para>Earthen Fury Effect: Rushes forward and deals earth damage to all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemiesRock Buster Effect: Rushes forward and deals earth damage with a potency of 500Rock Buster Effect: Rushes forward and deals earth damage with a potency of 500</para> /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para> @@ -27536,9 +27536,9 @@ SummonIfrit = 25805, /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Titan-Egi is present, and return once gone.</para> /// </summary> -SummonTitan = 25806, +SummonTitan_PvE = 25806, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25807"><strong>Summon Garuda</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25807"><strong>Summon Garuda</strong></see> <i>PvE</i> (SMN) [25807] [Spell] /// <para>Summons Garuda-Egi and orders it to execute Aerial BlastAerial SlashAerial Slash.</para> /// <para>Aerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemiesAerial Slash Effect: Deals wind damage with a potency of 100 to target and all enemies nearby itAerial Slash Effect: Deals wind damage with a potency of 100 to target and all enemies nearby it</para> /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para> @@ -27549,125 +27549,125 @@ SummonTitan = 25806, /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Garuda-Egi is present, and return once gone.</para> /// </summary> -SummonGaruda = 25807, +SummonGaruda_PvE = 25807, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25808"><strong>Ruby Ruin</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25808"><strong>Ruby Ruin</strong></see> <i>PvE</i> (ACN SMN) [25808] [Spell] /// <para>Deals fire damage with a potency of 340.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyRuin = 25808, +RubyRuin_PvE = 25808, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25809"><strong>Topaz Ruin</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25809"><strong>Topaz Ruin</strong></see> <i>PvE</i> (ACN SMN) [25809] [Spell] /// <para>Deals earth damage with a potency of 240.</para> /// <para>Earth Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazRuin = 25809, +TopazRuin_PvE = 25809, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25810"><strong>Emerald Ruin</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25810"><strong>Emerald Ruin</strong></see> <i>PvE</i> (ACN SMN) [25810] [Spell] /// <para>Deals wind damage with a potency of 160.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldRuin = 25810, +EmeraldRuin_PvE = 25810, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25811"><strong>Ruby Ruin II</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25811"><strong>Ruby Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25811] [Spell] /// <para>Deals fire damage with a potency of 380.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyRuinIi = 25811, +RubyRuinIi_PvE = 25811, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25812"><strong>Topaz Ruin II</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25812"><strong>Topaz Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25812] [Spell] /// <para>Deals earth damage with a potency of 270.</para> /// <para>Earth Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazRuinIi = 25812, +TopazRuinIi_PvE = 25812, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25813"><strong>Emerald Ruin II</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25813"><strong>Emerald Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25813] [Spell] /// <para>Deals wind damage with a potency of 170.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldRuinIi = 25813, +EmeraldRuinIi_PvE = 25813, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25814"><strong>Ruby Outburst</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25814"><strong>Ruby Outburst</strong></see> <i>PvE</i> (ACN SMN) [25814] [Spell] /// <para>Deals fire damage with a potency of 160 to target and all enemies nearby it.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyOutburst = 25814, +RubyOutburst_PvE = 25814, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25815"><strong>Topaz Outburst</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25815"><strong>Topaz Outburst</strong></see> <i>PvE</i> (ACN SMN) [25815] [Spell] /// <para>Deals earth damage with a potency of 110 to target and all enemies nearby it.</para> /// <para>Earth Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazOutburst = 25815, +TopazOutburst_PvE = 25815, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25816"><strong>Emerald Outburst</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25816"><strong>Emerald Outburst</strong></see> <i>PvE</i> (ACN SMN) [25816] [Spell] /// <para>Deals wind damage with a potency of 70 to target and all enemies nearby it.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldOutburst = 25816, +EmeraldOutburst_PvE = 25816, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25817"><strong>Ruby Ruin III</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25817"><strong>Ruby Ruin III</strong></see> <i>PvE</i> (SMN) [25817] [Spell] /// <para>Deals fire damage with a potency of 410.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyRuinIii = 25817, +RubyRuinIii_PvE = 25817, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25818"><strong>Topaz Ruin III</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25818"><strong>Topaz Ruin III</strong></see> <i>PvE</i> (SMN) [25818] [Spell] /// <para>Deals earth damage with a potency of 300.</para> /// <para>Earth Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazRuinIii = 25818, +TopazRuinIii_PvE = 25818, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25819"><strong>Emerald Ruin III</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25819"><strong>Emerald Ruin III</strong></see> <i>PvE</i> (SMN) [25819] [Spell] /// <para>Deals wind damage with a potency of 180.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldRuinIii = 25819, +EmeraldRuinIii_PvE = 25819, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25820"><strong>Astral Impulse</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25820"><strong>Astral Impulse</strong></see> <i>PvE</i> (SMN) [25820] [Spell] /// <para>Deals unaspected damage with a potency of 440.</para> /// <para>Can only be executed while in Dreadwyrm Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AstralImpulse = 25820, +AstralImpulse_PvE = 25820, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25821"><strong>Astral Flare</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25821"><strong>Astral Flare</strong></see> <i>PvE</i> (SMN) [25821] [Spell] /// <para>Deals unaspected damage with a potency of 180 to target and all enemies nearby it.</para> /// <para>Can only be executed while in Dreadwyrm Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AstralFlare = 25821, +AstralFlare_PvE = 25821, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25822"><strong>Astral Flow</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25822"><strong>Astral Flow</strong></see> <i>PvE</i> (SMN) [25822] [Spell] /// <para>Channel the energies of your active trance or elemental favor to perform one of several actions.</para> /// <para>Dreadwyrm Trance Effect: Action changes to Deathflare</para> /// <para>Firebird Trance Effect: Action changes to Rekindle</para> @@ -27675,18 +27675,18 @@ AstralFlare = 25821, /// <para>Titan's Favor Effect: Action changes to Mountain Buster</para> /// <para>Garuda's Favor Effect: Action changes to Slipstream</para> /// </summary> -AstralFlow = 25822, +AstralFlow_PvE = 25822, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25823"><strong>Ruby Rite</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25823"><strong>Ruby Rite</strong></see> <i>PvE</i> (SMN) [25823] [Spell] /// <para>Deals fire damage with a potency of .</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyRite = 25823, +RubyRite_PvE = 25823, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25824"><strong>Topaz Rite</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25824"><strong>Topaz Rite</strong></see> <i>PvE</i> (SMN) [25824] [Spell] /// <para>Deals earth damage with a potency of .</para> /// <para>Additional Effect: Grants Titan's Favor</para> /// <para>Effect of Titan's Favor ends upon execution of certain summoner actions.</para> @@ -27694,47 +27694,47 @@ RubyRite = 25823, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazRite = 25824, +TopazRite_PvE = 25824, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25825"><strong>Emerald Rite</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25825"><strong>Emerald Rite</strong></see> <i>PvE</i> (SMN) [25825] [Spell] /// <para>Deals wind damage with a potency of .</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldRite = 25825, +EmeraldRite_PvE = 25825, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25826"><strong>Tri-disaster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25826"><strong>Tri-disaster</strong></see> <i>PvE</i> (SMN) [25826] [Spell] /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para> /// </summary> -Tridisaster = 25826, +Tridisaster_PvE = 25826, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25827"><strong>Ruby Disaster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25827"><strong>Ruby Disaster</strong></see> <i>PvE</i> (SMN) [25827] [Spell] /// <para>Deals fire damage with a potency of 190 to target and all enemies nearby it.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyDisaster = 25827, +RubyDisaster_PvE = 25827, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25828"><strong>Topaz Disaster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25828"><strong>Topaz Disaster</strong></see> <i>PvE</i> (SMN) [25828] [Spell] /// <para>Deals earth damage with a potency of 130 to target and all enemies nearby it.</para> /// <para>Earth Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazDisaster = 25828, +TopazDisaster_PvE = 25828, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25829"><strong>Emerald Disaster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25829"><strong>Emerald Disaster</strong></see> <i>PvE</i> (SMN) [25829] [Spell] /// <para>Deals wind damage with a potency of 90 to target and all enemies nearby it.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldDisaster = 25829, +EmeraldDisaster_PvE = 25829, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25830"><strong>Rekindle</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25830"><strong>Rekindle</strong></see> <i>PvE</i> (SMN) [25830] [Ability] /// <para>Restores own or target party member's HP.</para> /// <para>Cure Potency: 400</para> /// <para>Additional Effect: Grants Rekindle to target</para> @@ -27746,9 +27746,9 @@ EmeraldDisaster = 25829, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Rekindle = 25830, +Rekindle_PvE = 25830, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25831"><strong>Summon Phoenix</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25831"><strong>Summon Phoenix</strong></see> <i>PvE</i> (SMN) [25831] [Spell] /// <para>Enters Firebird Trance and summons Demi-Phoenix to fight by your side, which executes Everlasting Flight as it manifests.</para> /// <para>Demi-Phoenix will execute Scarlet Flame automatically on the targets attacked by you after summoning.</para> /// <para>Increases enmity in target when Demi-Phoenix is summoned.</para> @@ -27758,18 +27758,18 @@ Rekindle = 25830, /// <para>Can only be executed while Carbuncle is summoned.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -SummonPhoenix = 25831, +SummonPhoenix_PvE = 25831, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25832"><strong>Ruby Catastrophe</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25832"><strong>Ruby Catastrophe</strong></see> <i>PvE</i> (SMN) [25832] [Spell] /// <para>Deals fire damage with a potency of 210 to target and all enemies nearby it.</para> /// <para>Fire Attunement Cost: 1</para> /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RubyCatastrophe = 25832, +RubyCatastrophe_PvE = 25832, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25833"><strong>Topaz Catastrophe</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25833"><strong>Topaz Catastrophe</strong></see> <i>PvE</i> (SMN) [25833] [Spell] /// <para>Deals earth damage with a potency of 140 to target and all enemies nearby it.</para> /// <para>Additional Effect: Grants Titan's Favor</para> /// <para>Effect of Titan's Favor ends upon execution of certain summoner actions.</para> @@ -27777,17 +27777,17 @@ RubyCatastrophe = 25832, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TopazCatastrophe = 25833, +TopazCatastrophe_PvE = 25833, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25834"><strong>Emerald Catastrophe</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25834"><strong>Emerald Catastrophe</strong></see> <i>PvE</i> (SMN) [25834] [Spell] /// <para>Deals wind damage with a potency of 100 to target and all enemies nearby it.</para> /// <para>Wind Attunement Cost: 1</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EmeraldCatastrophe = 25834, +EmeraldCatastrophe_PvE = 25834, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25835"><strong>Crimson Cyclone</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25835"><strong>Crimson Cyclone</strong></see> <i>PvE</i> (SMN) [25835] [Spell] /// <para>Rushes forward and delivers a fire attack to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Ifrit's Favor.</para> /// <para>Cannot be executed while bound.</para> @@ -27795,17 +27795,17 @@ EmeraldCatastrophe = 25834, /// <para>※Action changes to Crimson Strike upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrimsonCyclone = 25835, +CrimsonCyclone_PvE = 25835, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25836"><strong>Mountain Buster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25836"><strong>Mountain Buster</strong></see> <i>PvE</i> (SMN) [25836] [Ability] /// <para>Deals earth damage to target and all enemies nearby it with a potency of 150 for the first enemy, and 70% less for all remaining enemies.</para> /// <para>Can only be executed while under the effect of Titan's Favor.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -MountainBuster_25836 = 25836, +MountainBuster_PvE_25836 = 25836, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25837"><strong>Slipstream</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25837"><strong>Slipstream</strong></see> <i>PvE</i> (SMN) [25837] [Spell] /// <para>Deals wind damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para> /// <para>Additional Effect: Creates a windstorm centered around the target, dealing damage to any enemies who enter</para> /// <para>Potency: 30</para> @@ -27815,9 +27815,9 @@ MountainBuster_25836 = 25836, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Slipstream = 25837, +Slipstream_PvE = 25837, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25838"><strong>Summon Ifrit II</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25838"><strong>Summon Ifrit II</strong></see> <i>PvE</i> (SMN) [25838] [Spell] /// <para>Summons Ruby Ifrit and orders it to execute Inferno.</para> /// <para>Inferno Effect: Deals fire damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para> /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para> @@ -27828,9 +27828,9 @@ Slipstream = 25837, /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Ruby Ifrit is present, and return once gone.</para> /// </summary> -SummonIfritIi = 25838, +SummonIfritIi_PvE = 25838, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25839"><strong>Summon Titan II</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25839"><strong>Summon Titan II</strong></see> <i>PvE</i> (SMN) [25839] [Spell] /// <para>Summons Topaz Titan and orders it to execute Earthen Fury.</para> /// <para>Earthen Fury Effect: Deals earth damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para> /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para> @@ -27839,9 +27839,9 @@ SummonIfritIi = 25838, /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Topaz Titan is present, and return once gone.</para> /// </summary> -SummonTitanIi = 25839, +SummonTitanIi_PvE = 25839, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25840"><strong>Summon Garuda II</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25840"><strong>Summon Garuda II</strong></see> <i>PvE</i> (SMN) [25840] [Spell] /// <para>Summons Emerald Garuda and orders it to execute Aerial Blast.</para> /// <para>Aerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para> /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para> @@ -27852,99 +27852,99 @@ SummonTitanIi = 25839, /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para> /// <para>Current pet will leave the battlefield while Emerald Garuda is present, and return once gone.</para> /// </summary> -SummonGarudaIi = 25840, +SummonGarudaIi_PvE = 25840, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25841"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25841"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25841] [Ability] /// <para>Creates a barrier around you that absorbs damage totaling 20% of your maximum HP.</para> /// <para>Duration: 30s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RadiantAegis_25841 = 25841, +RadiantAegis_PvE_25841 = 25841, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25843"><strong>Glittering Ruby</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25843"><strong>Glittering Ruby</strong></see> <i>PvE</i> (ACN SMN) [25843] [Spell] /// <para></para> /// </summary> -GlitteringRuby = 25843, +GlitteringRuby_PvE = 25843, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25844"><strong>Glittering Topaz</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25844"><strong>Glittering Topaz</strong></see> <i>PvE</i> (ACN SMN) [25844] [Spell] /// <para></para> /// </summary> -GlitteringTopaz = 25844, +GlitteringTopaz_PvE = 25844, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25845"><strong>Glittering Emerald</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25845"><strong>Glittering Emerald</strong></see> <i>PvE</i> (ACN SMN) [25845] [Spell] /// <para></para> /// </summary> -GlitteringEmerald = 25845, +GlitteringEmerald_PvE = 25845, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25846"><strong>Burning Strike</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25846"><strong>Burning Strike</strong></see> <i>PvE</i> (SMN) [25846] [Spell] /// <para></para> /// </summary> -BurningStrike = 25846, +BurningStrike_PvE = 25846, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25847"><strong>Rock Buster</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25847"><strong>Rock Buster</strong></see> <i>PvE</i> (SMN) [25847] [Spell] /// <para></para> /// </summary> -RockBuster = 25847, +RockBuster_PvE = 25847, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25848"><strong>Aerial Slash</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25848"><strong>Aerial Slash</strong></see> <i>PvE</i> (SMN) [25848] [Spell] /// <para></para> /// </summary> -AerialSlash = 25848, +AerialSlash_PvE = 25848, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25849"><strong>Inferno</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25849"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25849] [Spell] /// <para></para> /// </summary> -Inferno = 25849, +Inferno_PvE = 25849, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25850"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25850"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25850] [Spell] /// <para></para> /// </summary> -EarthenFury = 25850, +EarthenFury_PvE = 25850, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25851"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25851"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25851] [Spell] /// <para></para> /// </summary> -AerialBlast = 25851, +AerialBlast_PvE = 25851, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25852"><strong>Inferno</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25852"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25852] [Spell] /// <para></para> /// </summary> -Inferno_25852 = 25852, +Inferno_PvE_25852 = 25852, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25853"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25853"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25853] [Spell] /// <para></para> /// </summary> -EarthenFury_25853 = 25853, +EarthenFury_PvE_25853 = 25853, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25854"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25854"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25854] [Spell] /// <para></para> /// </summary> -AerialBlast_25854 = 25854, +AerialBlast_PvE_25854 = 25854, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25855"><strong>Verthunder III</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/25855"><strong>Verthunder III</strong></see> <i>PvE</i> (RDM) [25855] [Spell] /// <para>Deals lightning damage with a potency of 380.</para> /// <para>Additional Effect: Increases Black Mana by 6</para> /// <para>Additional Effect: 50% chance of becoming Verfire Ready</para> /// <para>Duration: 30s</para> /// </summary> -VerthunderIii = 25855, +VerthunderIii_PvE = 25855, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25856"><strong>Veraero III</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/25856"><strong>Veraero III</strong></see> <i>PvE</i> (RDM) [25856] [Spell] /// <para>Deals wind damage with a potency of 380.</para> /// <para>Additional Effect: Increases White Mana by 6</para> /// <para>Additional Effect: 50% chance of becoming Verstone Ready</para> /// <para>Duration: 30s</para> /// </summary> -VeraeroIii = 25856, +VeraeroIii_PvE = 25856, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25857"><strong>Magick Barrier</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/25857"><strong>Magick Barrier</strong></see> <i>PvE</i> (RDM) [25857] [Ability] /// <para>Reduces magic damage taken by self and nearby party members by 10%, while increasing HP recovered by healing actions by 5%.</para> /// <para>Duration: 10s</para> /// </summary> -MagickBarrier = 25857, +MagickBarrier_PvE = 25857, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25858"><strong>Resolution</strong></see> <i>PvE</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/25858"><strong>Resolution</strong></see> <i>PvE</i> (RDM) [25858] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 750 for the first enemy, and 60% less for all remaining enemies.</para> /// <para>Combo Action: Scorch</para> /// <para>Additional Effect: Increases both Black Mana and White Mana by 4</para> @@ -27952,27 +27952,27 @@ MagickBarrier = 25857, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Resolution = 25858, +Resolution_PvE = 25858, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25859"><strong>Glare III</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25859"><strong>Glare III</strong></see> <i>PvE</i> (WHM) [25859] [Spell] /// <para>Deals unaspected damage with a potency of 310.</para> /// </summary> -GlareIii = 25859, +GlareIii_PvE = 25859, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25860"><strong>Holy III</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25860"><strong>Holy III</strong></see> <i>PvE</i> (WHM) [25860] [Spell] /// <para>Deals unaspected damage with a potency of 150 to all nearby enemies.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 4s</para> /// </summary> -HolyIii = 25860, +HolyIii_PvE = 25860, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25861"><strong>Aquaveil</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25861"><strong>Aquaveil</strong></see> <i>PvE</i> (WHM) [25861] [Ability] /// <para>Reduces damage taken by a party member or self by 15%.</para> /// <para>Duration: 8s</para> /// </summary> -Aquaveil = 25861, +Aquaveil_PvE = 25861, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25862"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25862"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25862] [Ability] /// <para>Places a healing blossom at the designated location and grants 5 stacks of Liturgy of the Bell to self.</para> /// <para>Duration: 20s</para> /// <para>Taking damage will expend 1 stack of Liturgy of the Bell to heal self and all party members within a radius of 20 yalms.</para> @@ -27982,45 +27982,45 @@ Aquaveil = 25861, /// <para>Cure Potency: 200 for every remaining stack of Liturgy of the Bell</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -LiturgyOfTheBell = 25862, +LiturgyOfTheBell_PvE = 25862, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25863"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25863"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25863] [Ability] /// <para></para> /// </summary> -LiturgyOfTheBell_25863 = 25863, +LiturgyOfTheBell_PvE_25863 = 25863, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25864"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/25864"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25864] [Ability] /// <para></para> /// </summary> -LiturgyOfTheBell_25864 = 25864, +LiturgyOfTheBell_PvE_25864 = 25864, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25865"><strong>Broil IV</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/25865"><strong>Broil IV</strong></see> <i>PvE</i> (SCH) [25865] [Spell] /// <para>Deals unaspected damage with a potency of 295.</para> /// </summary> -BroilIv = 25865, +BroilIv_PvE = 25865, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25866"><strong>Art of War II</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/25866"><strong>Art of War II</strong></see> <i>PvE</i> (SCH) [25866] [Spell] /// <para>Deals unaspected damage with a potency of 180 to all nearby enemies.</para> /// </summary> -ArtOfWarIi = 25866, +ArtOfWarIi_PvE = 25866, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25867"><strong>Protraction</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/25867"><strong>Protraction</strong></see> <i>PvE</i> (SCH) [25867] [Ability] /// <para>Increases maximum HP of a party member or self by 10% and restores the amount increased.</para> /// <para>Additional Effect: Increases HP recovery via healing actions by 10%</para> /// <para>Duration: 10s</para> /// </summary> -Protraction = 25867, +Protraction_PvE = 25867, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25868"><strong>Expedient</strong></see> <i>PvE</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/25868"><strong>Expedient</strong></see> <i>PvE</i> (SCH) [25868] [Ability] /// <para>Grants Expedience and Desperate Measures to all nearby party members.</para> /// <para>Expedience Effect: Increases movement speed</para> /// <para>Duration: 10s</para> /// <para>Desperate Measures Effect: Reduces damage taken by 10%</para> /// <para>Duration: 20s</para> /// </summary> -Expedient = 25868, +Expedient_PvE = 25868, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25870"><strong>Astrodyne</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25870"><strong>Astrodyne</strong></see> <i>PvE</i> (AST) [25870] [Ability] /// <para>Grants an effect using the astrosigns read from your divining deck.</para> /// <para>Can only be executed after reading three astrosigns.</para> /// <para>Effects granted are determined by the number of different types of astrosigns read.</para> @@ -28033,27 +28033,27 @@ Expedient = 25868, /// <para>Harmony of Body Effect: Reduces spell cast time and recast time, and auto-attack delay by 10%</para> /// <para>Harmony of Mind Effect: Increases damage dealt and healing potency by 5%</para> /// </summary> -Astrodyne = 25870, +Astrodyne_PvE = 25870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25871"><strong>Fall Malefic</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25871"><strong>Fall Malefic</strong></see> <i>PvE</i> (AST) [25871] [Spell] /// <para>Deals unaspected damage with a potency of 250.</para> /// </summary> -FallMalefic = 25871, +FallMalefic_PvE = 25871, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25872"><strong>Gravity II</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25872"><strong>Gravity II</strong></see> <i>PvE</i> (AST) [25872] [Spell] /// <para>Deals unaspected damage with a potency of 130 to target and all enemies nearby it.</para> /// </summary> -GravityIi = 25872, +GravityIi_PvE = 25872, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25873"><strong>Exaltation</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25873"><strong>Exaltation</strong></see> <i>PvE</i> (AST) [25873] [Ability] /// <para>Reduces damage taken by self or target party member by 10%.</para> /// <para>Duration: 8s</para> /// <para>Additional Effect: Restores HP at the end of the effect's duration</para> /// <para>Cure Potency: 500</para> /// </summary> -Exaltation = 25873, +Exaltation_PvE = 25873, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25874"><strong>Macrocosmos</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25874"><strong>Macrocosmos</strong></see> <i>PvE</i> (AST) [25874] [Spell] /// <para>Deals unaspected damage to all nearby enemies with a potency of 250 for the first enemy, and 40% less for all remaining enemies.</para> /// <para>Additional Effect: Grants Macrocosmos to self and all nearby party members</para> /// <para>Duration: 15s</para> @@ -28063,45 +28063,45 @@ Exaltation = 25873, /// <para>Amount restored cannot exceed the target's maximum HP.</para> /// <para>Recast timer cannot be affected by status effects or gear attributes.</para> /// </summary> -Macrocosmos = 25874, +Macrocosmos_PvE = 25874, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25875"><strong>Microcosmos</strong></see> <i>PvE</i> (AST) +/// <see href="https://garlandtools.org/db/#action/25875"><strong>Microcosmos</strong></see> <i>PvE</i> (AST) [25875] [Ability] /// <para>Triggers the healing effect of Macrocosmos, restoring HP equal to a cure of 200 potency plus 50% of compiled damage.</para> /// <para>Amount restored cannot exceed the target's maximum HP.</para> /// </summary> -Microcosmos = 25875, +Microcosmos_PvE = 25875, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25876"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25876"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25876] [Weaponskill] /// <para>Delivers an attack with a potency of 200.</para> /// <para>Additional Effect: Grants Huton</para> /// <para>Duration: 60s</para> /// <para>Additional Effect: Increases Ninki Gauge by 5</para> /// </summary> -Huraijin = 25876, +Huraijin_PvE = 25876, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25877"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25877"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25877] [Weaponskill] /// <para></para> /// </summary> -Huraijin_25877 = 25877, +Huraijin_PvE_25877 = 25877, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25878"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25878"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25878] [Weaponskill] /// <para></para> /// </summary> -ForkedRaiju_25878 = 25878, +ForkedRaiju_PvE_25878 = 25878, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25879"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/25879"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25879] [Weaponskill] /// <para></para> /// </summary> -FleetingRaiju_25879 = 25879, +FleetingRaiju_PvE_25879 = 25879, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25880"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) +/// <see href="https://garlandtools.org/db/#action/25880"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell] /// <para>Puts target and all nearby enemies to sleep.</para> /// <para>Duration: 30s</para> /// <para>Cancels auto-attack upon execution.</para> /// </summary> -Sleep = 25880, +Sleep_PvE = 25880, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25882"><strong>Flint Strike</strong></see> <i>PvE</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/25882"><strong>Flint Strike</strong></see> <i>PvE</i> (MNK) [25882] [Weaponskill] /// <para>Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.</para> /// <para>Additional Effect: Opens the Solar Nadi</para> /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para> @@ -28111,333 +28111,333 @@ Sleep = 25880, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FlintStrike = 25882, +FlintStrike_PvE = 25882, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25883"><strong>Gemshine</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25883"><strong>Gemshine</strong></see> <i>PvE</i> (ACN SMN) [25883] [Spell] /// <para>Channel the energies of your active elemental attunement to attack your enemy.</para> /// <para>Fire Attunement Effect: Deal fire damage to a single target</para> /// <para>Earth Attunement Effect: Deal earth damage to a single target</para> /// <para>Wind Attunement Effect: Deal wind damage to a single target</para> /// </summary> -Gemshine = 25883, +Gemshine_PvE = 25883, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25884"><strong>Precious Brilliance</strong></see> <i>PvE</i> (ACN SMN) +/// <see href="https://garlandtools.org/db/#action/25884"><strong>Precious Brilliance</strong></see> <i>PvE</i> (ACN SMN) [25884] [Spell] /// <para>Channel the energies of your active elemental attunement to attack multiple enemies.</para> /// <para>Fire Attunement Effect: Deal fire damage to a target and all enemies nearby it</para> /// <para>Earth Attunement Effect: Deal earth damage to a target and all enemies nearby it</para> /// <para>Wind Attunement Effect: Deal wind damage to a target and all enemies nearby it</para> /// </summary> -PreciousBrilliance = 25884, +PreciousBrilliance_PvE = 25884, /// <summary> -/// <see href="https://garlandtools.org/db/#action/25885"><strong>Crimson Strike</strong></see> <i>PvE</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/25885"><strong>Crimson Strike</strong></see> <i>PvE</i> (SMN) [25885] [Spell] /// <para>Deals fire damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para> /// <para>Combo Action: Crimson Cyclone</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrimsonStrike = 25885, +CrimsonStrike_PvE = 25885, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26224"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26224"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 400</para> /// </summary> -Diagnosis_26224 = 26224, +Diagnosis_PvE_26224 = 26224, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26225"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26225"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability] /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para> /// <para>Duration: 20s</para> /// </summary> -Embolden_26225 = 26225, +Embolden_PvE_26225 = 26225, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26231"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26231"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill] /// <para>Fires cannon at the designated area.</para> /// </summary> -MagitekCannon_26231 = 26231, +MagitekCannon_PvE_26231 = 26231, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26232"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26232"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill] /// <para>Fires diffractive cannon at the designated area.</para> /// </summary> -DiffractiveMagitekCannon_26232 = 26232, +DiffractiveMagitekCannon_PvE_26232 = 26232, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26233"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26233"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill] /// <para>Fires a concentrated burst of energy in a forward direction.</para> /// </summary> -HighpoweredMagitekCannon_26233 = 26233, +HighpoweredMagitekCannon_PvE_26233 = 26233, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26249"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26249"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill] /// <para></para> /// </summary> -FastBlade_26249 = 26249, +FastBlade_PvE_26249 = 26249, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26250"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26250"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill] /// <para></para> /// </summary> -RiotBlade_26250 = 26250, +RiotBlade_PvE_26250 = 26250, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26251"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26251"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill] /// <para></para> /// </summary> -RageOfHalone_26251 = 26251, +RageOfHalone_PvE_26251 = 26251, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26252"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26252"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability] /// <para>Increases physical damage dealt by 25%.</para> /// <para>Duration: 25s</para> /// </summary> -FightOrFlight_26252 = 26252, +FightOrFlight_PvE_26252 = 26252, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26253"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26253"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability] /// <para>Reduces damage taken by 10%.</para> /// <para>Duration: 20s</para> /// </summary> -Rampart_26253 = 26253, +Rampart_PvE_26253 = 26253, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26521"><strong>Wise to the World</strong></see> <i>PvE</i> (MIN) +/// <see href="https://garlandtools.org/db/#action/26521"><strong>Wise to the World</strong></see> <i>PvE</i> (MIN) [26521] [DoL Ability] /// <para>Grants another gathering attempt. When gathering collectables, restores 1 integrity.</para> /// <para>Can only be executed while under the effect of Eureka Moment.</para> /// </summary> -WiseToTheWorld = 26521, +WiseToTheWorld_PvE = 26521, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26522"><strong>Wise to the World</strong></see> <i>PvE</i> (BTN) +/// <see href="https://garlandtools.org/db/#action/26522"><strong>Wise to the World</strong></see> <i>PvE</i> (BTN) [26522] [DoL Ability] /// <para>Grants another gathering attempt. When gathering collectables, restores 1 integrity.</para> /// <para>Can only be executed while under the effect of Eureka Moment.</para> /// </summary> -WiseToTheWorld_26522 = 26522, +WiseToTheWorld_PvE_26522 = 26522, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26804"><strong>Thaliak's Favor</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26804"><strong>Thaliak's Favor</strong></see> <i>PvE</i> (FSH) [26804] [DoL Ability] /// <para>Restores 150 GP.</para> /// <para>Angler's Art Cost: 3</para> /// </summary> -ThaliaksFavor = 26804, +ThaliaksFavor_PvE = 26804, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26805"><strong>Makeshift Bait</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26805"><strong>Makeshift Bait</strong></see> <i>PvE</i> (FSH) [26805] [DoL Ability] /// <para>Allows the execution of Mooch even with average-sized fish.</para> /// <para>Duration: 145s</para> /// <para>Angler's Art Cost: 5</para> /// <para>Action has no effect on fish caught prior to execution.</para> /// </summary> -MakeshiftBait = 26805, +MakeshiftBait_PvE = 26805, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26806"><strong>Prize Catch</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26806"><strong>Prize Catch</strong></see> <i>PvE</i> (FSH) [26806] [DoL Ability] /// <para>Guarantees the next catch will be a large-sized fish.</para> /// <para>Effect ends after hooking a fish. Cancels current mooching opportunity.</para> /// </summary> -PrizeCatch = 26806, +PrizeCatch_PvE = 26806, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26870"><strong>Vital Sight</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26870"><strong>Vital Sight</strong></see> <i>PvE</i> (FSH) [26870] [DoL Ability] /// <para>Sharpens your vision, making fish easier to target.</para> /// <para>Angler's Art Cost: 2</para> /// <para>Effect ends when you finish spearfishing at your present location.</para> /// </summary> -VitalSight = 26870, +VitalSight_PvE = 26870, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26871"><strong>Baited Breath</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26871"><strong>Baited Breath</strong></see> <i>PvE</i> (FSH) [26871] [DoL Ability] /// <para>Holds your breath and reduces the wariness of nearby fish.</para> /// <para>Cannot be executed when wariness exceeds a certain threshold.</para> /// </summary> -BaitedBreath = 26871, +BaitedBreath_PvE = 26871, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26872"><strong>Electric Current</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/26872"><strong>Electric Current</strong></see> <i>PvE</i> (FSH) [26872] [DoL Ability] /// <para>Electrifies the water and captures all fish present in your field of vision.</para> /// <para>Wariness of other nearby fish increases with the number of fish caught.</para> /// <para>Requires a catch counter of 10 to execute. Can only be executed once per spearfishing attempt.</para> /// </summary> -ElectricCurrent = 26872, +ElectricCurrent_PvE = 26872, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26890"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26890"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special] /// <para>Emits a wavelength of light that voidsent absolutely detest.</para> /// </summary> -FiendishLantern = 26890, +FiendishLantern_PvE = 26890, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26891"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26891"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special] /// <para>Frees captured souls.</para> /// </summary> -HealingHolyWater = 26891, +HealingHolyWater_PvE = 26891, /// <summary> -/// <see href="https://garlandtools.org/db/#action/26988"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/26988"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System] /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para> /// </summary> -TheAetherCompass = 26988, +TheAetherCompass_PvE = 26988, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27042"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27042"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 300</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para> /// <para>Duration: 30s</para> /// <para></para> /// </summary> -LeveilleurDiagnosis = 27042, +LeveilleurDiagnosis_PvE = 27042, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27043"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27043"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 300</para> /// <para></para> /// </summary> -Prognosis_27043 = 27043, +Prognosis_PvE_27043 = 27043, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27044"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27044"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 600</para> /// </summary> -LeveilleurDruochole = 27044, +LeveilleurDruochole_PvE = 27044, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27045"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27045"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell] /// <para>Deals unaspected damage with a potency of 300.</para> /// </summary> -DosisIii_27045 = 27045, +DosisIii_PvE_27045 = 27045, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27047"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27047"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell] /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para> /// </summary> -LeveilleurToxikon = 27047, +LeveilleurToxikon_PvE = 27047, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27048"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27048"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell] /// <para></para> /// </summary> -Verfire_27048 = 27048, +Verfire_PvE_27048 = 27048, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27049"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27049"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell] /// <para></para> /// </summary> -Veraero_27049 = 27049, +Veraero_PvE_27049 = 27049, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27050"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27050"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell] /// <para></para> /// </summary> -Verstone_27050 = 27050, +Verstone_PvE_27050 = 27050, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27051"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27051"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell] /// <para></para> /// </summary> -Verthunder_27051 = 27051, +Verthunder_PvE_27051 = 27051, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27052"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27052"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell] /// <para></para> /// </summary> -Verflare_27052 = 27052, +Verflare_PvE_27052 = 27052, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27053"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27053"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill] /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para> /// </summary> -CrimsonSavior_27053 = 27053, +CrimsonSavior_PvE_27053 = 27053, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27054"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27054"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill] /// <para></para> /// </summary> -Corpsacorps_27054 = 27054, +Corpsacorps_PvE_27054 = 27054, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27055"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27055"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill] /// <para></para> /// </summary> -EnchantedRiposte_27055 = 27055, +EnchantedRiposte_PvE_27055 = 27055, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27056"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27056"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill] /// <para></para> /// </summary> -EnchantedZwerchhau_27056 = 27056, +EnchantedZwerchhau_PvE_27056 = 27056, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27057"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27057"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill] /// <para></para> /// </summary> -EnchantedRedoublement_27057 = 27057, +EnchantedRedoublement_PvE_27057 = 27057, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27058"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27058"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill] /// <para></para> /// </summary> -Engagement_27058 = 27058, +Engagement_PvE_27058 = 27058, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27059"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27059"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell] /// <para></para> /// </summary> -Verholy_27059 = 27059, +Verholy_PvE_27059 = 27059, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27060"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27060"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability] /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para> /// </summary> -ContreSixte_27060 = 27060, +ContreSixte_PvE_27060 = 27060, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27061"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27061"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 350</para> /// </summary> -Vercure_27061 = 27061, +Vercure_PvE_27061 = 27061, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27062"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27062"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill] /// <para>Deals unaspected damage to all enemies in a straight line before you.</para> /// </summary> -VermilionPledge = 27062, +VermilionPledge_PvE = 27062, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27315"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27315"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability] /// <para>Restores 35% of maximum HP.</para> /// </summary> -MedicalKit_27315 = 27315, +MedicalKit_PvE_27315 = 27315, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27427"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27427"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill] /// <para></para> /// </summary> -KeenEdge_27427 = 27427, +KeenEdge_PvE_27427 = 27427, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27428"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27428"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill] /// <para></para> /// </summary> -BrutalShell_27428 = 27428, +BrutalShell_PvE_27428 = 27428, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27429"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27429"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill] /// <para></para> /// </summary> -SolidBarrel_27429 = 27429, +SolidBarrel_PvE_27429 = 27429, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27430"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27430"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability] /// <para>Reduces damage taken by 30%.</para> /// <para>Duration: 15s</para> /// </summary> -Nebula_27430 = 27430, +Nebula_PvE_27430 = 27430, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27432"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27432"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability] /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para> /// <para>Duration: 10s</para> /// </summary> -SwiftDeception = 27432, +SwiftDeception_PvE = 27432, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27433"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27433"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability] /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para> /// <para>Can only be executed while under the effect of Swift Deception.</para> /// </summary> -SilentTakedown = 27433, +SilentTakedown_PvE = 27433, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27434"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/27434"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability] /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para> /// </summary> -BewildermentBomb = 27434, +BewildermentBomb_PvE = 27434, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27523"><strong>Triple Hook</strong></see> <i>PvE</i> (FSH) +/// <see href="https://garlandtools.org/db/#action/27523"><strong>Triple Hook</strong></see> <i>PvE</i> (FSH) [27523] [DoL Ability] /// <para>Hooks three or more fish in a single cast. Yield is determined by fish type and your gathering rating. Some fish cannot be triple hooked.</para> /// </summary> -TripleHook = 27523, +TripleHook_PvE = 27523, /// <summary> -/// <see href="https://garlandtools.org/db/#action/27524"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/27524"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [27524] [Spell] /// <para></para> /// </summary> -Pneuma_27524 = 27524, +Pneuma_PvE_27524 = 27524, /// <summary> -/// <see href="https://garlandtools.org/db/#action/28119"><strong>Kardia</strong></see> <i>PvE</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/28119"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [28119] [Ability] /// <para></para> /// </summary> -Kardia_28119 = 28119, +Kardia_PvE_28119 = 28119, /// <summary> -/// <see href="https://garlandtools.org/db/#action/28302"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/28302"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount] /// <para>Temporarily summons your paissa's eight brats (and counting).</para> /// <para>※Has no effect in battle.</para> /// </summary> -FamilyOuting = 28302, +FamilyOuting_PvE = 28302, /// <summary> -/// <see href="https://garlandtools.org/db/#action/28439"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/28439"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 70</para> /// <para>Duration: 30s</para> /// </summary> -LeveilleurDosisIii = 28439, +LeveilleurDosisIii_PvE = 28439, /// <summary> -/// <see href="https://garlandtools.org/db/#action/28509"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/28509"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [28509] [Ability] /// <para>Places a healing blossom at the designated location and grants 5 stacks of Liturgy of the Bell to self.</para> /// <para>Duration: 20s</para> /// <para>Taking damage will expend 1 stack of Liturgy of the Bell to heal self and all party members within a radius of 20 yalms.</para> @@ -28447,53 +28447,53 @@ LeveilleurDosisIii = 28439, /// <para>Cure Potency: 200 for every remaining stack of Liturgy of the Bell</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -LiturgyOfTheBell_28509 = 28509, +LiturgyOfTheBell_PvE_28509 = 28509, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29054"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29054"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability] /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para> /// <para>Duration: 5s</para> /// <para>Movement speed is reduced by 50% for the duration of this effect.</para> /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para> /// </summary> -Guard = 29054, +Guard_PvP = 29054, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29055"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29055"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability] /// <para>Restores your HP and MP to maximum.</para> /// <para>Casting will be interrupted when damage is taken.</para> /// </summary> -StandardissueElixir = 29055, +StandardissueElixir_PvP = 29055, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29056"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29056"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability] /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para> /// <para>Additional Effect: Grants Resilience</para> /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para> /// <para>Duration: 5s</para> /// <para>Can be used even when under the effect of certain status afflictions.</para> /// </summary> -Purify_29056 = 29056, +Purify_PvP = 29056, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29057"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29057"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability] /// <para>Increases movement speed by 50%.</para> /// <para>Effect ends upon reuse or execution of another action.</para> /// </summary> -Sprint_29057 = 29057, +Sprint_PvP = 29057, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29058"><strong>Fast Blade</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29058"><strong>Fast Blade</strong></see> <i>PvP</i> (PLD) [29058] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FastBlade_29058 = 29058, +FastBlade_PvP = 29058, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29059"><strong>Riot Blade</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29059"><strong>Riot Blade</strong></see> <i>PvP</i> (PLD) [29059] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Fast Blade</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RiotBlade_29059 = 29059, +RiotBlade_PvP = 29059, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29060"><strong>Royal Authority</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29060"><strong>Royal Authority</strong></see> <i>PvP</i> (PLD) [29060] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Riot Blade</para> /// <para>Additional Effect: Grants a stack of Sword Oath, up to a maximum of 3</para> @@ -28502,9 +28502,9 @@ RiotBlade_29059 = 29059, /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RoyalAuthority_29060 = 29060, +RoyalAuthority_PvP = 29060, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29061"><strong>Atonement</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29061"><strong>Atonement</strong></see> <i>PvP</i> (PLD) [29061] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000.</para> /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 4,000</para> @@ -28512,9 +28512,9 @@ RoyalAuthority_29060 = 29060, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Atonement_29061 = 29061, +Atonement_PvP = 29061, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29064"><strong>Shield Bash</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29064"><strong>Shield Bash</strong></see> <i>PvP</i> (PLD) [29064] [Ability] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 3s</para> @@ -28523,9 +28523,9 @@ Atonement_29061 = 29061, /// <para></para> /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para> /// </summary> -ShieldBash_29064 = 29064, +ShieldBash_PvP = 29064, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29065"><strong>Intervene</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29065"><strong>Intervene</strong></see> <i>PvP</i> (PLD) [29065] [Ability] /// <para>Rushes target and delivers an attack with a potency of 2,000.</para> /// <para>Additional Effect: Grants a stack of Sword Oath, up to a maximum of 3</para> /// <para>Duration: 10s</para> @@ -28534,9 +28534,9 @@ ShieldBash_29064 = 29064, /// <para></para> /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para> /// </summary> -Intervene_29065 = 29065, +Intervene_PvP = 29065, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29066"><strong>Guardian</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29066"><strong>Guardian</strong></see> <i>PvP</i> (PLD) [29066] [Ability] /// <para>Rush to a target party member's side.</para> /// <para>Additional Effect: Take all damage intended for the targeted party member</para> /// <para>Duration: 10s</para> @@ -28544,9 +28544,9 @@ Intervene_29065 = 29065, /// <para>Cannot be executed while bound.</para> /// <para>Has no effect on targets interacting with an object.</para> /// </summary> -Guardian = 29066, +Guardian_PvP = 29066, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29067"><strong>Holy Sheltron</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29067"><strong>Holy Sheltron</strong></see> <i>PvP</i> (PLD) [29067] [Ability] /// <para>Grants Holy Sheltron and Knight's Resolve.</para> /// <para>Holy Sheltron Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 12,000 potency</para> /// <para>Duration: 5s</para> @@ -28556,9 +28556,9 @@ Guardian = 29066, /// <para>Additional Effect: Heavy +75%</para> /// <para>Duration: 5s</para> /// </summary> -HolySheltron_29067 = 29067, +HolySheltron_PvP = 29067, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29069"><strong>Phalanx</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29069"><strong>Phalanx</strong></see> <i>PvP</i> (PLD) [29069] [Limit Break] /// <para>Grants the effect of Hallowed Ground to self and Phalanx to nearby party members.</para> /// <para>Hallowed Ground Effect: Renders you impervious to most attacks</para> /// <para>Duration: 10s</para> @@ -28571,9 +28571,9 @@ HolySheltron_29067 = 29067, /// <para></para> /// <para>※Action changes to Blade of Faith upon execution.</para> /// </summary> -Phalanx = 29069, +Phalanx_PvP = 29069, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29070"><strong>Confiteor</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29070"><strong>Confiteor</strong></see> <i>PvP</i> (PLD) [29070] [Spell] /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Afflicts target with Sacred Claim</para> /// <para>Sacred Claim Effect: Restores HP when successfully landing an attack on targets under this effect</para> @@ -28581,9 +28581,9 @@ Phalanx = 29069, /// <para>Duration: 10s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Confiteor_29070 = 29070, +Confiteor_PvP = 29070, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29071"><strong>Blade of Faith</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29071"><strong>Blade of Faith</strong></see> <i>PvP</i> (PLD) [29071] [Spell] /// <para>Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para> /// <para>Additional Effect: Afflicts target with Sacred Claim</para> @@ -28595,9 +28595,9 @@ Confiteor_29070 = 29070, /// <para>※Action changes to Blade of Truth upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfFaith_29071 = 29071, +BladeOfFaith_PvP = 29071, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29072"><strong>Blade of Truth</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29072"><strong>Blade of Truth</strong></see> <i>PvP</i> (PLD) [29072] [Spell] /// <para>Deals unaspected damage with a potency of 7,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para> /// <para>Combo Action: Blade of Faith</para> @@ -28609,9 +28609,9 @@ BladeOfFaith_29071 = 29071, /// <para>※Action changes to Blade of Valor upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfTruth_29072 = 29072, +BladeOfTruth_PvP = 29072, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29073"><strong>Blade of Valor</strong></see> <i>PvP</i> (PLD) +/// <see href="https://garlandtools.org/db/#action/29073"><strong>Blade of Valor</strong></see> <i>PvP</i> (PLD) [29073] [Spell] /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para> /// <para>Combo Action: Blade of Truth</para> @@ -28622,41 +28622,41 @@ BladeOfTruth_29072 = 29072, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BladeOfValor_29073 = 29073, +BladeOfValor_PvP = 29073, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29074"><strong>Heavy Swing</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29074"><strong>Heavy Swing</strong></see> <i>PvP</i> (WAR) [29074] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HeavySwing_29074 = 29074, +HeavySwing_PvP = 29074, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29075"><strong>Maim</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29075"><strong>Maim</strong></see> <i>PvP</i> (WAR) [29075] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Heavy Swing</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Maim_29075 = 29075, +Maim_PvP = 29075, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29076"><strong>Storm's Path</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29076"><strong>Storm's Path</strong></see> <i>PvP</i> (WAR) [29076] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Maim</para> /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -StormsPath_29076 = 29076, +StormsPath_PvP = 29076, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29078"><strong>Fell Cleave</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29078"><strong>Fell Cleave</strong></see> <i>PvP</i> (WAR) [29078] [Weaponskill] /// <para>Delivers an attack with a potency of 12,000.</para> /// <para>Can only be executed while under the effect of Inner Release.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FellCleave_29078 = 29078, +FellCleave_PvP = 29078, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29079"><strong>Onslaught</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29079"><strong>Onslaught</strong></see> <i>PvP</i> (WAR) [29079] [Ability] /// <para>Rushes target and delivers an attack with a potency of 500.</para> /// <para>Potency increases up to 5,000 as HP nears maximum.</para> /// <para>Consumes 10% of current HP when executed.</para> @@ -28664,25 +28664,25 @@ FellCleave_29078 = 29078, /// <para>Duration: 10s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Onslaught_29079 = 29079, +Onslaught_PvP = 29079, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29080"><strong>Orogeny</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29080"><strong>Orogeny</strong></see> <i>PvP</i> (WAR) [29080] [Ability] /// <para>Delivers an attack with a potency of 1,000 to all nearby enemies.</para> /// <para>Potency increases up to 10,000 as HP nears maximum.</para> /// <para>Consumes 10% of current HP when executed.</para> /// <para>Additional Effect: Reduces target's damage dealt by 10%</para> /// <para>Duration: 10s</para> /// </summary> -Orogeny_29080 = 29080, +Orogeny_PvP = 29080, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29081"><strong>Blota</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29081"><strong>Blota</strong></see> <i>PvP</i> (WAR) [29081] [Ability] /// <para>Instantly draws target to your side.</para> /// <para>Additional Effect: Heavy +75%</para> /// <para>Duration: 3s</para> /// </summary> -Blota = 29081, +Blota_PvP = 29081, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29082"><strong>Bloodwhetting</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29082"><strong>Bloodwhetting</strong></see> <i>PvP</i> (WAR) [29082] [Ability] /// <para>Grants Bloodwhetting, Stem the Tide, and Nascent Chaos.</para> /// <para>Bloodwhetting Effect: Converts 100% of weaponskill damage dealt into HP</para> /// <para>Duration: 10s</para> @@ -28691,9 +28691,9 @@ Blota = 29081, /// <para>Nascent Chaos Effect: Bloodwhetting changes to Chaotic Cyclone</para> /// <para>Duration: 10s</para> /// </summary> -Bloodwhetting_29082 = 29082, +Bloodwhetting_PvP = 29082, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29083"><strong>Primal Scream</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29083"><strong>Primal Scream</strong></see> <i>PvP</i> (WAR) [29083] [Limit Break] /// <para>Let out a bloodcurdling cry in a cone before you, rendering enemies unable to use Guard.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Grants Inner Release and Thrill of Battle</para> @@ -28707,9 +28707,9 @@ Bloodwhetting_29082 = 29082, /// <para></para> /// <para>※Storm's Path Combo changes to Fell Cleave while under the effect of Inner Release.</para> /// </summary> -PrimalScream = 29083, +PrimalScream_PvP = 29083, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29084"><strong>Primal Rend</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29084"><strong>Primal Rend</strong></see> <i>PvP</i> (WAR) [29084] [Weaponskill] /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 8,000.</para> /// <para>Inner Release Potency: 16,000</para> /// <para>Additional Effect: Stun</para> @@ -28717,42 +28717,42 @@ PrimalScream = 29083, /// <para>Cannot be executed while bound.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -PrimalRend_29084 = 29084, +PrimalRend_PvP = 29084, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29085"><strong>Hard Slash</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29085"><strong>Hard Slash</strong></see> <i>PvP</i> (DRK) [29085] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HardSlash_29085 = 29085, +HardSlash_PvP = 29085, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29086"><strong>Syphon Strike</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29086"><strong>Syphon Strike</strong></see> <i>PvP</i> (DRK) [29086] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Hard Slash</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SyphonStrike_29086 = 29086, +SyphonStrike_PvP = 29086, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29087"><strong>Souleater</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29087"><strong>Souleater</strong></see> <i>PvP</i> (DRK) [29087] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Syphon Strike</para> /// <para>Additional Effect: Converts 100% of damage dealt into HP</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Souleater_29087 = 29087, +Souleater_PvP = 29087, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29088"><strong>Bloodspiller</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29088"><strong>Bloodspiller</strong></see> <i>PvP</i> (DRK) [29088] [Weaponskill] /// <para>Delivers an attack with a potency of 6,000.</para> /// <para>Potency increases up to 12,000 as HP decreases, reaching its maximum value when HP falls below 25%.</para> /// <para>Can only be executed while under the effect of Blackblood.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Bloodspiller_29088 = 29088, +Bloodspiller_PvP = 29088, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29091"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29091"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29091] [Ability] /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a straight line before you.</para> /// <para>Consumes 20% of your maximum HP when executed.</para> /// <para>Additional Effect: Grants Blackblood</para> @@ -28761,9 +28761,9 @@ Bloodspiller_29088 = 29088, /// <para></para> /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para> /// </summary> -Shadowbringer_29091 = 29091, +Shadowbringer_PvP = 29091, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29092"><strong>Plunge</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29092"><strong>Plunge</strong></see> <i>PvP</i> (DRK) [29092] [Ability] /// <para>Rushes target and delivers an attack with a potency of 2,000.</para> /// <para>Additional Effect: Afflicts target with Sole Survivor</para> /// <para>Sole Survivor Effect: Reduces target's HP recovered by healing actions by 20%</para> @@ -28771,18 +28771,18 @@ Shadowbringer_29091 = 29091, /// <para>If that target should be KO'd in battle before Sole Survivor expires, your HP and MP will be restored by 20%, and the recast time of Plunge will be reset.</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Plunge_29092 = 29092, +Plunge_PvP = 29092, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29093"><strong>the Blackest Night</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29093"><strong>the Blackest Night</strong></see> <i>PvP</i> (DRK) [29093] [Ability] /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 8,000 potency.</para> /// <para>Duration: 10s</para> /// <para>Grants Dark Arts when barrier is completely absorbed.</para> /// <para>Duration: 10s</para> /// <para>Dark Arts Effect: Consume Dark Arts instead of HP to execute Shadowbringer</para> /// </summary> -TheBlackestNight_29093 = 29093, +TheBlackestNight_PvP = 29093, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29094"><strong>Salted Earth</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29094"><strong>Salted Earth</strong></see> <i>PvP</i> (DRK) [29094] [Ability] /// <para>Instantly draws nearby enemies to your side, and creates a patch of salted earth at your feet, dealing unaspected damage over time to any enemies inside.</para> /// <para>Potency: 2,000</para> /// <para>Duration: 10s</para> @@ -28791,23 +28791,23 @@ TheBlackestNight_29093 = 29093, /// <para></para> /// <para>※Action changes to Salt and Darkness while Salted Earth is active.</para> /// </summary> -SaltedEarth_29094 = 29094, +SaltedEarth_PvP = 29094, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29095"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29095"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29095] [Ability] /// <para>All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 4,000.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 2s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SaltAndDarkness_29095 = 29095, +SaltAndDarkness_PvP = 29095, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29096"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29096"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29096] [Ability] /// <para></para> /// </summary> -SaltAndDarkness_29096 = 29096, +SaltAndDarkness_PvP_29096 = 29096, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29097"><strong>Eventide</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29097"><strong>Eventide</strong></see> <i>PvP</i> (DRK) [29097] [Limit Break] /// <para>Delivers an attack with a potency of 6,000 to all enemies in a straight line before and behind you.</para> /// <para>Potency increases up to 24,000 as HP nears maximum.</para> /// <para>HP is reduced to 1 upon execution.</para> @@ -28821,24 +28821,24 @@ SaltAndDarkness_29096 = 29096, /// <para></para> /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para> /// </summary> -Eventide = 29097, +Eventide_PvP = 29097, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29098"><strong>Keen Edge</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29098"><strong>Keen Edge</strong></see> <i>PvP</i> (GNB) [29098] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KeenEdge_29098 = 29098, +KeenEdge_PvP = 29098, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29099"><strong>Brutal Shell</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29099"><strong>Brutal Shell</strong></see> <i>PvP</i> (GNB) [29099] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Keen Edge</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BrutalShell_29099 = 29099, +BrutalShell_PvP = 29099, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29100"><strong>Solid Barrel</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29100"><strong>Solid Barrel</strong></see> <i>PvP</i> (GNB) [29100] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Brutal Shell</para> /// <para>Additional Effect: Grants Powder Barrel</para> @@ -28847,9 +28847,9 @@ BrutalShell_29099 = 29099, /// <para>※Solid Barrel Combo changes to Burst Strike while under the effect of Powder Barrel.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SolidBarrel_29100 = 29100, +SolidBarrel_PvP = 29100, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29101"><strong>Burst Strike</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29101"><strong>Burst Strike</strong></see> <i>PvP</i> (GNB) [29101] [Weaponskill] /// <para>Delivers an attack with a potency of 7,000.</para> /// <para>Additional Effect: Grants Ready to Blast</para> /// <para>Duration: 10s</para> @@ -28857,17 +28857,17 @@ SolidBarrel_29100 = 29100, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BurstStrike_29101 = 29101, +BurstStrike_PvP = 29101, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29102"><strong>Gnashing Fang</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29102"><strong>Gnashing Fang</strong></see> <i>PvP</i> (GNB) [29102] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Additional Effect: Grants Ready to Rip</para> /// <para>Duration: 5s</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -GnashingFang_29102 = 29102, +GnashingFang_PvP = 29102, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29103"><strong>Savage Claw</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29103"><strong>Savage Claw</strong></see> <i>PvP</i> (GNB) [29103] [Weaponskill] /// <para>Delivers an attack with a potency of 6,000.</para> /// <para>Combo Action: Gnashing Fang</para> /// <para>Additional Effect: Grants Ready to Tear</para> @@ -28875,9 +28875,9 @@ GnashingFang_29102 = 29102, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SavageClaw_29103 = 29103, +SavageClaw_PvP = 29103, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29104"><strong>Wicked Talon</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29104"><strong>Wicked Talon</strong></see> <i>PvP</i> (GNB) [29104] [Weaponskill] /// <para>Delivers an attack with a potency of 7,000.</para> /// <para>Combo Action: Savage Claw</para> /// <para>Additional Effect: Grants Ready to Gouge</para> @@ -28885,24 +28885,24 @@ SavageClaw_29103 = 29103, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WickedTalon_29104 = 29104, +WickedTalon_PvP = 29104, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29105"><strong>Double Down</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29105"><strong>Double Down</strong></see> <i>PvP</i> (GNB) [29105] [Weaponskill] /// <para>Delivers an attack with a potency of 12,000 to all nearby enemies.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -DoubleDown_29105 = 29105, +DoubleDown_PvP = 29105, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29106"><strong>Continuation</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29106"><strong>Continuation</strong></see> <i>PvP</i> (GNB) [29106] [Ability] /// <para>Allows the firing of successive rounds with your gunblade.</para> /// <para>Gnashing Fang may be followed by Jugular Rip.</para> /// <para>Savage Claw may be followed by Abdomen Tear.</para> /// <para>Wicked Talon may be followed by Eye Gouge.</para> /// <para>Burst Strike may be followed by Hypervelocity.</para> /// </summary> -Continuation_29106 = 29106, +Continuation_PvP = 29106, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29107"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29107"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29107] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -28913,9 +28913,9 @@ Continuation_29106 = 29106, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hypervelocity_29107 = 29107, +Hypervelocity_PvP = 29107, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29108"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29108"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29108] [Ability] /// <para>Delivers an attack with a potency of 1,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para> /// <para>Duration: 7s</para> @@ -28926,9 +28926,9 @@ Hypervelocity_29107 = 29107, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -JugularRip_29108 = 29108, +JugularRip_PvP = 29108, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29109"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29109"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29109] [Ability] /// <para>Delivers an attack with a potency of 2,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para> /// <para>Duration: 7s</para> @@ -28939,9 +28939,9 @@ JugularRip_29108 = 29108, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AbdomenTear_29109 = 29109, +AbdomenTear_PvP = 29109, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29110"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29110"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29110] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -28952,9 +28952,9 @@ AbdomenTear_29109 = 29109, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EyeGouge_29110 = 29110, +EyeGouge_PvP = 29110, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29111"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29111"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29111] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -28965,9 +28965,9 @@ EyeGouge_29110 = 29110, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hypervelocity_29111 = 29111, +Hypervelocity_PvP_29111 = 29111, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29112"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29112"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29112] [Ability] /// <para>Delivers an attack with a potency of 1,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para> /// <para>Duration: 7s</para> @@ -28978,9 +28978,9 @@ Hypervelocity_29111 = 29111, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -JugularRip_29112 = 29112, +JugularRip_PvP_29112 = 29112, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29113"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29113"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29113] [Ability] /// <para>Delivers an attack with a potency of 2,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para> /// <para>Duration: 7s</para> @@ -28991,9 +28991,9 @@ JugularRip_29112 = 29112, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AbdomenTear_29113 = 29113, +AbdomenTear_PvP_29113 = 29113, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29114"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29114"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29114] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -29004,9 +29004,9 @@ AbdomenTear_29113 = 29113, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EyeGouge_29114 = 29114, +EyeGouge_PvP_29114 = 29114, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29115"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29115"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29115] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -29017,9 +29017,9 @@ EyeGouge_29114 = 29114, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hypervelocity_29115 = 29115, +Hypervelocity_PvP_29115 = 29115, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29116"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29116"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29116] [Ability] /// <para>Delivers an attack with a potency of 1,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para> /// <para>Duration: 7s</para> @@ -29030,9 +29030,9 @@ Hypervelocity_29115 = 29115, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -JugularRip_29116 = 29116, +JugularRip_PvP_29116 = 29116, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29117"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29117"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29117] [Ability] /// <para>Delivers an attack with a potency of 2,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para> /// <para>Duration: 7s</para> @@ -29043,9 +29043,9 @@ JugularRip_29116 = 29116, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AbdomenTear_29117 = 29117, +AbdomenTear_PvP_29117 = 29117, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29118"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29118"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29118] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -29056,9 +29056,9 @@ AbdomenTear_29117 = 29117, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EyeGouge_29118 = 29118, +EyeGouge_PvP_29118 = 29118, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29119"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29119"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29119] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -29069,9 +29069,9 @@ EyeGouge_29118 = 29118, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hypervelocity_29119 = 29119, +Hypervelocity_PvP_29119 = 29119, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29120"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29120"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29120] [Ability] /// <para>Delivers an attack with a potency of 1,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para> /// <para>Duration: 7s</para> @@ -29082,9 +29082,9 @@ Hypervelocity_29119 = 29119, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -JugularRip_29120 = 29120, +JugularRip_PvP_29120 = 29120, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29121"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29121"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29121] [Ability] /// <para>Delivers an attack with a potency of 2,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para> /// <para>Duration: 7s</para> @@ -29095,9 +29095,9 @@ JugularRip_29120 = 29120, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AbdomenTear_29121 = 29121, +AbdomenTear_PvP_29121 = 29121, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29122"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29122"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29122] [Ability] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> @@ -29108,9 +29108,9 @@ AbdomenTear_29121 = 29121, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EyeGouge_29122 = 29122, +EyeGouge_PvP_29122 = 29122, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29123"><strong>Rough Divide</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29123"><strong>Rough Divide</strong></see> <i>PvP</i> (GNB) [29123] [Ability] /// <para>Rushes target and delivers an attack with a potency of 2,000.</para> /// <para>Additional Effect: Grants No Mercy</para> /// <para>No Mercy Effect: Increases damage dealt and healing potency by 20%, while also increasing movement speed by 25%</para> @@ -29118,9 +29118,9 @@ EyeGouge_29122 = 29122, /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -RoughDivide_29123 = 29123, +RoughDivide_PvP = 29123, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29124"><strong>Draw and Junction</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29124"><strong>Draw and Junction</strong></see> <i>PvP</i> (GNB) [29124] [Ability] /// <para>Grants self a beneficial effect based on the selected party member or enemy.</para> /// <para>If target is a DPS, grants Junction DPS.</para> /// <para>If target is a tank, or if no target is selected, grants Junction Tank.</para> @@ -29130,17 +29130,17 @@ RoughDivide_29123 = 29123, /// <para></para> /// <para>※Solid Barrel Combo changes to Burst Strike while under the effect of Powder Barrel.</para> /// </summary> -DrawAndJunction = 29124, +DrawAndJunction_PvP = 29124, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29125"><strong>Junctioned Cast</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29125"><strong>Junctioned Cast</strong></see> <i>PvP</i> (GNB) [29125] [Ability] /// <para>Executes an action depending on your current Junction.</para> /// <para>Junction DPS: Blasting Zone</para> /// <para>Junction Tank: Nebula</para> /// <para>Junction Healer: Aurora</para> /// </summary> -JunctionedCast = 29125, +JunctionedCast_PvP = 29125, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29126"><strong>Nebula</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29126"><strong>Nebula</strong></see> <i>PvP</i> (GNB) [29126] [Ability] /// <para>Reduces damage taken by 20% and delivers an attack with a potency of 4,000 every time you suffer damage.</para> /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of Junction Tank.</para> @@ -29148,18 +29148,18 @@ JunctionedCast = 29125, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Nebula_29126 = 29126, +Nebula_PvP = 29126, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29128"><strong>Blasting Zone</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29128"><strong>Blasting Zone</strong></see> <i>PvP</i> (GNB) [29128] [Ability] /// <para>Delivers an attack with a potency of 10,000.</para> /// <para>Can only be executed while under the effect of Junction DPS.</para> /// <para>Shares a recast timer with Nebula and Aurora.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BlastingZone_29128 = 29128, +BlastingZone_PvP = 29128, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29129"><strong>Aurora</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29129"><strong>Aurora</strong></see> <i>PvP</i> (GNB) [29129] [Ability] /// <para>Restores own or target party member's HP.</para> /// <para>Cure Potency: 12,000</para> /// <para>Additional Effect: Regen</para> @@ -29170,9 +29170,9 @@ BlastingZone_29128 = 29128, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Aurora_29129 = 29129, +Aurora_PvP = 29129, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29130"><strong>Relentless Rush</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29130"><strong>Relentless Rush</strong></see> <i>PvP</i> (GNB) [29130] [Limit Break] /// <para>Unleashes a flurry of blade strikes on nearby enemies, dealing damage over time with a potency of 4,000 and reducing damage taken by 25% until effect expires.</para> /// <para>Duration: 4s</para> /// <para>Activates Terminal Trigger when effect duration expires.</para> @@ -29185,24 +29185,24 @@ Aurora_29129 = 29129, /// <para></para> /// <para>※Action changes to Terminal Trigger upon execution.</para> /// </summary> -RelentlessRush = 29130, +RelentlessRush_PvP = 29130, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29131"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29131"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29131] [Limit Break] /// <para></para> /// </summary> -TerminalTrigger = 29131, +TerminalTrigger_PvP = 29131, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29155"><strong>Seize</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29155"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special] /// <para>Snare a happy bunny in your net with a single swift motion.</para> /// </summary> -Seize_29155 = 29155, +Seize_PvE_29155 = 29155, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29223"><strong>Glare III</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29223"><strong>Glare III</strong></see> <i>PvP</i> (WHM) [29223] [Spell] /// <para>Deals unaspected damage with a potency of 5,000.</para> /// </summary> -GlareIii_29223 = 29223, +GlareIii_PvP = 29223, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29224"><strong>Cure II</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29224"><strong>Cure II</strong></see> <i>PvP</i> (WHM) [29224] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 12,000</para> /// <para>Maximum Charges: 2</para> @@ -29210,39 +29210,39 @@ GlareIii_29223 = 29223, /// <para></para> /// <para>※Action changes to Cure III when under the effect of Cure III Ready.</para> /// </summary> -CureIi_29224 = 29224, +CureIi_PvP = 29224, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29225"><strong>Cure III</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29225"><strong>Cure III</strong></see> <i>PvP</i> (WHM) [29225] [Spell] /// <para>Restores HP of self or target and all party members nearby target.</para> /// <para>Cure Potency: 16,000</para> /// <para>Can only be executed while under the effect of Cure III Ready.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CureIii_29225 = 29225, +CureIii_PvP = 29225, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29226"><strong>Afflatus Misery</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29226"><strong>Afflatus Misery</strong></see> <i>PvP</i> (WHM) [29226] [Spell] /// <para>Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -AfflatusMisery_29226 = 29226, +AfflatusMisery_PvP = 29226, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29227"><strong>Aquaveil</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29227"><strong>Aquaveil</strong></see> <i>PvP</i> (WHM) [29227] [Ability] /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 8,000 potency.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Nullifies one status affliction that can be removed by Purify</para> /// <para>Barrier potency is doubled when successfully nullifying a status affliction.</para> /// </summary> -Aquaveil_29227 = 29227, +Aquaveil_PvP = 29227, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29228"><strong>Miracle of Nature</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29228"><strong>Miracle of Nature</strong></see> <i>PvP</i> (WHM) [29228] [Ability] /// <para>Forcibly transforms target into a diminutive creature, preventing them from using actions.</para> /// <para>Duration: 2s</para> /// <para>Has no effect on players under the effect of Guard, players riding machina, or non-player combatants.</para> /// </summary> -MiracleOfNature = 29228, +MiracleOfNature_PvP = 29228, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29229"><strong>Seraph Strike</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29229"><strong>Seraph Strike</strong></see> <i>PvP</i> (WHM) [29229] [Ability] /// <para>Delivers a jumping attack that deals unaspected damage to target and all enemies nearby it with a potency of 8,000.</para> /// <para>Additional Effect: Grants Protect to self and nearby party members</para> /// <para>Protect Effect: Reduces damage taken by 10%</para> @@ -29253,9 +29253,9 @@ MiracleOfNature = 29228, /// <para></para> /// <para>※Cure II changes to Cure III while under the effect of Cure III Ready.</para> /// </summary> -SeraphStrike = 29229, +SeraphStrike_PvP = 29229, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29230"><strong>Afflatus Purgation</strong></see> <i>PvP</i> (WHM) +/// <see href="https://garlandtools.org/db/#action/29230"><strong>Afflatus Purgation</strong></see> <i>PvP</i> (WHM) [29230] [Limit Break] /// <para>Deals unaspected damage with a potency of 18,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 2s</para> @@ -29266,14 +29266,14 @@ SeraphStrike = 29229, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 60s</para> /// </summary> -AfflatusPurgation = 29230, +AfflatusPurgation_PvP = 29230, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29231"><strong>Broil IV</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29231"><strong>Broil IV</strong></see> <i>PvP</i> (SCH) [29231] [Spell] /// <para>Deals unaspected damage with a potency of 5,000.</para> /// </summary> -BroilIv_29231 = 29231, +BroilIv_PvP = 29231, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29232"><strong>Adloquium</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29232"><strong>Adloquium</strong></see> <i>PvP</i> (SCH) [29232] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 3,000</para> /// <para>Additional Effect: Grants Galvanize and Catalyze to target</para> @@ -29285,9 +29285,9 @@ BroilIv_29231 = 29231, /// <para>Maximum Charges: 2</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Adloquium_29232 = 29232, +Adloquium_PvP = 29232, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29233"><strong>Biolysis</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29233"><strong>Biolysis</strong></see> <i>PvP</i> (SCH) [29233] [Spell] /// <para>Afflicts target with Biolysis and Biolytic.</para> /// <para>Biolysis Effect: Damage over time</para> /// <para>Potency: 3,000</para> @@ -29297,25 +29297,25 @@ Adloquium_29232 = 29232, /// <para>Duration: 15s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Biolysis_29233 = 29233, +Biolysis_PvP = 29233, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29234"><strong>Deployment Tactics</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29234"><strong>Deployment Tactics</strong></see> <i>PvP</i> (SCH) [29234] [Ability] /// <para>Extends Galvanize and Catalyze effects cast on self or target to nearby party members.</para> /// <para>When targeting an enemy, extends Biolysis and Biolytic effects to other nearby enemies.</para> /// <para>Duration: Time remaining on original effect</para> /// <para>No effect on targets not under effects applied by you, players riding machina, or non-player combatants.</para> /// <para>Maximum Charges: 2</para> /// </summary> -DeploymentTactics_29234 = 29234, +DeploymentTactics_PvP = 29234, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29235"><strong>Mummification</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29235"><strong>Mummification</strong></see> <i>PvP</i> (SCH) [29235] [Ability] /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a cone before you.</para> /// <para>Additional Effect: Reduces target's HP recovered by healing actions by 25%</para> /// <para>Duration: 10s</para> /// </summary> -Mummification = 29235, +Mummification_PvP = 29235, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29236"><strong>Expedient</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29236"><strong>Expedient</strong></see> <i>PvP</i> (SCH) [29236] [Ability] /// <para>Grants Expedience and Desperate Measures to self and all nearby party members.</para> /// <para>Expedience Effect: Increases movement speed by 25%</para> /// <para>Duration: 10s</para> @@ -29325,9 +29325,9 @@ Mummification = 29235, /// <para>Recitation Effect: Increases the potency of Galvanize, Biolysis, and Biolytic effects</para> /// <para>Duration: 15s</para> /// </summary> -Expedient_29236 = 29236, +Expedient_PvP = 29236, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29237"><strong>Summon Seraph</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29237"><strong>Summon Seraph</strong></see> <i>PvP</i> (SCH) [29237] [Limit Break] /// <para>Summons Seraph to fight at a designated location.</para> /// <para>Seraph will execute Seraph Flight immediately after being summoned.</para> /// <para>Automatically casts Seraphic Veil on party members who suffer damage.</para> @@ -29339,9 +29339,9 @@ Expedient_29236 = 29236, /// <para></para> /// <para>※Action changes to Consolation upon execution.</para> /// </summary> -SummonSeraph_29237 = 29237, +SummonSeraph_PvP = 29237, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29238"><strong>Consolation</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29238"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29238] [Ability] /// <para>Orders Seraph to execute Consolation.</para> /// <para>Consolation Effect: Restores HP of all nearby party members</para> /// <para>Cure Potency: 4,000</para> @@ -29351,9 +29351,9 @@ SummonSeraph_29237 = 29237, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Consolation_29238 = 29238, +Consolation_PvP = 29238, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29239"><strong>Seraph Flight</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29239"><strong>Seraph Flight</strong></see> <i>PvP</i> (SCH) [29239] [Ability] /// <para>Grants Seraph Flight and Excogitation to all nearby party members.</para> /// <para>Seraph Flight Effect: Nullifies the next status affliction that can be removed by Purify</para> /// <para>Duration: 20s</para> @@ -29363,9 +29363,9 @@ Consolation_29238 = 29238, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SeraphFlight = 29239, +SeraphFlight_PvP = 29239, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29240"><strong>Seraphic Veil</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29240"><strong>Seraphic Veil</strong></see> <i>PvP</i> (SCH) [29240] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 4,000</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 4,000 potency</para> @@ -29373,9 +29373,9 @@ SeraphFlight = 29239, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SeraphicVeil_29240 = 29240, +SeraphicVeil_PvP = 29240, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29241"><strong>Consolation</strong></see> <i>PvP</i> (SCH) +/// <see href="https://garlandtools.org/db/#action/29241"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29241] [Ability] /// <para>Restores the HP of all nearby party members.</para> /// <para>Cure Potency: 4,000</para> /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 4,000 potency</para> @@ -29383,14 +29383,14 @@ SeraphicVeil_29240 = 29240, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Consolation_29241 = 29241, +Consolation_PvP_29241 = 29241, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29242"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29242"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29242] [Spell] /// <para>Deals unaspected damage with a potency of 5,000.</para> /// </summary> -FallMalefic_29242 = 29242, +FallMalefic_PvP = 29242, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29243"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29243"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29243] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 5,000</para> /// <para>Potency increases up to 10,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para> @@ -29401,32 +29401,32 @@ FallMalefic_29242 = 29242, /// <para>Maximum Charges: 2</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -AspectedBenefic_29243 = 29243, +AspectedBenefic_PvP = 29243, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29244"><strong>Gravity II</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29244"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29244] [Spell] /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Afflicts first target with Heavy +75%</para> /// <para>Duration: 5s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -GravityIi_29244 = 29244, +GravityIi_PvP = 29244, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29245"><strong>Double Cast</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29245"><strong>Double Cast</strong></see> <i>PvP</i> (AST) [29245] [Ability] /// <para>Repeats the spell you previously cast.</para> /// <para>Maximum Charges: 2</para> /// <para>Can only be executed following a spell.</para> /// </summary> -DoubleCast = 29245, +DoubleCast_PvP = 29245, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29246"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29246"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29246] [Ability] /// <para>Deals unaspected damage with a potency of 5,000.</para> /// <para>Additonal Effect: Reduces the recast time of Double Cast by 10 seconds</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FallMalefic_29246 = 29246, +FallMalefic_PvP_29246 = 29246, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29247"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29247"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29247] [Ability] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 5,000</para> /// <para>Potency increases up to 10,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para> @@ -29436,32 +29436,32 @@ FallMalefic_29246 = 29246, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AspectedBenefic_29247 = 29247, +AspectedBenefic_PvP_29247 = 29247, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29248"><strong>Gravity II</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29248"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29248] [Ability] /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Afflicts first target with Bind</para> /// <para>Duration: 3s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -GravityIi_29248 = 29248, +GravityIi_PvP_29248 = 29248, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29249"><strong>Draw</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29249"><strong>Draw</strong></see> <i>PvP</i> (AST) [29249] [Ability] /// <para>Draws the Balance, the Bole, or the Arrow from your divining deck.</para> /// <para>Duration: 15s</para> /// </summary> -Draw_29249 = 29249, +Draw_PvP = 29249, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29250"><strong>the Balance</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29250"><strong>the Balance</strong></see> <i>PvP</i> (AST) [29250] [Ability] /// <para>Increases damage dealt by self or target and all nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheBalance_29250 = 29250, +TheBalance_PvP = 29250, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29253"><strong>Macrocosmos</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29253"><strong>Macrocosmos</strong></see> <i>PvP</i> (AST) [29253] [Ability] /// <para>Deals unaspected damage with a potency of 12,000 to all nearby enemies.</para> /// <para>Additional Effect: Grants Macrocosmos to self and all nearby party members</para> /// <para>Duration: 10s</para> @@ -29469,16 +29469,16 @@ TheBalance_29250 = 29250, /// <para>For the effect's duration, 25% of damage taken is compiled.</para> /// <para>Restores HP equal to a cure of 4,000 potency plus compiled damage when the effect expires or upon execution of Microcosmos.</para> /// </summary> -Macrocosmos_29253 = 29253, +Macrocosmos_PvP = 29253, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29254"><strong>Microcosmos</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29254"><strong>Microcosmos</strong></see> <i>PvP</i> (AST) [29254] [Ability] /// <para>Triggers the healing effect of Macrocosmos, restoring HP equal to a cure of 4,000 potency plus 25% of compiled damage.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Microcosmos_29254 = 29254, +Microcosmos_PvP = 29254, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29255"><strong>Celestial River</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29255"><strong>Celestial River</strong></see> <i>PvP</i> (AST) [29255] [Limit Break] /// <para>Reduces damage dealt by nearby enemies by 30%. Effect is reduced by 10% every 5 seconds.</para> /// <para>Duration: 15s</para> /// <para>Additional Effect: Increases damage dealt by self and nearby party members by 30%. Effect is reduced by 10% every 5s.</para> @@ -29486,16 +29486,16 @@ Microcosmos_29254 = 29254, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 105s</para> /// </summary> -CelestialRiver = 29255, +CelestialRiver_PvP = 29255, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29256"><strong>Dosis III</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29256"><strong>Dosis III</strong></see> <i>PvP</i> (SGE) [29256] [Spell] /// <para>Deals unaspected damage with a potency of 4,000.</para> /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para> /// <para>Cure Potency: 2,000</para> /// </summary> -DosisIii_29256 = 29256, +DosisIii_PvP = 29256, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29257"><strong>Eukrasian Dosis III</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29257"><strong>Eukrasian Dosis III</strong></see> <i>PvP</i> (SGE) [29257] [Spell] /// <para>Deals unaspected damage over time.</para> /// <para>Potency: 4,000</para> /// <para>Duration: 15s</para> @@ -29508,25 +29508,25 @@ DosisIii_29256 = 29256, /// <para>※Toxikon changes to Toxikon II while under the effect of Addersting.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EukrasianDosisIii_29257 = 29257, +EukrasianDosisIii_PvP = 29257, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29258"><strong>Eukrasia</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29258"><strong>Eukrasia</strong></see> <i>PvP</i> (SGE) [29258] [Spell] /// <para>Upgrades Dosis III to Eukrasian Dosis III.</para> /// <para>Duration: 10s</para> /// <para>Effect expires upon executing Eukrasian Dosis III.</para> /// <para>Maximum Charges: 2</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Eukrasia_29258 = 29258, +Eukrasia_PvP = 29258, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29259"><strong>Phlegma III</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29259"><strong>Phlegma III</strong></see> <i>PvP</i> (SGE) [29259] [Spell] /// <para>Deals unaspected damage with a potency of 10,000 to target and all enemies nearby it.</para> /// <para>Maximum Charges: 2</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -PhlegmaIii_29259 = 29259, +PhlegmaIii_PvP = 29259, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29260"><strong>Pneuma</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29260"><strong>Pneuma</strong></see> <i>PvP</i> (SGE) [29260] [Spell] /// <para>Deals unaspected damage with a potency of 12,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Haima and 4 stacks of Haimatinon to self and all party members within 20 yalms</para> /// <para>Haima Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 3,000 potency</para> @@ -29536,16 +29536,16 @@ PhlegmaIii_29259 = 29259, /// <para>Cure Potency: 3,000 per remaining stack of Haimatinon</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Pneuma_29260 = 29260, +Pneuma_PvP = 29260, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29261"><strong>Icarus</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29261"><strong>Icarus</strong></see> <i>PvP</i> (SGE) [29261] [Ability] /// <para>Rush to a targeted enemy's or party member's location.</para> /// <para>Maximum Charges: 2</para> /// <para>Unable to cast if bound.</para> /// </summary> -Icarus_29261 = 29261, +Icarus_PvP = 29261, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29262"><strong>Toxikon</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29262"><strong>Toxikon</strong></see> <i>PvP</i> (SGE) [29262] [Ability] /// <para>Deals unaspected damage with a potency of 2,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Increases target's damage taken by 10%</para> /// <para>Duration: 6s</para> @@ -29553,9 +29553,9 @@ Icarus_29261 = 29261, /// <para></para> /// <para>※Action changes to Toxikon II while under the effect of Addersting.</para> /// </summary> -Toxikon_29262 = 29262, +Toxikon_PvP = 29262, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29263"><strong>Toxikon II</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29263"><strong>Toxikon II</strong></see> <i>PvP</i> (SGE) [29263] [Ability] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 8,000 for the first enemy, and 2,000 for all remaining enemies.</para> /// <para>Additional Effect: Increases target's damage taken by 10%</para> /// <para>Duration: 6s</para> @@ -29563,14 +29563,14 @@ Toxikon_29262 = 29262, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ToxikonIi_29263 = 29263, +ToxikonIi_PvP = 29263, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29264"><strong>Kardia</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29264"><strong>Kardia</strong></see> <i>PvP</i> (SGE) [29264] [Ability] /// <para>Grants self the effect of Kardia and a selected party member or self the effect of Kardion, granting the additional effects of Dosis III and Eukrasian Dosis III when these spells are cast.</para> /// </summary> -Kardia_29264 = 29264, +Kardia_PvP = 29264, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29266"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29266"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29266] [Limit Break] /// <para>Erects a magicked barrier at a select location, granting party members the effect of Mesotes and afflicting enemies with the effect of Lype when standing inside.</para> /// <para>Duration: 15s</para> /// <para>Mesotes Effect: Negates all damage from enemies who are not under the effect of Lype</para> @@ -29582,9 +29582,9 @@ Kardia_29264 = 29264, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 120s</para> /// </summary> -Mesotes = 29266, +Mesotes_PvP = 29266, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29267"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) +/// <see href="https://garlandtools.org/db/#action/29267"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29267] [Limit Break] /// <para>Erects a magicked barrier at a select location, granting party members the effect of Mesotes and afflicting enemies with the effect of Lype when standing inside.</para> /// <para>Duration: 15s</para> /// <para>Mesotes Effect: Negates all damage from enemies who are not under the effect of Lype</para> @@ -29596,69 +29596,69 @@ Mesotes = 29266, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 120s</para> /// </summary> -Mesotes_29267 = 29267, +Mesotes_PvP_29267 = 29267, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29363"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29363"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability] /// <para></para> /// </summary> -MedicalKit_29363 = 29363, +MedicalKit_PvE_29363 = 29363, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29371"><strong>Foul</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29371"><strong>Foul</strong></see> <i>PvP</i> (BLM) [29371] [Spell] /// <para>Deals unaspected damage with a potency of 16,000 to target and all enemies nearby it.</para> /// <para>Can only be executed while under the effect of Polyglot.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Foul_29371 = 29371, +Foul_PvP = 29371, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29382"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29382"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event] /// <para>Throw a handful of red gulal.</para> /// </summary> -RedGulal = 29382, +RedGulal_PvE = 29382, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29383"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29383"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event] /// <para>Throw a handful of yellow gulal.</para> /// </summary> -YellowGulal = 29383, +YellowGulal_PvE = 29383, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29384"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29384"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event] /// <para>Throw a handful of blue gulal.</para> /// </summary> -BlueGulal = 29384, +BlueGulal_PvE = 29384, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29385"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29385"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount] /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para> /// <para>※Has no effect in battle.</para> /// </summary> -RedGulal_29385 = 29385, +RedGulal_PvE_29385 = 29385, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29386"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29386"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount] /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para> /// <para>※Has no effect in battle.</para> /// </summary> -YellowGulal_29386 = 29386, +YellowGulal_PvE_29386 = 29386, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29387"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29387"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount] /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para> /// <para>※Has no effect in battle.</para> /// </summary> -BlueGulal_29387 = 29387, +BlueGulal_PvE_29387 = 29387, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29388"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29388"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount] /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para> /// <para>※Has no effect in battle.</para> /// </summary> -RainbowGulal = 29388, +RainbowGulal_PvE = 29388, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29391"><strong>Powerful Shot</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29391"><strong>Powerful Shot</strong></see> <i>PvP</i> (BRD) [29391] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 4,000.</para> /// <para>Potency increases up to 6,000 the further you are from the target, reaching its maximum value when the target is 15 yalms away.</para> /// <para>Additional Effect: Reduces the recast time of Empyreal Arrow by 5s</para> /// <para>Requires casting time to execute. However, it is possible to walk while casting.</para> /// </summary> -PowerfulShot = 29391, +PowerfulShot_PvP = 29391, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29392"><strong>Pitch Perfect</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29392"><strong>Pitch Perfect</strong></see> <i>PvP</i> (BRD) [29392] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 4,000.</para> /// <para>Potency increases up to 8,000 the farther away you are from the target, reaching its maximum value when the target is 15 yalms away.</para> /// <para>Additional Effect: Reduces the recast time of Empyreal Arrow by 5s</para> @@ -29666,9 +29666,9 @@ PowerfulShot = 29391, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PitchPerfect_29392 = 29392, +PitchPerfect_PvP = 29392, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29393"><strong>Apex Arrow</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29393"><strong>Apex Arrow</strong></see> <i>PvP</i> (BRD) [29393] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Blast Arrow Ready</para> /// <para>Duration: 20s</para> @@ -29679,9 +29679,9 @@ PitchPerfect_29392 = 29392, /// <para></para> /// <para>※Action changes to Blast Arrow while under the effect of Blast Arrow Ready.</para> /// </summary> -ApexArrow_29393 = 29393, +ApexArrow_PvP = 29393, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29394"><strong>Blast Arrow</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29394"><strong>Blast Arrow</strong></see> <i>PvP</i> (BRD) [29394] [Weaponskill] /// <para>Delivers an attack with a potency of 10,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Frontliner's Forte</para> /// <para>Frontliner's Forte Effect: Reduces your weaponskill cast time and recast time by 10%, and increases damage dealt by self and all party members within a radius of 30 yalms by 5%</para> @@ -29689,9 +29689,9 @@ ApexArrow_29393 = 29393, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BlastArrow_29394 = 29394, +BlastArrow_PvP = 29394, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29395"><strong>Silent Nocturne</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29395"><strong>Silent Nocturne</strong></see> <i>PvP</i> (BRD) [29395] [Ability] /// <para>Silences target.</para> /// <para>Duration: 2s</para> /// <para>Additional Effect: Grants Repertoire</para> @@ -29699,39 +29699,39 @@ BlastArrow_29394 = 29394, /// <para></para> /// <para>※Powerful Shot changes to Pitch Perfect while under the effect of Repertoire.</para> /// </summary> -SilentNocturne = 29395, +SilentNocturne_PvP = 29395, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29396"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29396"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29396] [Ability] /// <para>Delivers a ranged attack with a potency of 3,000.</para> /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para> /// <para>Maximum Charges: 3</para> /// </summary> -EmpyrealArrow_29396 = 29396, +EmpyrealArrow_PvP = 29396, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29397"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29397"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29397] [Ability] /// <para>Delivers a ranged attack with a potency of 3,000.</para> /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para> /// <para>Maximum Charges: 3</para> /// </summary> -EmpyrealArrow_29397 = 29397, +EmpyrealArrow_PvP_29397 = 29397, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29398"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29398"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29398] [Ability] /// <para>Delivers a ranged attack with a potency of 3,000.</para> /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para> /// <para>Maximum Charges: 3</para> /// </summary> -EmpyrealArrow_29398 = 29398, +EmpyrealArrow_PvP_29398 = 29398, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29399"><strong>Repelling Shot</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29399"><strong>Repelling Shot</strong></see> <i>PvP</i> (BRD) [29399] [Ability] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: 10-yalm backstep</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 3s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -RepellingShot_29399 = 29399, +RepellingShot_PvP = 29399, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29400"><strong>the Warden's Paean</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29400"><strong>the Warden's Paean</strong></see> <i>PvP</i> (BRD) [29400] [Ability] /// <para>Removes one status affliction from self or target party member that can be removed by Purify. If a status affliction cannot be removed, creates a barrier that will nullify the next status affliction that can be removed by Purify.</para> /// <para>Duration: 8s</para> /// <para>Grants Warden's Grace upon successfully removing or nullifying a status affliction.</para> @@ -29742,9 +29742,9 @@ RepellingShot_29399 = 29399, /// <para></para> /// <para>※Powerful Shot changes to Pitch Perfect while under the effect of Repertoire.</para> /// </summary> -TheWardensPaean_29400 = 29400, +TheWardensPaean_PvP = 29400, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29401"><strong>Final Fantasia</strong></see> <i>PvP</i> (BRD) +/// <see href="https://garlandtools.org/db/#action/29401"><strong>Final Fantasia</strong></see> <i>PvP</i> (BRD) [29401] [Limit Break] /// <para>Reduces your weaponskill cast time and recast time by 10% while also increasing movement speed by 25%.</para> /// <para>Additional Effect: Increases damage dealt by self and all party members within a radius of 30 yalms by 10% while also gradually filling the limit gauge</para> /// <para>Duration: 30s</para> @@ -29752,9 +29752,9 @@ TheWardensPaean_29400 = 29400, /// <para>Gauge Charge Time: 120s</para> /// <para>Can only be executed while in combat.</para> /// </summary> -FinalFantasia = 29401, +FinalFantasia_PvP = 29401, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29402"><strong>Blast Charge</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29402"><strong>Blast Charge</strong></see> <i>PvP</i> (MCH) [29402] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 4,000.</para> /// <para>Additional Effect: Grants a stack of Heat, up to a maximum of 5</para> /// <para>Duration: 15s</para> @@ -29764,25 +29764,25 @@ FinalFantasia = 29401, /// <para></para> /// <para>※Action changes to Heat Blast while under the effect of Overheated.</para> /// </summary> -BlastCharge = 29402, +BlastCharge_PvP = 29402, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29403"><strong>Heat Blast</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29403"><strong>Heat Blast</strong></see> <i>PvP</i> (MCH) [29403] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 6,000.</para> /// <para>Can only be executed while under the effect of Overheated.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HeatBlast_29403 = 29403, +HeatBlast_PvP = 29403, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29404"><strong>Scattergun</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29404"><strong>Scattergun</strong></see> <i>PvP</i> (MCH) [29404] [Weaponskill] /// <para>Delivers an attack with a potency of 6,000 to all enemies in a cone before you. Strikes twice when hitting only a single target.</para> /// <para>Additional Effect: 10-yalm knockback</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -Scattergun_29404 = 29404, +Scattergun_PvP = 29404, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29405"><strong>Drill</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29405"><strong>Drill</strong></see> <i>PvP</i> (MCH) [29405] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 10,000.</para> /// <para>Potency is increased to 20,000 while under the effect of Analysis.</para> /// <para>Ignores the effects of Guard when dealing damage.</para> @@ -29793,9 +29793,9 @@ Scattergun_29404 = 29404, /// <para></para> /// <para>※Action changes to Bioblaster while under the effect of Bioblaster Primed.</para> /// </summary> -Drill_29405 = 29405, +Drill_PvP = 29405, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29406"><strong>Bioblaster</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29406"><strong>Bioblaster</strong></see> <i>PvP</i> (MCH) [29406] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000 to all enemies in a cone before you.</para> /// <para>Additional Effect: Doubles potency and afflicts target with Heavy +75% while under the effect of Analysis</para> /// <para>Duration: 5s</para> @@ -29811,9 +29811,9 @@ Drill_29405 = 29405, /// <para>※Action changes to Air Anchor while under the effect of Air Anchor Primed.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Bioblaster_29406 = 29406, +Bioblaster_PvP = 29406, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29407"><strong>Air Anchor</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29407"><strong>Air Anchor</strong></see> <i>PvP</i> (MCH) [29407] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 8,000.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 3s</para> @@ -29827,9 +29827,9 @@ Bioblaster_29406 = 29406, /// <para>※Action changes to Chain Saw while under the effect of Chain Saw Primed.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AirAnchor_29407 = 29407, +AirAnchor_PvP = 29407, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29408"><strong>Chain Saw</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29408"><strong>Chain Saw</strong></see> <i>PvP</i> (MCH) [29408] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>Potency is increased by 50% when target's HP is below 50%.</para> /// <para>Additional Effect: Potency is increased by 50% while under the effect of Analysis</para> @@ -29841,16 +29841,16 @@ AirAnchor_29407 = 29407, /// <para>※Action changes to Drill while under the effect of Drill Primed.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ChainSaw_29408 = 29408, +ChainSaw_PvP = 29408, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29409"><strong>Wildfire</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29409"><strong>Wildfire</strong></see> <i>PvP</i> (MCH) [29409] [Ability] /// <para>Covers target's body in a slow-burning pitch. Deals damage to target and all enemies within 5 yalms when time expires.</para> /// <para>Duration: 7s</para> /// <para>Potency is increased by 4,000 for each of your own attack actions you land prior to the end of the effect. Landing 3 attack actions will cause the slow-burning pitch to detonate immediately.</para> /// </summary> -Wildfire_29409 = 29409, +Wildfire_PvP = 29409, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29412"><strong>Bishop Autoturret</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29412"><strong>Bishop Autoturret</strong></see> <i>PvP</i> (MCH) [29412] [Ability] /// <para>Deploys an area of effect battle turret which will deliver auto-attacks to enemies within range with a potency of 6,000.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Increases target's damage taken by 10%</para> @@ -29858,9 +29858,9 @@ Wildfire_29409 = 29409, /// <para>Additional Effect: Creates a barrier that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 7s</para> /// </summary> -BishopAutoturret = 29412, +BishopAutoturret_PvP = 29412, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29413"><strong>Aether Mortar</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29413"><strong>Aether Mortar</strong></see> <i>PvP</i> (MCH) [29413] [Ability] /// <para>Deals unaspected damage with a potency of 6,000 to all nearby enemies.</para> /// <para>Additional Effect: Increases target's damage taken by 10%</para> /// <para>Duration: 7s</para> @@ -29869,9 +29869,9 @@ BishopAutoturret = 29412, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AetherMortar = 29413, +AetherMortar_PvP = 29413, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29414"><strong>Analysis</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29414"><strong>Analysis</strong></see> <i>PvP</i> (MCH) [29414] [Ability] /// <para>Grants additional effects to Drill, Bioblaster, Air Anchor, and Chain Saw when these weaponskills are executed.</para> /// <para>Duration: 10s</para> /// <para>Drill Additional Effect: Potency is increased to 200%</para> @@ -29880,33 +29880,33 @@ AetherMortar = 29413, /// <para>Chain Saw Additional Effect: Potency is increased by 50%</para> /// <para>Maximum Charges: 2</para> /// </summary> -Analysis = 29414, +Analysis_PvP = 29414, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29415"><strong>Marksman's Spite</strong></see> <i>PvP</i> (MCH) +/// <see href="https://garlandtools.org/db/#action/29415"><strong>Marksman's Spite</strong></see> <i>PvP</i> (MCH) [29415] [Limit Break] /// <para>Delivers a ranged attack with a potency of 36,000.</para> /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 90s</para> /// </summary> -MarksmansSpite = 29415, +MarksmansSpite_PvP = 29415, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29416"><strong>Cascade</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29416"><strong>Cascade</strong></see> <i>PvP</i> (DNC) [29416] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 3,000.</para> /// <para></para> /// <para>※Action changes to Reverse Cascade while under the effect of En Avant.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Cascade_29416 = 29416, +Cascade_PvP = 29416, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29417"><strong>Fountain</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29417"><strong>Fountain</strong></see> <i>PvP</i> (DNC) [29417] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 5,000.</para> /// <para>Combo Action: Cascade or Reverse Cascade</para> /// <para></para> /// <para>※Action changes to Fountainfall while under the effect of En Avant.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Fountain_29417 = 29417, +Fountain_PvP = 29417, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29418"><strong>Reverse Cascade</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29418"><strong>Reverse Cascade</strong></see> <i>PvP</i> (DNC) [29418] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 6,000.</para> /// <para>Additional Effect: Grants Bladecatcher</para> /// <para>If already under the effect of Bladecatcher, effect changes to Flourishing Saber Dance.</para> @@ -29916,9 +29916,9 @@ Fountain_29417 = 29417, /// <para>※Fountain Combo changes to Saber Dance while under the effect of Flourishing Saber Dance.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ReverseCascade_29418 = 29418, +ReverseCascade_PvP = 29418, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29419"><strong>Fountainfall</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29419"><strong>Fountainfall</strong></see> <i>PvP</i> (DNC) [29419] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 8,000.</para> /// <para>Combo Action: Cascade or Reverse Cascade</para> /// <para>Additional Effect: Grants Bladecatcher</para> @@ -29929,9 +29929,9 @@ ReverseCascade_29418 = 29418, /// <para>※Fountain Combo changes to Saber Dance while under the effect of Flourishing Saber Dance.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Fountainfall_29419 = 29419, +Fountainfall_PvP = 29419, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29420"><strong>Saber Dance</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29420"><strong>Saber Dance</strong></see> <i>PvP</i> (DNC) [29420] [Weaponskill] /// <para>Delivers an attack with a potency of 10,000 to target and all enemies nearby it.</para> /// <para>Potency is increased by 50% when attacking only a single target.</para> /// <para>Additional Effect: Increases damage dealt by self and party member designated as your Dance Partner by 10%</para> @@ -29940,17 +29940,17 @@ Fountainfall_29419 = 29419, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SaberDance_29420 = 29420, +SaberDance_PvP = 29420, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29421"><strong>Starfall Dance</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29421"><strong>Starfall Dance</strong></see> <i>PvP</i> (DNC) [29421] [Weaponskill] /// <para>Delivers an attack with a potency of 10,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Reduces weaponskill cast time and recast time, as well as spell cast time and recast time for self and party member designated as your Dance Partner by 10%</para> /// <para>Duration: 10s</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -StarfallDance_29421 = 29421, +StarfallDance_PvP = 29421, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29422"><strong>Honing Dance</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29422"><strong>Honing Dance</strong></see> <i>PvP</i> (DNC) [29422] [Weaponskill] /// <para>Unleashes a flurry of chakram strikes on nearby enemies, dealing damage over time with a potency of 4,000 and decreasing damage taken by 25% until effect expires.</para> /// <para>Duration: 3s</para> /// <para>Executes Honing Ovation when effect duration expires.</para> @@ -29962,9 +29962,9 @@ StarfallDance_29421 = 29421, /// <para></para> /// <para>※Action changes to Honing Ovation upon execution.</para> /// </summary> -HoningDance = 29422, +HoningDance_PvP = 29422, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29423"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29423"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29423] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -29978,9 +29978,9 @@ HoningDance = 29422, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation = 29423, +HoningOvation_PvP = 29423, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29424"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29424"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29424] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -29994,9 +29994,9 @@ HoningOvation = 29423, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation_29424 = 29424, +HoningOvation_PvP_29424 = 29424, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29425"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29425"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29425] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -30010,9 +30010,9 @@ HoningOvation_29424 = 29424, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation_29425 = 29425, +HoningOvation_PvP_29425 = 29425, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29426"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29426"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29426] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -30026,9 +30026,9 @@ HoningOvation_29425 = 29425, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation_29426 = 29426, +HoningOvation_PvP_29426 = 29426, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29427"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29427"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29427] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -30042,65 +30042,65 @@ HoningOvation_29426 = 29426, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation_29427 = 29427, +HoningOvation_PvP_29427 = 29427, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29428"><strong>Fan Dance</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29428"><strong>Fan Dance</strong></see> <i>PvP</i> (DNC) [29428] [Ability] /// <para>Delivers an attack with a potency of 5,000 to all enemies in a cone before you.</para> /// <para>Additional Effect: Reduces damage taken by self and party member designated as your Dance Partner by 10%</para> /// <para>Duration: 10s</para> /// </summary> -FanDance_29428 = 29428, +FanDance_PvP = 29428, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29429"><strong>Curing Waltz</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29429"><strong>Curing Waltz</strong></see> <i>PvP</i> (DNC) [29429] [Ability] /// <para>Restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 10,000</para> /// <para>Additional Effect: Party member designated as your Dance Partner will also heal self and nearby party members</para> /// </summary> -CuringWaltz_29429 = 29429, +CuringWaltz_PvP = 29429, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29430"><strong>En Avant</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29430"><strong>En Avant</strong></see> <i>PvP</i> (DNC) [29430] [Ability] /// <para>Quickly dash 10 yalms forward.</para> /// <para>Additional Effect: Grants En Avant</para> /// <para>Duration: 10s</para> /// <para>Maximum Charges: 4</para> /// <para>Cannot be executed while bound.</para> /// </summary> -EnAvant_29430 = 29430, +EnAvant_PvP = 29430, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29431"><strong>Closed Position</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29431"><strong>Closed Position</strong></see> <i>PvP</i> (DNC) [29431] [Ability] /// <para>Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Saber Dance, Starfall Dance, Fan Dance, and Curing Waltz with said party member.</para> /// <para>Effect ends upon reuse.</para> /// </summary> -ClosedPosition_29431 = 29431, +ClosedPosition_PvP = 29431, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29432"><strong>Contradance</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29432"><strong>Contradance</strong></see> <i>PvP</i> (DNC) [29432] [Limit Break] /// <para>Charms nearby enemies.</para> /// <para>Duration: 2s</para> /// <para>Damage you deal to charmed enemies will extend the effect duration by 2s. This effect can only be extended once.</para> /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 90s</para> /// </summary> -Contradance = 29432, +Contradance_PvP = 29432, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29463"><strong>Bark</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29463"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount] /// <para>Permits your megashiba to bark to its heart's content.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Bark = 29463, +Bark_PvE = 29463, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29464"><strong>Wag</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29464"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount] /// <para>Inspires a joyful display of tail-waggery.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Wag = 29464, +Wag_PvE = 29464, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29465"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29465"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount] /// <para>Inspires the sort of sulking to which man can only aspire.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Whimper = 29465, +Whimper_PvE = 29465, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29469"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/29469"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29469] [Limit Break] /// <para>Delivers an attack with a potency of 12,000 to all nearby enemies.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 3s</para> @@ -30109,9 +30109,9 @@ Whimper = 29465, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TerminalTrigger_29469 = 29469, +TerminalTrigger_PvP_29469 = 29469, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29470"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/29470"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29470] [Weaponskill] /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para> /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim available at time of execution.</para> /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para> @@ -30125,75 +30125,75 @@ TerminalTrigger_29469 = 29469, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HoningOvation_29470 = 29470, +HoningOvation_PvP_29470 = 29470, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29472"><strong>Bootshine</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29472"><strong>Bootshine</strong></see> <i>PvP</i> (MNK) [29472] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Bootshine_29472 = 29472, +Bootshine_PvP = 29472, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29473"><strong>True Strike</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29473"><strong>True Strike</strong></see> <i>PvP</i> (MNK) [29473] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Bootshine</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TrueStrike_29473 = 29473, +TrueStrike_PvP = 29473, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29474"><strong>Snap Punch</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29474"><strong>Snap Punch</strong></see> <i>PvP</i> (MNK) [29474] [Weaponskill] /// <para>Delivers an attack with a potency of 6,000.</para> /// <para>Combo Action: True Strike</para> /// <para>Additional Effect: Extends Wind Resonance duration by 5s to a maximum of 15s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SnapPunch_29474 = 29474, +SnapPunch_PvP = 29474, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29475"><strong>Dragon Kick</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29475"><strong>Dragon Kick</strong></see> <i>PvP</i> (MNK) [29475] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para>Combo Action: Snap Punch</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -DragonKick_29475 = 29475, +DragonKick_PvP = 29475, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29476"><strong>Twin Snakes</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29476"><strong>Twin Snakes</strong></see> <i>PvP</i> (MNK) [29476] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Dragon Kick</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TwinSnakes_29476 = 29476, +TwinSnakes_PvP = 29476, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29477"><strong>Demolish</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29477"><strong>Demolish</strong></see> <i>PvP</i> (MNK) [29477] [Weaponskill] /// <para>Delivers an attack with a potency of 6,000.</para> /// <para>Combo Action: Twin Snakes</para> /// <para>Additional Effect: Extends Wind Resonance duration by 5s to a maximum of 15s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Demolish_29477 = 29477, +Demolish_PvP = 29477, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29478"><strong>Phantom Rush</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29478"><strong>Phantom Rush</strong></see> <i>PvP</i> (MNK) [29478] [Weaponskill] /// <para>Delivers an attack with a potency of 12,000 to target and all enemies nearby it.</para> /// <para>Combo Action: Demolish</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -PhantomRush_29478 = 29478, +PhantomRush_PvP = 29478, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29479"><strong>Six-sided Star</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29479"><strong>Six-sided Star</strong></see> <i>PvP</i> (MNK) [29479] [Ability] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 2s</para> /// <para>Additional Effect: Increases movement speed by 25%</para> /// <para>Duration: 5s</para> /// </summary> -SixsidedStar_29479 = 29479, +SixsidedStar_PvP = 29479, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29480"><strong>Enlightenment</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29480"><strong>Enlightenment</strong></see> <i>PvP</i> (MNK) [29480] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: 15-yalm knockback to first target</para> /// <para>Also afflicts first target with Pressure Point if successfully knocked back.</para> @@ -30202,27 +30202,27 @@ SixsidedStar_29479 = 29479, /// <para>Effect of Pressure Point expires upon dealing additional damage.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -Enlightenment_29480 = 29480, +Enlightenment_PvP = 29480, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29481"><strong>Rising Phoenix</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29481"><strong>Rising Phoenix</strong></see> <i>PvP</i> (MNK) [29481] [Ability] /// <para>Delivers an attack with a potency of 3,000 to all nearby enemies.</para> /// <para>Additional Effect: Grants Fire Resonance</para> /// <para>Fire Resonance Effect: Increases damage dealt by next weaponskill by 50%</para> /// <para>Duration: 10s</para> /// <para>Maximum Charges: 2</para> /// </summary> -RisingPhoenix_29481 = 29481, +RisingPhoenix_PvP = 29481, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29482"><strong>Riddle of Earth</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29482"><strong>Riddle of Earth</strong></see> <i>PvP</i> (MNK) [29482] [Ability] /// <para>Grants Earth Resonance, changing Riddle of Earth to Earth's Reply, and allowing you to compile damage each time you are struck by an enemy.</para> /// <para>Duration: 8s</para> /// <para>Executing Earth's Reply deals physical damage to all nearby enemies and restores your HP.</para> /// <para>Damage Potency: 2,000 plus 25% of compiled damage</para> /// <para>Cure Potency: 4,000 plus 50% of compiled damage</para> /// </summary> -RiddleOfEarth_29482 = 29482, +RiddleOfEarth_PvP = 29482, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29483"><strong>Earth's Reply</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29483"><strong>Earth's Reply</strong></see> <i>PvP</i> (MNK) [29483] [Ability] /// <para>Deals physical damage to all nearby enemies and restores your HP.</para> /// <para>Damage Potency: 2,000 plus 25% of compiled damage</para> /// <para>Cure Potency: 4,000 plus 50% of compiled damage</para> @@ -30230,9 +30230,9 @@ RiddleOfEarth_29482 = 29482, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EarthsReply = 29483, +EarthsReply_PvP = 29483, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29484"><strong>Thunderclap</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29484"><strong>Thunderclap</strong></see> <i>PvP</i> (MNK) [29484] [Ability] /// <para>Rush to a targeted enemy's or party member's location.</para> /// <para>Additional Effect: Grants Wind Resonance</para> /// <para>Wind Resonance Effect: Reduces weaponskill recast time by 10%</para> @@ -30244,9 +30244,9 @@ EarthsReply = 29483, /// <para>Maximum Charges: 3</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Thunderclap_29484 = 29484, +Thunderclap_PvP = 29484, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29485"><strong>Meteodrive</strong></see> <i>PvP</i> (MNK) +/// <see href="https://garlandtools.org/db/#action/29485"><strong>Meteodrive</strong></see> <i>PvP</i> (MNK) [29485] [Limit Break] /// <para>Rushes target and delivers an attack with a potency of 12,000.</para> /// <para>Additional Effect: Removes target's Guard</para> /// <para>Additional Effect: Afflicts target with Meteodrive, rendering them unable to move</para> @@ -30257,47 +30257,47 @@ Thunderclap_29484 = 29484, /// <para>Gauge Charge Time: 75s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Meteodrive = 29485, +Meteodrive_PvP = 29485, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29486"><strong>Raiden Thrust</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29486"><strong>Raiden Thrust</strong></see> <i>PvP</i> (DRG) [29486] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -RaidenThrust_29486 = 29486, +RaidenThrust_PvP = 29486, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29487"><strong>Fang and Claw</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29487"><strong>Fang and Claw</strong></see> <i>PvP</i> (DRG) [29487] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Raiden Thrust</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FangAndClaw_29487 = 29487, +FangAndClaw_PvP = 29487, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29488"><strong>Wheeling Thrust</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29488"><strong>Wheeling Thrust</strong></see> <i>PvP</i> (DRG) [29488] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Fang and Claw</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WheelingThrust_29488 = 29488, +WheelingThrust_PvP = 29488, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29489"><strong>Heavens' Thrust</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29489"><strong>Heavens' Thrust</strong></see> <i>PvP</i> (DRG) [29489] [Weaponskill] /// <para>Delivers an attack with a potency of 12,000.</para> /// <para>Can only be executed while under the effect of Heavensent.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HeavensThrust_29489 = 29489, +HeavensThrust_PvP = 29489, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29490"><strong>Chaotic Spring</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29490"><strong>Chaotic Spring</strong></see> <i>PvP</i> (DRG) [29490] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000.</para> /// <para>Additional Effect: Absorbs 150% of damage dealt as HP</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -ChaoticSpring_29490 = 29490, +ChaoticSpring_PvP = 29490, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29491"><strong>Geirskogul</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29491"><strong>Geirskogul</strong></see> <i>PvP</i> (DRG) [29491] [Ability] /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para> /// <para>Additional Effect: Grants Life of the Dragon</para> /// <para>Life of the Dragon Effect: Increases damage dealt and damage suffered by 25%</para> @@ -30305,18 +30305,18 @@ ChaoticSpring_29490 = 29490, /// <para></para> /// <para>※Action changes to Nastrond upon execution.</para> /// </summary> -Geirskogul_29491 = 29491, +Geirskogul_PvP = 29491, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29492"><strong>Nastrond</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29492"><strong>Nastrond</strong></see> <i>PvP</i> (DRG) [29492] [Ability] /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para> /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para> /// <para>Can only be executed while under the effect of Life of the Dragon. Effect fades upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Nastrond_29492 = 29492, +Nastrond_PvP = 29492, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29493"><strong>High Jump</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29493"><strong>High Jump</strong></see> <i>PvP</i> (DRG) [29493] [Ability] /// <para>Delivers a jumping attack with a potency of 4,000.</para> /// <para>Additional Effect: Grants Heavensent</para> /// <para>Duration: 10s</para> @@ -30324,9 +30324,9 @@ Nastrond_29492 = 29492, /// <para></para> /// <para>※Wheeling Thrust Combo changes to Heavens' Thrust while under the effect of Heavensent.</para> /// </summary> -HighJump_29493 = 29493, +HighJump_PvP = 29493, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29494"><strong>Elusive Jump</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29494"><strong>Elusive Jump</strong></see> <i>PvP</i> (DRG) [29494] [Ability] /// <para>Executes a jump to a location 15 yalms behind you.</para> /// <para>Additional Effect: Removes Heavy and Bind</para> /// <para>Additional Effect: Increases movement speed by 25%</para> @@ -30336,26 +30336,26 @@ HighJump_29493 = 29493, /// <para></para> /// <para>※Action changes to Wyrmwind Thrust while under the effect of Firstminds' Focus.</para> /// </summary> -ElusiveJump_29494 = 29494, +ElusiveJump_PvP = 29494, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29495"><strong>Wyrmwind Thrust</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29495"><strong>Wyrmwind Thrust</strong></see> <i>PvP</i> (DRG) [29495] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>Potency increases up to 16,000 the farther away you are from the target, reaching its maximum value when the target is 15 yalms away.</para> /// <para>Can only be executed while under the effect of Firstminds' Focus.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WyrmwindThrust_29495 = 29495, +WyrmwindThrust_PvP = 29495, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29496"><strong>Horrid Roar</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29496"><strong>Horrid Roar</strong></see> <i>PvP</i> (DRG) [29496] [Ability] /// <para>Deals unaspected damage with a potency of 4,000 to all nearby enemies.</para> /// <para>Additional Effect: Afflicts target with Horrid Roar</para> /// <para>Horrid Roar Effect: Reduces damage target deals to you by 50%</para> /// <para>Duration: 10s</para> /// </summary> -HorridRoar_29496 = 29496, +HorridRoar_PvP = 29496, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29497"><strong>Sky High</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29497"><strong>Sky High</strong></see> <i>PvP</i> (DRG) [29497] [Limit Break] /// <para>Jump high into the air, preventing enemies from targeting you. Movement is still possible before landing.</para> /// <para>Duration: 5s</para> /// <para>Additional Effect: Removes Heavy, Bind, and Half-asleep</para> @@ -30365,14 +30365,14 @@ HorridRoar_29496 = 29496, /// <para></para> /// <para>※Action changes to Sky Shatter upon execution.</para> /// </summary> -SkyHigh = 29497, +SkyHigh_PvP = 29497, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29498"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29498"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29498] [Limit Break] /// <para></para> /// </summary> -SkyShatter = 29498, +SkyShatter_PvP = 29498, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29499"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) +/// <see href="https://garlandtools.org/db/#action/29499"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29499] [Limit Break] /// <para>Delivers an attack with a potency of 16,000 to all nearby enemies.</para> /// <para>Potency is doubled when targets are within 5 yalms.</para> /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 24,000 potency</para> @@ -30381,40 +30381,40 @@ SkyShatter = 29498, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SkyShatter_29499 = 29499, +SkyShatter_PvP_29499 = 29499, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29500"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29500"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29500] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -SpinningEdge_29500 = 29500, +SpinningEdge_PvP = 29500, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29501"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29501"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29501] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Spinning Edge</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -GustSlash_29501 = 29501, +GustSlash_PvP = 29501, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29502"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29502"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29502] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Gust Slash</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AeolianEdge_29502 = 29502, +AeolianEdge_PvP = 29502, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29503"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29503"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29503] [Weaponskill] /// <para>Delivers an attack with a potency of 12,000.</para> /// <para>Can only be executed while under the effect of Hidden.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Assassinate_29503 = 29503, +Assassinate_PvP = 29503, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29504"><strong>Goka Mekkyaku</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29504"><strong>Goka Mekkyaku</strong></see> <i>PvP</i> (NIN) [29504] [Spell] /// <para>Deals unaspected damage with a potency of 4,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 4,000</para> @@ -30423,26 +30423,26 @@ Assassinate_29503 = 29503, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -GokaMekkyaku_29504 = 29504, +GokaMekkyaku_PvP = 29504, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29505"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29505"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29505] [Weaponskill] /// <para>Delivers a ranged attack with a potency of 6,000.</para> /// <para>Maximum Charges: 3</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// <para></para> /// <para>※Action changes to Hyosho Ranryu while under the effect of Three Mudra.</para> /// </summary> -FumaShuriken_29505 = 29505, +FumaShuriken_PvP = 29505, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29506"><strong>Hyosho Ranryu</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29506"><strong>Hyosho Ranryu</strong></see> <i>PvP</i> (NIN) [29506] [Spell] /// <para>Deals unaspected damage with a potency of 16,000.</para> /// <para>Can only be executed while under the effect of Three Mudra.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HyoshoRanryu_29506 = 29506, +HyoshoRanryu_PvP = 29506, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29507"><strong>Three Mudra</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29507"><strong>Three Mudra</strong></see> <i>PvP</i> (NIN) [29507] [Ability] /// <para>Grants Three Mudra, allowing for immediate execution of any ninjutsu action. However, the same ninjutsu action cannot be executed consecutively.</para> /// <para>Duration: 10s</para> /// <para>Maximum Charges: 2</para> @@ -30450,9 +30450,9 @@ HyoshoRanryu_29506 = 29506, /// <para>※Action changes to Meisui while under the effect of Three Mudra.</para> /// <para>※All actions except Seiton Tenchu will change to their respective ninjutsu actions while under the effect of Three Mudra.</para> /// </summary> -ThreeMudra = 29507, +ThreeMudra_PvP = 29507, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29508"><strong>Meisui</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29508"><strong>Meisui</strong></see> <i>PvP</i> (NIN) [29508] [Spell] /// <para>Restores own or target party member's HP.</para> /// <para>Cure Potency: 8,000</para> /// <para>Additional Effect: Grants healing over time effect to target</para> @@ -30462,9 +30462,9 @@ ThreeMudra = 29507, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Meisui_29508 = 29508, +Meisui_PvP = 29508, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29509"><strong>Mug</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29509"><strong>Mug</strong></see> <i>PvP</i> (NIN) [29509] [Ability] /// <para>Delivers an attack with a potency of 2,000.</para> /// <para>Additional Effect: Increases target's damage taken by 10%</para> /// <para>Duration: 10s</para> @@ -30472,9 +30472,9 @@ Meisui_29508 = 29508, /// <para></para> /// <para>※Action changes to Goka Mekkyaku while under the effect of Three Mudra.</para> /// </summary> -Mug_29509 = 29509, +Mug_PvP = 29509, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29510"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29510"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29510] [Weaponskill] /// <para>Rushes target and delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 2s</para> @@ -30485,9 +30485,9 @@ Mug_29509 = 29509, /// <para>※Aeolian Edge Combo changes to Fleeting Raiju while under the effect of Fleeting Raiju Ready.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ForkedRaiju_29510 = 29510, +ForkedRaiju_PvP = 29510, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29511"><strong>Bunshin</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29511"><strong>Bunshin</strong></see> <i>PvP</i> (NIN) [29511] [Ability] /// <para>For up to five attacks, your shadow becomes animate, attacking enemies each time you execute a weaponskill.</para> /// <para>Shadow attack potency will match that of your weaponskills, but will be halved when executing Fuma Shuriken or Assassinate.</para> /// <para>Duration: 20s</para> @@ -30496,9 +30496,9 @@ ForkedRaiju_29510 = 29510, /// <para></para> /// <para>※Action changes to Huton while under the effect of Three Mudra.</para> /// </summary> -Bunshin_29511 = 29511, +Bunshin_PvP = 29511, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29512"><strong>Huton</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29512"><strong>Huton</strong></see> <i>PvP</i> (NIN) [29512] [Spell] /// <para>Grants Huton, creating a barrier that absorbs damage equivalent to a heal of 16,000 potency, and increasing movement speed by 25%.</para> /// <para>Duration: 10s</para> /// <para>Movement speed returns to normal when barrier is completely absorbed.</para> @@ -30506,9 +30506,9 @@ Bunshin_29511 = 29511, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Huton_29512 = 29512, +Huton_PvP = 29512, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29513"><strong>Shukuchi</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29513"><strong>Shukuchi</strong></see> <i>PvP</i> (NIN) [29513] [Ability] /// <para>Move quickly to the specified location.</para> /// <para>Additional Effect: Grants Hidden</para> /// <para>Hidden Effect: Blend in with your surroundings, making it impossible for enemies to see or target you</para> @@ -30519,18 +30519,18 @@ Huton_29512 = 29512, /// <para>※Action changes to Doton while under the effect of Three Mudra.</para> /// <para>※Aeolian Edge Combo changes to Assassinate while under the effect of Hidden.</para> /// </summary> -Shukuchi_29513 = 29513, +Shukuchi_PvP = 29513, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29514"><strong>Doton</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29514"><strong>Doton</strong></see> <i>PvP</i> (NIN) [29514] [Spell] /// <para>Creates a patch of corrupted earth under your feet, dealing damage with a potency of 3,000 to any enemies who enter.</para> /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of Three Mudra.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Doton_29514 = 29514, +Doton_PvP = 29514, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29515"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29515"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29515] [Limit Break] /// <para>Rushes target and delivers an attack with a potency of 12,000, incapacitating foes whose HP is below 50%.</para> /// <para>Additional Effect: Afflicts target with Death Link</para> /// <para>Duration: 4s</para> @@ -30542,9 +30542,9 @@ Doton_29514 = 29514, /// <para>Gauge Charge Time: 105s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -SeitonTenchu = 29515, +SeitonTenchu_PvP = 29515, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29516"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29516"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29516] [Limit Break] /// <para>Rushes target and delivers an attack with a potency of 12,000, incapacitating foes whose HP is below 50%.</para> /// <para>Additional Effect: Afflicts target with Death Link</para> /// <para>Duration: 4s</para> @@ -30556,65 +30556,65 @@ SeitonTenchu = 29515, /// <para>Gauge Charge Time: 105s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -SeitonTenchu_29516 = 29516, +SeitonTenchu_PvP_29516 = 29516, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29517"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29517"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29517] [Weaponskill] /// <para></para> /// </summary> -SpinningEdge_29517 = 29517, +SpinningEdge_PvP_29517 = 29517, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29518"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29518"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29518] [Weaponskill] /// <para></para> /// </summary> -GustSlash_29518 = 29518, +GustSlash_PvP_29518 = 29518, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29519"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29519"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29519] [Weaponskill] /// <para></para> /// </summary> -AeolianEdge_29519 = 29519, +AeolianEdge_PvP_29519 = 29519, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29520"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29520"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29520] [Weaponskill] /// <para></para> /// </summary> -Assassinate_29520 = 29520, +Assassinate_PvP_29520 = 29520, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29521"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29521"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29521] [Weaponskill] /// <para></para> /// </summary> -FumaShuriken_29521 = 29521, +FumaShuriken_PvP_29521 = 29521, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29522"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29522"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29522] [Weaponskill] /// <para></para> /// </summary> -ForkedRaiju_29522 = 29522, +ForkedRaiju_PvP_29522 = 29522, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29523"><strong>Yukikaze</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29523"><strong>Yukikaze</strong></see> <i>PvP</i> (SAM) [29523] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※Action changes to Hyosetsu while under the effect of Kaiten.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Yukikaze_29523 = 29523, +Yukikaze_PvP = 29523, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29524"><strong>Gekko</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29524"><strong>Gekko</strong></see> <i>PvP</i> (SAM) [29524] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Yukikaze or Hyosetsu</para> /// <para></para> /// <para>※Action changes to Mangetsu while under the effect of Kaiten.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Gekko_29524 = 29524, +Gekko_PvP = 29524, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29525"><strong>Kasha</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29525"><strong>Kasha</strong></see> <i>PvP</i> (SAM) [29525] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Gekko or Mangetsu</para> /// <para></para> /// <para>※Action changes to Oka while under the effect of Kaiten.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Kasha_29525 = 29525, +Kasha_PvP = 29525, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29526"><strong>Hyosetsu</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29526"><strong>Hyosetsu</strong></see> <i>PvP</i> (SAM) [29526] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000 to all nearby enemies.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 2s</para> @@ -30622,18 +30622,18 @@ Kasha_29525 = 29525, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Hyosetsu = 29526, +Hyosetsu_PvP = 29526, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29527"><strong>Mangetsu</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29527"><strong>Mangetsu</strong></see> <i>PvP</i> (SAM) [29527] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para> /// <para>Combo Action: Yukikaze or Hyosetsu</para> /// <para>Can only be executed while under the effect of Kaiten.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Mangetsu_29527 = 29527, +Mangetsu_PvP = 29527, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29528"><strong>Oka</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29528"><strong>Oka</strong></see> <i>PvP</i> (SAM) [29528] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000 to all nearby enemies.</para> /// <para>Combo Action: Gekko or Mangetsu</para> /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para> @@ -30641,17 +30641,17 @@ Mangetsu_29527 = 29527, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Oka_29528 = 29528, +Oka_PvP = 29528, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29529"><strong>Midare Setsugekka</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29529"><strong>Midare Setsugekka</strong></see> <i>PvP</i> (SAM) [29529] [Weaponskill] /// <para>Delivers an attack with a potency of 16,000.</para> /// <para>Can only be executed while under the effect of Midare.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -MidareSetsugekka_29529 = 29529, +MidareSetsugekka_PvP = 29529, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29530"><strong>Ogi Namikiri</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29530"><strong>Ogi Namikiri</strong></see> <i>PvP</i> (SAM) [29530] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para> /// <para>Potency is increased by 50% when attacking only a single target.</para> /// <para>Additional Effect: When attacking two or more targets, creates a barrier around self that absorbs damage equivalent to a heal of 8,000 potency</para> @@ -30660,9 +30660,9 @@ MidareSetsugekka_29529 = 29529, /// <para></para> /// <para>※Action changes to Kaeshi: Namikiri upon execution.</para> /// </summary> -OgiNamikiri_29530 = 29530, +OgiNamikiri_PvP = 29530, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29531"><strong>Kaeshi: Namikiri</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29531"><strong>Kaeshi: Namikiri</strong></see> <i>PvP</i> (SAM) [29531] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para> /// <para>Potency is increased by 50% when attacking only a single target.</para> /// <para>Combo Action: Ogi Namikiri</para> @@ -30671,9 +30671,9 @@ OgiNamikiri_29530 = 29530, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -KaeshiNamikiri_29531 = 29531, +KaeshiNamikiri_PvP = 29531, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29532"><strong>Hissatsu: Soten</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29532"><strong>Hissatsu: Soten</strong></see> <i>PvP</i> (SAM) [29532] [Ability] /// <para>Swiftly charges forward, dealing damage with a potency of 4,000 to targets in your path.</para> /// <para>Additional Effect: Grants Kaiten</para> /// <para>Duration: 10s</para> @@ -30684,27 +30684,27 @@ KaeshiNamikiri_29531 = 29531, /// <para>※Gekko changes to Mangetsu while under the effect of Kaiten.</para> /// <para>※Kasha changes to Oka while under the effect of Kaiten.</para> /// </summary> -HissatsuSoten = 29532, +HissatsuSoten_PvP = 29532, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29533"><strong>Hissatsu: Chiten</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29533"><strong>Hissatsu: Chiten</strong></see> <i>PvP</i> (SAM) [29533] [Ability] /// <para>Reduces damage taken by 25% and delivers an attack with a potency of 2,000 every time you suffer damage.</para> /// <para>Duration: 5s</para> /// <para>Additional Effect: Afflicts target with Kuzushi</para> /// <para>Kuzushi Effect: Increases damage you deal target by 25%</para> /// <para>Duration: 4s</para> /// </summary> -HissatsuChiten = 29533, +HissatsuChiten_PvP = 29533, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29535"><strong>Mineuchi</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29535"><strong>Mineuchi</strong></see> <i>PvP</i> (SAM) [29535] [Ability] /// <para>Deals damage to target equal to 10% of their current HP.</para> /// <para>Ignores the effects of Guard when dealing damage.</para> /// <para>Deals damage with a potency of 4,000 to players riding machina and non-player combatants.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 2s</para> /// </summary> -Mineuchi = 29535, +Mineuchi_PvP = 29535, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29536"><strong>Meikyo Shisui</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29536"><strong>Meikyo Shisui</strong></see> <i>PvP</i> (SAM) [29536] [Ability] /// <para>Grants Meikyo Shisui and Midare.</para> /// <para>Meikyo Shisui Effect: Nullifies status afflictions that can be removed by Purify</para> /// <para>Duration: 3s</para> @@ -30712,9 +30712,9 @@ Mineuchi = 29535, /// <para></para> /// <para>※Action changes to Midare Setsugekka while under the effect of Midare.</para> /// </summary> -MeikyoShisui_29536 = 29536, +MeikyoShisui_PvP = 29536, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29537"><strong>Zantetsuken</strong></see> <i>PvP</i> (SAM) +/// <see href="https://garlandtools.org/db/#action/29537"><strong>Zantetsuken</strong></see> <i>PvP</i> (SAM) [29537] [Limit Break] /// <para>Swiftly charges forward, dealing damage to target and all enemies nearby it with a potency of 24,000.</para> /// <para>If target is afflicted with Kuzushi, deals damage equal to 100% of their maximum HP.</para> /// <para>Ignores the effects of Guard when dealing damage.</para> @@ -30723,32 +30723,32 @@ MeikyoShisui_29536 = 29536, /// <para>Gauge Charge Time: 120s</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Zantetsuken = 29537, +Zantetsuken_PvP = 29537, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29538"><strong>Slice</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29538"><strong>Slice</strong></see> <i>PvP</i> (RPR) [29538] [Weaponskill] /// <para>Delivers an attack with a potency of 3,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Slice_29538 = 29538, +Slice_PvP = 29538, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29539"><strong>Waxing Slice</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29539"><strong>Waxing Slice</strong></see> <i>PvP</i> (RPR) [29539] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Combo Action: Slice</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WaxingSlice_29539 = 29539, +WaxingSlice_PvP = 29539, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29540"><strong>Infernal Slice</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29540"><strong>Infernal Slice</strong></see> <i>PvP</i> (RPR) [29540] [Weaponskill] /// <para>Delivers an attack with a potency of 5,000.</para> /// <para>Combo Action: Waxing Slice</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -InfernalSlice_29540 = 29540, +InfernalSlice_PvP = 29540, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29543"><strong>Void Reaping</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29543"><strong>Void Reaping</strong></see> <i>PvP</i> (RPR) [29543] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000.</para> /// <para>Additional Effect: Grants Ripe for Reaping</para> /// <para>Duration: 10s</para> @@ -30758,18 +30758,18 @@ InfernalSlice_29540 = 29540, /// <para>※Infernal Slice Combo changes to Cross Reaping while under the effect of Ripe for Reaping.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -VoidReaping_29543 = 29543, +VoidReaping_PvP = 29543, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29544"><strong>Cross Reaping</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29544"><strong>Cross Reaping</strong></see> <i>PvP</i> (RPR) [29544] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000.</para> /// <para>Can only be executed while under the effect of Enshrouded and Ripe for Reaping.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrossReaping_29544 = 29544, +CrossReaping_PvP = 29544, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29545"><strong>Harvest Moon</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29545"><strong>Harvest Moon</strong></see> <i>PvP</i> (RPR) [29545] [Ability] /// <para>Deals unaspected damage with a potency of 4,000 to target and all enemies nearby it.</para> /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para> /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para> @@ -30777,9 +30777,9 @@ CrossReaping_29544 = 29544, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -HarvestMoon_29545 = 29545, +HarvestMoon_PvP = 29545, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29546"><strong>Plentiful Harvest</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29546"><strong>Plentiful Harvest</strong></see> <i>PvP</i> (RPR) [29546] [Weaponskill] /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para> /// <para>Potency increases up to 24,000 based on your accumulated stacks of Immortal Sacrifice, gained by executing Soul Slice, KOing enemies, or earning assists.</para> /// <para>Additional Effect: Gradually fills your limit gauge</para> @@ -30789,9 +30789,9 @@ HarvestMoon_29545 = 29545, /// <para>Can only be executed while not under the effect of Enshrouded.</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -PlentifulHarvest_29546 = 29546, +PlentifulHarvest_PvP = 29546, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29547"><strong>Grim Swathe</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29547"><strong>Grim Swathe</strong></see> <i>PvP</i> (RPR) [29547] [Ability] /// <para>Summons your avatar to deliver an attack with a potency of 4,000 to all enemies in a cone before you.</para> /// <para>Additional Effect: Grants Soul Reaver</para> /// <para>Duration: 10s</para> @@ -30800,9 +30800,9 @@ PlentifulHarvest_29546 = 29546, /// <para></para> /// <para>※Infernal Slice Combo changes to Guillotine upon execution.</para> /// </summary> -GrimSwathe_29547 = 29547, +GrimSwathe_PvP = 29547, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29548"><strong>Lemure's Slice</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29548"><strong>Lemure's Slice</strong></see> <i>PvP</i> (RPR) [29548] [Ability] /// <para>Delivers an attack with a potency of 4,000 to all enemies in a cone before you.</para> /// <para>Additional Effect: Bind</para> /// <para>Duration: 3s</para> @@ -30810,9 +30810,9 @@ GrimSwathe_29547 = 29547, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -LemuresSlice_29548 = 29548, +LemuresSlice_PvP = 29548, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29549"><strong>Death Warrant</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29549"><strong>Death Warrant</strong></see> <i>PvP</i> (RPR) [29549] [Ability] /// <para>Afflicts target with Death Warrant, causing you to compile damage you deal to that target.</para> /// <para>When effect duration expires, target takes 50% of compiled damage.</para> /// <para>Duration: 7s</para> @@ -30821,9 +30821,9 @@ LemuresSlice_29548 = 29548, /// <para></para> /// <para>※Action changes to Harvest Moon upon execution.</para> /// </summary> -DeathWarrant = 29549, +DeathWarrant_PvP = 29549, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29550"><strong>Hell's Ingress</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29550"><strong>Hell's Ingress</strong></see> <i>PvP</i> (RPR) [29550] [Ability] /// <para>Quickly dash 15 yalms forward.</para> /// <para>Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self</para> /// <para>Duration: 10s</para> @@ -30833,17 +30833,17 @@ DeathWarrant = 29549, /// <para></para> /// <para>※Action changes to Regress upon execution.</para> /// </summary> -HellsIngress_29550 = 29550, +HellsIngress_PvP = 29550, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29551"><strong>Regress</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29551"><strong>Regress</strong></see> <i>PvP</i> (RPR) [29551] [Ability] /// <para>Move instantly to the Hellsgate left behind by you.</para> /// <para>Cannot be executed while bound.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Regress_29551 = 29551, +Regress_PvP = 29551, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29552"><strong>Arcane Crest</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29552"><strong>Arcane Crest</strong></see> <i>PvP</i> (RPR) [29552] [Ability] /// <para>Grants Crest of Time Borrowed to self, creating a barrier that nullifies damage equivalent to a heal of 12,000 potency.</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Increases damage dealt by 10%</para> @@ -30853,9 +30853,9 @@ Regress_29551 = 29551, /// <para>Cure Potency: 6,000</para> /// <para>Duration: 6s</para> /// </summary> -ArcaneCrest_29552 = 29552, +ArcaneCrest_PvP = 29552, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29553"><strong>Tenebrae Lemurum</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29553"><strong>Tenebrae Lemurum</strong></see> <i>PvP</i> (RPR) [29553] [Limit Break] /// <para>Offers your flesh as a vessel to your avatar, gaining 5 stacks of Enshrouded.</para> /// <para>Duration: 20s</para> /// <para>Additional Effect: Afflicts nearby enemies with Hysteria</para> @@ -30869,31 +30869,31 @@ ArcaneCrest_29552 = 29552, /// <para>※Grim Swathe changes to Lemure's Slice while under the effect of Enshrouded.</para> /// <para>※Infernal Slice Combo changes to Void Reaping while under the effect of Enshrouded.</para> /// </summary> -TenebraeLemurum = 29553, +TenebraeLemurum_PvP = 29553, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29554"><strong>Communio</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29554"><strong>Communio</strong></see> <i>PvP</i> (RPR) [29554] [Spell] /// <para>Deals unaspected damage with a potency of 16,000 to target and all enemies nearby it.</para> /// <para>Requires at least one stack of Enshrouded.</para> /// <para>Consumes all stacks of Enshrouded upon execution.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Communio_29554 = 29554, +Communio_PvP = 29554, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29566"><strong>Soul Slice</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/29566"><strong>Soul Slice</strong></see> <i>PvP</i> (RPR) [29566] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000.</para> /// <para>Additional Effect: Grants a stack of Immortal Sacrifice, up to a maximum of 8</para> /// <para>Maximum Charges: 2</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -SoulSlice_29566 = 29566, +SoulSlice_PvP = 29566, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29573"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29573"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System] /// <para>Instantly return to this sanctuary's cozy cabin.</para> /// </summary> -IsleReturn = 29573, +IsleReturn_PvE = 29573, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29649"><strong>Fire</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29649"><strong>Fire</strong></see> <i>PvP</i> (BLM) [29649] [Spell] /// <para>Deals fire damage with a potency of 4,000.</para> /// <para>Requires no cast time when cast under the effect of Umbral Ice.</para> /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para> @@ -30905,9 +30905,9 @@ IsleReturn = 29573, /// <para></para> /// <para>※Action changes to Fire IV while under the effect of Astral Fire II.</para> /// </summary> -Fire_29649 = 29649, +Fire_PvP = 29649, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29650"><strong>Fire IV</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29650"><strong>Fire IV</strong></see> <i>PvP</i> (BLM) [29650] [Spell] /// <para>Deals fire damage with a potency of 6,000.</para> /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30920,9 +30920,9 @@ Fire_29649 = 29649, /// <para>※Action changes to Flare while under the effect of Astral Fire III.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FireIv_29650 = 29650, +FireIv_PvP = 29650, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29651"><strong>Flare</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29651"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29651] [Spell] /// <para>Deals fire damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para> /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30932,9 +30932,9 @@ FireIv_29650 = 29650, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Flare_29651 = 29651, +Flare_PvP = 29651, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29652"><strong>Flare</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29652"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29652] [Spell] /// <para>Deals fire damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para> /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30943,9 +30943,9 @@ Flare_29651 = 29651, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Flare_29652 = 29652, +Flare_PvP_29652 = 29652, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29653"><strong>Blizzard</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29653"><strong>Blizzard</strong></see> <i>PvP</i> (BLM) [29653] [Spell] /// <para>Deals ice damage with a potency of 4,000.</para> /// <para>Requires no cast time when cast under the effect of Astral Fire.</para> /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para> @@ -30957,9 +30957,9 @@ Flare_29652 = 29652, /// <para></para> /// <para>※Action changes to Blizzard IV while under the effect of Umbral Ice II.</para> /// </summary> -Blizzard_29653 = 29653, +Blizzard_PvP = 29653, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29654"><strong>Blizzard IV</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29654"><strong>Blizzard IV</strong></see> <i>PvP</i> (BLM) [29654] [Spell] /// <para>Deals ice damage with a potency of 6,000.</para> /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30972,9 +30972,9 @@ Blizzard_29653 = 29653, /// <para>※Action changes to Freeze while under the effect of Umbral Ice III.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -BlizzardIv_29654 = 29654, +BlizzardIv_PvP = 29654, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29655"><strong>Freeze</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29655"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29655] [Spell] /// <para>Deals ice damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para> /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30984,9 +30984,9 @@ BlizzardIv_29654 = 29654, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Freeze_29655 = 29655, +Freeze_PvP = 29655, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29656"><strong>Freeze</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29656"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29656] [Spell] /// <para>Deals ice damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para> /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para> /// <para>Duration: 15s</para> @@ -30995,26 +30995,26 @@ Freeze_29655 = 29655, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Freeze_29656 = 29656, +Freeze_PvP_29656 = 29656, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29657"><strong>Burst</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29657"><strong>Burst</strong></see> <i>PvP</i> (BLM) [29657] [Spell] /// <para>Deals lightning damage to all nearby enemies with a potency of 16,000.</para> /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 16,000 potency</para> /// <para>Duration: 10s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Burst = 29657, +Burst_PvP = 29657, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29659"><strong>Night Wing</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29659"><strong>Night Wing</strong></see> <i>PvP</i> (BLM) [29659] [Ability] /// <para>Afflicts target and all enemies nearby it with Half-asleep.</para> /// <para>Duration: 3s</para> /// <para>Half-asleep Effect: Targets succumb to Sleep when effect expires</para> /// <para>Duration: 3s</para> /// <para>Targets struck while under the effect of Sleep will take additional damage with a potency of 8,000, and effect will dissipate.</para> /// </summary> -NightWing = 29659, +NightWing_PvP = 29659, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29660"><strong>Aetherial Manipulation</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29660"><strong>Aetherial Manipulation</strong></see> <i>PvP</i> (BLM) [29660] [Ability] /// <para>Rush to a targeted enemy's or party member's location.</para> /// <para>Additional Effect: Grants Swiftcast</para> /// <para>Swiftcast Effect: Next spell can be cast immediately</para> @@ -31022,9 +31022,9 @@ NightWing = 29659, /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -AetherialManipulation_29660 = 29660, +AetherialManipulation_PvP = 29660, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29661"><strong>Superflare</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29661"><strong>Superflare</strong></see> <i>PvP</i> (BLM) [29661] [Ability] /// <para>Deals damage to nearby enemies with a potency of 3,000 up to a maximum of 9,000 for every stack of Astral Warmth or Umbral Freeze they have accumulated.</para> /// <para>Additional Effect: Enemies under the effect of Astral Warmth are afflicted with Burns, dealing fire damage over time</para> /// <para>Potency: 3,000</para> @@ -31037,9 +31037,9 @@ AetherialManipulation_29660 = 29660, /// <para>Duration: 2s</para> /// <para>Maximum Charges: 2</para> /// </summary> -Superflare = 29661, +Superflare_PvP = 29661, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29662"><strong>Soul Resonance</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29662"><strong>Soul Resonance</strong></see> <i>PvP</i> (BLM) [29662] [Limit Break] /// <para>Grants 6 stacks of Soul Resonance, upgrading Fire to Flare and Blizzard to Freeze.</para> /// <para>Duration: 30s</para> /// <para>Additional Effect: Grants Polyglot and Apocatastasis</para> @@ -31051,50 +31051,50 @@ Superflare = 29661, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 60s</para> /// </summary> -SoulResonance = 29662, +SoulResonance_PvP = 29662, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29663"><strong>Paradox</strong></see> <i>PvP</i> (BLM) +/// <see href="https://garlandtools.org/db/#action/29663"><strong>Paradox</strong></see> <i>PvP</i> (BLM) [29663] [Spell] /// <para>Deals unaspected damage with a potency of 8,000.</para> /// <para>Additional Effect: Increases target's stacks of Astral Warmth or Umbral Freeze to maximum</para> /// <para>Duration: 15s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Paradox_29663 = 29663, +Paradox_PvP = 29663, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29664"><strong>Ruin III</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29664"><strong>Ruin III</strong></see> <i>PvP</i> (SMN) [29664] [Spell] /// <para>Deals unaspected damage with a potency of 5,000.</para> /// <para></para> /// <para>※Action changes to Astral Impulse while under the effect of Dreadwyrm Trance.</para> /// <para>※Action changes to Fountain of Fire while under the effect of Firebird Trance.</para> /// </summary> -RuinIii_29664 = 29664, +RuinIii_PvP = 29664, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29665"><strong>Astral Impulse</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29665"><strong>Astral Impulse</strong></see> <i>PvP</i> (SMN) [29665] [Spell] /// <para>Deals unaspected damage with a potency of 7,500.</para> /// <para>Can only be executed while under the effect of Dreadwyrm Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AstralImpulse_29665 = 29665, +AstralImpulse_PvP = 29665, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29666"><strong>Fountain of Fire</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29666"><strong>Fountain of Fire</strong></see> <i>PvP</i> (SMN) [29666] [Spell] /// <para>Deals fire damage with a potency of 5,000.</para> /// <para>Can only be executed while under the effect of Firebird Trance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FountainOfFire_29666 = 29666, +FountainOfFire_PvP = 29666, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29667"><strong>Crimson Cyclone</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29667"><strong>Crimson Cyclone</strong></see> <i>PvP</i> (SMN) [29667] [Spell] /// <para>Rushes forward and delivers a fire attack with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Cannot be executed while bound.</para> /// <para>This action does not share a recast timer with any other actions.</para> /// <para></para> /// <para>※Action changes to Crimson Strike upon execution.</para> /// </summary> -CrimsonCyclone_29667 = 29667, +CrimsonCyclone_PvP = 29667, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29668"><strong>Crimson Strike</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29668"><strong>Crimson Strike</strong></see> <i>PvP</i> (SMN) [29668] [Spell] /// <para>Deals fire damage with a potency of 12,000 to target and all enemies nearby it.</para> /// <para>Combo Action: Crimson Cyclone</para> /// <para>Additional Effect: 5-yalm knockback emanating from first target</para> @@ -31102,9 +31102,9 @@ CrimsonCyclone_29667 = 29667, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -CrimsonStrike_29668 = 29668, +CrimsonStrike_PvP = 29668, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29669"><strong>Slipstream</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29669"><strong>Slipstream</strong></see> <i>PvP</i> (SMN) [29669] [Spell] /// <para>Deals wind damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Creates a Slipstream centered around target, dealing damage to any enemies who enter</para> /// <para>Enemies standing within 5 yalms of the storm's eye take no damage.</para> @@ -31113,30 +31113,30 @@ CrimsonStrike_29668 = 29668, /// <para>Duration: 10s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Slipstream_29669 = 29669, +Slipstream_PvP = 29669, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29670"><strong>Radiant Aegis</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29670"><strong>Radiant Aegis</strong></see> <i>PvP</i> (SMN) [29670] [Ability] /// <para>Creates a barrier around self or target party member that reduces damage taken by 20% and absorbs damage equivalent to a heal of 10,000 potency.</para> /// <para>Duration: 10s</para> /// </summary> -RadiantAegis_29670 = 29670, +RadiantAegis_PvP = 29670, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29671"><strong>Mountain Buster</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29671"><strong>Mountain Buster</strong></see> <i>PvP</i> (SMN) [29671] [Ability] /// <para>Deals earth damage with a potency of 4,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Afflicts first target with Bind, and all remaining targets with Heavy +75%</para> /// <para>Duration: 3s</para> /// <para>Additional Effect: Draws remaining targets in toward first target</para> /// </summary> -MountainBuster_29671 = 29671, +MountainBuster_PvP = 29671, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29672"><strong>Fester</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29672"><strong>Fester</strong></see> <i>PvP</i> (SMN) [29672] [Ability] /// <para>Deals unaspected damage with a potency of 4,000.</para> /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para> /// <para>Maximum Charges: 2</para> /// </summary> -Fester_29672 = 29672, +Fester_PvP = 29672, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29673"><strong>Summon Bahamut</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29673"><strong>Summon Bahamut</strong></see> <i>PvP</i> (SMN) [29673] [Limit Break] /// <para>Enters Dreadwyrm Trance and summons Demi-Bahamut to fight at a designated location.</para> /// <para>Duration: 20s</para> /// <para>Demi-Bahamut will execute Megaflare upon being summoned, then execute Wyrmwave automatically, prioritizing targets with the lowest HP within 30 yalms.</para> @@ -31146,38 +31146,38 @@ Fester_29672 = 29672, /// <para>※Action changes to Enkindle Bahamut upon execution.</para> /// <para>※Ruin III changes to Astral Impulse while under the effect of Dreadwyrm Trance.</para> /// </summary> -SummonBahamut_29673 = 29673, +SummonBahamut_PvP = 29673, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29674"><strong>Enkindle Bahamut</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29674"><strong>Enkindle Bahamut</strong></see> <i>PvP</i> (SMN) [29674] [Ability] /// <para>Orders Demi-Bahamut to execute Akh Morn.</para> /// <para>Akh Morn Effect: Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnkindleBahamut_29674 = 29674, +EnkindleBahamut_PvP = 29674, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29675"><strong>Megaflare</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29675"><strong>Megaflare</strong></see> <i>PvP</i> (SMN) [29675] [Ability] /// <para>Deals unaspected damage with a potency of 18,000 to all nearby enemies.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Megaflare = 29675, +Megaflare_PvP = 29675, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29676"><strong>Wyrmwave</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29676"><strong>Wyrmwave</strong></see> <i>PvP</i> (SMN) [29676] [Spell] /// <para>Deals unaspected damage with a potency of 6,000.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Wyrmwave_29676 = 29676, +Wyrmwave_PvP = 29676, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29677"><strong>Akh Morn</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29677"><strong>Akh Morn</strong></see> <i>PvP</i> (SMN) [29677] [Ability] /// <para>Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -AkhMorn_29677 = 29677, +AkhMorn_PvP = 29677, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29678"><strong>Summon Phoenix</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29678"><strong>Summon Phoenix</strong></see> <i>PvP</i> (SMN) [29678] [Limit Break] /// <para>Enters Firebird Trance and summons Demi-Phoenix to fight at a designated location.</para> /// <para>Duration: 20s</para> /// <para>Demi-Phoenix will execute Everlasting Flight upon being summoned, then execute Scarlet Flame automatically, prioritizing the closest target within 30 yalms.</para> @@ -31187,9 +31187,9 @@ AkhMorn_29677 = 29677, /// <para>※Action changes to Enkindle Phoenix upon execution.</para> /// <para>※Ruin III changes to Fountain of Fire while under the effect of Firebird Trance.</para> /// </summary> -SummonPhoenix_29678 = 29678, +SummonPhoenix_PvP = 29678, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29679"><strong>Enkindle Phoenix</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29679"><strong>Enkindle Phoenix</strong></see> <i>PvP</i> (SMN) [29679] [Ability] /// <para>Orders Demi-Phoenix to execute Revelation.</para> /// <para>Revelation Effect: Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it</para> /// <para>Additional Effect: Damage over time</para> @@ -31198,9 +31198,9 @@ SummonPhoenix_29678 = 29678, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnkindlePhoenix_29679 = 29679, +EnkindlePhoenix_PvP = 29679, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29680"><strong>Everlasting Flight</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29680"><strong>Everlasting Flight</strong></see> <i>PvP</i> (SMN) [29680] [Ability] /// <para>Gradually restores own HP and the HP of all nearby party members.</para> /// <para>Cure Potency: 4,000</para> /// <para>Duration: 15s</para> @@ -31209,18 +31209,18 @@ EnkindlePhoenix_29679 = 29679, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EverlastingFlight_29680 = 29680, +EverlastingFlight_PvP = 29680, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29681"><strong>Scarlet Flame</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29681"><strong>Scarlet Flame</strong></see> <i>PvP</i> (SMN) [29681] [Spell] /// <para>Deals fire damage with a potency of 4,000.</para> /// <para>Additional Effect: Reduces target's damage dealt by 50%</para> /// <para>Duration: 5s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ScarletFlame_29681 = 29681, +ScarletFlame_PvP = 29681, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29682"><strong>Revelation</strong></see> <i>PvP</i> (SMN) +/// <see href="https://garlandtools.org/db/#action/29682"><strong>Revelation</strong></see> <i>PvP</i> (SMN) [29682] [Ability] /// <para>Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Damage over time</para> /// <para>Potency: 3,000</para> @@ -31228,9 +31228,9 @@ ScarletFlame_29681 = 29681, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Revelation_29682 = 29682, +Revelation_PvP = 29682, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29683"><strong>Verstone</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29683"><strong>Verstone</strong></see> <i>PvP</i> (RDM) [29683] [Spell] /// <para>Deals earth damage with a potency of 5,000.</para> /// <para>Additional Effect: Grants Dualcast, allowing next spell to be cast immediately</para> /// <para>Duration: 10s</para> @@ -31240,17 +31240,17 @@ Revelation_29682 = 29682, /// <para>※Action changes to Verfire while under the effect of Black Shift.</para> /// <para>※Action changes to Verthunder III while under the effect of Black Shift and Dualcast.</para> /// </summary> -Verstone_29683 = 29683, +Verstone_PvP = 29683, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29684"><strong>Veraero III</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29684"><strong>Veraero III</strong></see> <i>PvP</i> (RDM) [29684] [Spell] /// <para>Deals wind damage with a potency of 5,000.</para> /// <para>Can only be executed while under the effect of White Shift and Dualcast.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -VeraeroIii_29684 = 29684, +VeraeroIii_PvP = 29684, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29685"><strong>Verholy</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29685"><strong>Verholy</strong></see> <i>PvP</i> (RDM) [29685] [Spell] /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para> /// <para>Additional Effect: Restores own HP</para> /// <para>Cure Potency: 8,000</para> @@ -31260,9 +31260,9 @@ VeraeroIii_29684 = 29684, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Verholy_29685 = 29685, +Verholy_PvP = 29685, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29686"><strong>Verfire</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29686"><strong>Verfire</strong></see> <i>PvP</i> (RDM) [29686] [Spell] /// <para>Deals fire damage with a potency of 5,000.</para> /// <para>Additional Effect: Grants Dualcast, allowing next spell to be cast immediately</para> /// <para>Duration: 10s</para> @@ -31270,25 +31270,25 @@ Verholy_29685 = 29685, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Verfire_29686 = 29686, +Verfire_PvP = 29686, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29687"><strong>Verthunder III</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29687"><strong>Verthunder III</strong></see> <i>PvP</i> (RDM) [29687] [Spell] /// <para>Deals lightning damage with a potency of 5,000.</para> /// <para>Can only be executed while under the effect of Black Shift and Dualcast.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -VerthunderIii_29687 = 29687, +VerthunderIii_PvP = 29687, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29688"><strong>Verflare</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29688"><strong>Verflare</strong></see> <i>PvP</i> (RDM) [29688] [Spell] /// <para>Deals fire damage with a potency of 12,000 to target and all enemies nearby it.</para> /// <para>Can only be executed while under the effect of Black Shift and Vermilion Radiance.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Verflare_29688 = 29688, +Verflare_PvP = 29688, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29689"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29689"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29689] [Weaponskill] /// <para>Deals unaspected damage with a potency of 6,000.</para> /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 10s</para> @@ -31299,9 +31299,9 @@ Verflare_29688 = 29688, /// <para></para> /// <para>※Action changes to Enchanted Zwerchhau upon execution.</para> /// </summary> -EnchantedRiposte_29689 = 29689, +EnchantedRiposte_PvP = 29689, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29690"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29690"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29690] [Weaponskill] /// <para>Deals unaspected damage with a potency of 7,000.</para> /// <para>Combo Action: Enchanted Riposte</para> /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> @@ -31314,9 +31314,9 @@ EnchantedRiposte_29689 = 29689, /// <para>※Action changes to Enchanted Redoublement upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedZwerchhau_29690 = 29690, +EnchantedZwerchhau_PvP = 29690, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29691"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29691"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29691] [Weaponskill] /// <para>Deals unaspected damage with a potency of 8,000.</para> /// <para>Combo Action: Enchanted Zwerchhau</para> /// <para>Additional Effect: Grants Vermilion Radiance</para> @@ -31332,9 +31332,9 @@ EnchantedZwerchhau_29690 = 29690, /// <para>※Action changes to Verflare while under the effect of Black Shift and Vermilion Radiance.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedRedoublement_29691 = 29691, +EnchantedRedoublement_PvP = 29691, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29692"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29692"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29692] [Weaponskill] /// <para>Deals unaspected damage with a potency of 6,000.</para> /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> /// <para>Duration: 10s</para> @@ -31345,9 +31345,9 @@ EnchantedRedoublement_29691 = 29691, /// <para></para> /// <para>※Action changes to Enchanted Zwerchhau upon execution.</para> /// </summary> -EnchantedRiposte_29692 = 29692, +EnchantedRiposte_PvP_29692 = 29692, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29693"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29693"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29693] [Weaponskill] /// <para>Deals unaspected damage with a potency of 7,000.</para> /// <para>Combo Action: Enchanted Riposte</para> /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para> @@ -31360,9 +31360,9 @@ EnchantedRiposte_29692 = 29692, /// <para>※Action changes to Enchanted Redoublement upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedZwerchhau_29693 = 29693, +EnchantedZwerchhau_PvP_29693 = 29693, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29694"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29694"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29694] [Weaponskill] /// <para>Deals unaspected damage with a potency of 8,000.</para> /// <para>Combo Action: Enchanted Zwerchhau</para> /// <para>Additional Effect: Grants Vermilion Radiance</para> @@ -31378,9 +31378,9 @@ EnchantedZwerchhau_29693 = 29693, /// <para>※Action changes to Verflare while under the effect of Black Shift and Vermilion Radiance.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -EnchantedRedoublement_29694 = 29694, +EnchantedRedoublement_PvP_29694 = 29694, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29695"><strong>Resolution</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29695"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29695] [Weaponskill] /// <para>Deals unaspected damage with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>White Shift Effect: Silence</para> /// <para>Duration: 2s</para> @@ -31388,9 +31388,9 @@ EnchantedRedoublement_29694 = 29694, /// <para>Duration: 3s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Resolution_29695 = 29695, +Resolution_PvP = 29695, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29696"><strong>Resolution</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29696"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29696] [Weaponskill] /// <para>Deals unaspected damage with a potency of 8,000 to all enemies in a straight line before you.</para> /// <para>White Shift Effect: Silence</para> /// <para>Duration: 2s</para> @@ -31398,9 +31398,9 @@ Resolution_29695 = 29695, /// <para>Duration: 3s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -Resolution_29696 = 29696, +Resolution_PvP_29696 = 29696, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29697"><strong>Magick Barrier</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29697"><strong>Magick Barrier</strong></see> <i>PvP</i> (RDM) [29697] [Ability] /// <para>Reduces damage taken by self and nearby party members by 10%, while increasing HP recovered via healing actions by 10%.</para> /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of White Shift.</para> @@ -31408,9 +31408,9 @@ Resolution_29696 = 29696, /// <para></para> /// <para>※Action changes to Frazzle while under the effect of Black Shift.</para> /// </summary> -MagickBarrier_29697 = 29697, +MagickBarrier_PvP = 29697, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29698"><strong>Frazzle</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29698"><strong>Frazzle</strong></see> <i>PvP</i> (RDM) [29698] [Ability] /// <para>Increases damage taken by nearby enemies by 10%, while reducing HP recovered via healing actions by 10%.</para> /// <para>Duration: 10s</para> /// <para>Can only be executed while under the effect of Black Shift.</para> @@ -31418,9 +31418,9 @@ MagickBarrier_29697 = 29697, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Frazzle = 29698, +Frazzle_PvP = 29698, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29699"><strong>Corps-a-corps</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29699"><strong>Corps-a-corps</strong></see> <i>PvP</i> (RDM) [29699] [Ability] /// <para>Rushes target and delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: Afflicts target with Monomachy</para> /// <para>Monomachy Effect: Increases damage dealt to target by 10% while lowering damage taken from target by 10%</para> @@ -31428,9 +31428,9 @@ Frazzle = 29698, /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Corpsacorps_29699 = 29699, +Corpsacorps_PvP = 29699, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29700"><strong>Displacement</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29700"><strong>Displacement</strong></see> <i>PvP</i> (RDM) [29700] [Ability] /// <para>Delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: 15-yalm backstep</para> /// <para>Additional Effect: Grants Manafication</para> @@ -31439,17 +31439,17 @@ Corpsacorps_29699 = 29699, /// <para>Maximum Charges: 2</para> /// <para>Cannot be executed while bound.</para> /// </summary> -Displacement_29700 = 29700, +Displacement_PvP = 29700, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29702"><strong>Black Shift</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29702"><strong>Black Shift</strong></see> <i>PvP</i> (RDM) [29702] [Ability] /// <para>Grants Black Shift, altering the effects of several actions.</para> /// <para>Can only be executed while under the effect of White Shift.</para> /// <para></para> /// <para>※Action changes to White Shift upon execution.</para> /// </summary> -BlackShift = 29702, +BlackShift_PvP = 29702, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29703"><strong>White Shift</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29703"><strong>White Shift</strong></see> <i>PvP</i> (RDM) [29703] [Ability] /// <para>Grants White Shift, altering the effects of several actions.</para> /// <para>Can only be executed while under the effect of Black Shift.</para> /// <para>Activates automatically when class is changed to red mage.</para> @@ -31457,9 +31457,9 @@ BlackShift = 29702, /// <para>※Action changes to Black Shift upon execution.</para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -WhiteShift = 29703, +WhiteShift_PvP = 29703, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29704"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29704"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29704] [Limit Break] /// <para>Emblazons a grand cross on the ground beneath a party member or enemy, restoring HP of party members within range while damaging enemies.</para> /// <para>Cure Potency: 8,000</para> /// <para>Damage Potency: 8,000</para> @@ -31469,9 +31469,9 @@ WhiteShift = 29703, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 90s</para> /// </summary> -SouthernCross = 29704, +SouthernCross_PvP = 29704, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29705"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) +/// <see href="https://garlandtools.org/db/#action/29705"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29705] [Limit Break] /// <para>Emblazons a grand cross on the ground beneath a party member or enemy, restoring HP of party members within range while damaging enemies.</para> /// <para>Cure Potency: 8,000</para> /// <para>Damage Potency: 8,000</para> @@ -31481,9 +31481,9 @@ SouthernCross = 29704, /// <para>Can only be executed when the limit gauge is full.</para> /// <para>Gauge Charge Time: 90s</para> /// </summary> -SouthernCross_29705 = 29705, +SouthernCross_PvP_29705 = 29705, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29707"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29707"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29707] [Weaponskill] /// <para>Rushes target and delivers an attack with a potency of 4,000.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 2s</para> @@ -31492,37 +31492,37 @@ SouthernCross_29705 = 29705, /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -FleetingRaiju_29707 = 29707, +FleetingRaiju_PvP = 29707, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29708"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) +/// <see href="https://garlandtools.org/db/#action/29708"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29708] [Weaponskill] /// <para></para> /// </summary> -FleetingRaiju_29708 = 29708, +FleetingRaiju_PvP_29708 = 29708, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29711"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29711"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability] /// <para>Restores own HP.</para> /// <para>Cure Potency: 15,000</para> /// </summary> -Recuperate = 29711, +Recuperate_PvP = 29711, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29718"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29718"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event] /// <para>Unleashes an energetic blast of lightning.</para> /// </summary> -ElectricFlux = 29718, +ElectricFlux_PvE = 29718, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29719"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29719"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount] /// <para>Unleashes an energetic blast of lightning.</para> /// <para>※Has no effect in battle.</para> /// </summary> -ElectricFlux_29719 = 29719, +ElectricFlux_PvE_29719 = 29719, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29720"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/29720"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount] /// <para>Weave a miraculous illusion of seasonal whimsy.</para> /// <para>※Has no effect in battle.</para> /// </summary> -PresentMirage = 29720, +PresentMirage_PvE = 29720, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29729"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/29729"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 14,000</para> /// <para>Additional Effect: Regen</para> @@ -31531,69 +31531,69 @@ PresentMirage = 29720, /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para> /// <para>This action is not affected by attributes.</para> /// </summary> -VariantCure = 29729, +VariantCure_PvE = 29729, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29730"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) +/// <see href="https://garlandtools.org/db/#action/29730"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability] /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para> /// <para>Additional Effect: Stun</para> /// <para>Duration: 4s</para> /// <para>Additional Effect: Significantly increases enmity generation</para> /// <para>Duration: 60s</para> /// </summary> -VariantUltimatum = 29730, +VariantUltimatum_PvE = 29730, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29731"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/29731"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell] /// <para>Resurrects target to a weakened state.</para> /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para> /// </summary> -VariantRaise = 29731, +VariantRaise_PvE = 29731, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29732"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) +/// <see href="https://garlandtools.org/db/#action/29732"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability] /// <para>Deals damage over time to target and all enemies nearby it.</para> /// <para>Potency: 2,040</para> /// <para>Duration: 30s</para> /// <para>This action is not affected by attributes or enhancing effects.</para> /// </summary> -VariantSpiritDart = 29732, +VariantSpiritDart_PvE = 29732, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29733"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/29733"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability] /// <para>Reduces damage taken by 20%.</para> /// <para>Duration: 60s</para> /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para> /// <para>Duration: 8s</para> /// </summary> -VariantRampart = 29733, +VariantRampart_PvE = 29733, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29734"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) +/// <see href="https://garlandtools.org/db/#action/29734"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell] /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para> /// </summary> -VariantRaiseIi = 29734, +VariantRaiseIi_PvE = 29734, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29735"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) +/// <see href="https://garlandtools.org/db/#action/29735"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability] /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para> /// <para>Duration: 5s</para> /// <para>Movement speed is reduced by 50% for the duration of this effect.</para> /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para> /// </summary> -Guard_29735 = 29735, +Guard_PvP_29735 = 29735, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29736"><strong>Chaotic Cyclone</strong></see> <i>PvP</i> (WAR) +/// <see href="https://garlandtools.org/db/#action/29736"><strong>Chaotic Cyclone</strong></see> <i>PvP</i> (WAR) [29736] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para> /// <para>Inner Release Potency: 16,000</para> /// <para>Can only be executed while under the effect of Nascent Chaos.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -ChaoticCyclone_29736 = 29736, +ChaoticCyclone_PvP = 29736, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29737"><strong>Quietus</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29737"><strong>Quietus</strong></see> <i>PvP</i> (DRK) [29737] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para> /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para> /// <para>This weaponskill does not share a recast timer with any other actions.</para> /// </summary> -Quietus_29737 = 29737, +Quietus_PvP = 29737, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29738"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/29738"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29738] [Ability] /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a straight line before you.</para> /// <para>Consumes 20% of your maximum HP when executed.</para> /// <para>Additional Effect: Grants Blackblood</para> @@ -31602,224 +31602,224 @@ Quietus_29737 = 29737, /// <para></para> /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para> /// </summary> -Shadowbringer_29738 = 29738, +Shadowbringer_PvP_29738 = 29738, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29783"><strong>the Bole</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29783"><strong>the Bole</strong></see> <i>PvP</i> (AST) [29783] [Ability] /// <para>Reduces damage taken by self or target and nearby party members by 10%.</para> /// <para>Duration: 15s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheBole_29783 = 29783, +TheBole_PvP = 29783, /// <summary> -/// <see href="https://garlandtools.org/db/#action/29784"><strong>the Arrow</strong></see> <i>PvP</i> (AST) +/// <see href="https://garlandtools.org/db/#action/29784"><strong>the Arrow</strong></see> <i>PvP</i> (AST) [29784] [Ability] /// <para>Reduces weaponskill cast time and recast time, as well as spell cast time and recast time for self or target and nearby party members by 10%, while also increasing movement speed by 25%.</para> /// <para>Duration: 15s</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -TheArrow_29784 = 29784, +TheArrow_PvP = 29784, /// <summary> -/// <see href="https://garlandtools.org/db/#action/30868"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/30868"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] [] /// <para>Dance to and fro with your umbrella, ella, ella.</para> /// <para>※Has no effect in battle.</para> /// </summary> -UmbrellaDance = 30868, +UmbrellaDance_PvE = 30868, /// <summary> -/// <see href="https://garlandtools.org/db/#action/30869"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/30869"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] [] /// <para>Put out your hand and check for rain.</para> /// <para>※Has no effect in battle.</para> /// </summary> -RainCheck = 30869, +RainCheck_PvE = 30869, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31116"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31116"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event] /// <para>Emits a cheerful beat to inspire happy hopping.</para> /// </summary> -Hopstep = 31116, +Hopstep_PvE = 31116, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31117"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31117"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount] /// <para>Emits a cheerful beat to inspire happy hopping.</para> /// <para>※Has no effect in battle.</para> /// </summary> -Hopstep_31117 = 31117, +Hopstep_PvE_31117 = 31117, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31314"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31314"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System] /// <para>Movement speed is increased.</para> /// <para>Duration: 20s</para> /// </summary> -IsleSprint = 31314, +IsleSprint_PvE = 31314, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31393"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31393"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill] /// <para></para> /// </summary> -GentlemanlySmash = 31393, +GentlemanlySmash_PvE = 31393, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31394"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31394"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill] /// <para></para> /// </summary> -GentlemanlyThrust = 31394, +GentlemanlyThrust_PvE = 31394, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31395"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31395"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill] /// <para></para> /// </summary> -RageOfTheGentleman = 31395, +RageOfTheGentleman_PvE = 31395, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31396"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31396"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability] /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para> /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para> /// </summary> -ManderdoubleLariat = 31396, +ManderdoubleLariat_PvE = 31396, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31397"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31397"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability] /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para> /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para> /// </summary> -MandervilleDropkick = 31397, +MandervilleDropkick_PvE = 31397, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31398"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31398"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability] /// <para>Movement speed is increased in a gentlemanly fashion.</para> /// <para>Duration: 15s</para> /// </summary> -MandervilleSprint = 31398, +MandervilleSprint_PvE = 31398, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31399"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31399"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill] /// <para>Execute a powerful gentlemanly technique upon your target.</para> /// </summary> -LimitBreak = 31399, +LimitBreak_PvE = 31399, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31472"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31472"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special] /// <para>Emerge from the shadows, feigning great rancor.</para> /// </summary> -Frighten = 31472, +Frighten_PvE = 31472, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31785"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31785"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability] /// <para>Delivers a jumping attack with a potency of 150.</para> /// </summary> -Engravement = 31785, +Engravement_PvE = 31785, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31786"><strong>Slice</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31786"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill] /// <para></para> /// </summary> -Slice_31786 = 31786, +Slice_PvE_31786 = 31786, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31787"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31787"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill] /// <para></para> /// </summary> -WaxingSlice_31787 = 31787, +WaxingSlice_PvE_31787 = 31787, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31788"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31788"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill] /// <para></para> /// </summary> -InfernalSlice_31788 = 31788, +InfernalSlice_PvE_31788 = 31788, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31789"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31789"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill] /// <para></para> /// </summary> -SpinningScythe_31789 = 31789, +SpinningScythe_PvE_31789 = 31789, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31790"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31790"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill] /// <para></para> /// </summary> -NightmareScythe_31790 = 31790, +NightmareScythe_PvE_31790 = 31790, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31792"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31792"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill] /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para> /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para> /// <para>Duration: 30s</para> /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para> /// </summary> -MarkOfTheHarvest = 31792, +MarkOfTheHarvest_PvE = 31792, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31793"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31793"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability] /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para> /// <para>Duration: 5s</para> /// <para></para> /// </summary> -ArcaneCrest_31793 = 31793, +ArcaneCrest_PvE_31793 = 31793, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31794"><strong>Communio</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31794"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para> /// </summary> -Communio_31794 = 31794, +Communio_PvE_31794 = 31794, /// <summary> -/// <see href="https://garlandtools.org/db/#action/31929"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/31929"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability] /// <para></para> /// </summary> -MandervilleStep = 31929, +MandervilleStep_PvE = 31929, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32065"><strong>Release Iron Will</strong></see> <i>PvE</i> (GLA PLD) +/// <see href="https://garlandtools.org/db/#action/32065"><strong>Release Iron Will</strong></see> <i>PvE</i> (GLA PLD) [32065] [Ability] /// <para>Cancels the effect of Iron Will.</para> /// </summary> -ReleaseIronWill = 32065, +ReleaseIronWill_PvE = 32065, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32066"><strong>Release Defiance</strong></see> <i>PvE</i> (MRD WAR) +/// <see href="https://garlandtools.org/db/#action/32066"><strong>Release Defiance</strong></see> <i>PvE</i> (MRD WAR) [32066] [Ability] /// <para>Cancels the effect of Defiance.</para> /// </summary> -ReleaseDefiance = 32066, +ReleaseDefiance_PvE = 32066, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32067"><strong>Release Grit</strong></see> <i>PvE</i> (DRK) +/// <see href="https://garlandtools.org/db/#action/32067"><strong>Release Grit</strong></see> <i>PvE</i> (DRK) [32067] [Ability] /// <para>Cancels the effect of Grit.</para> /// </summary> -ReleaseGrit = 32067, +ReleaseGrit_PvE = 32067, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32068"><strong>Release Royal Guard</strong></see> <i>PvE</i> (GNB) +/// <see href="https://garlandtools.org/db/#action/32068"><strong>Release Royal Guard</strong></see> <i>PvE</i> (GNB) [32068] [Ability] /// <para>Cancels the effect of Royal Guard.</para> /// </summary> -ReleaseRoyalGuard = 32068, +ReleaseRoyalGuard_PvE = 32068, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32542"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/32542"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] [] /// <para></para> /// </summary> -DemicloneGenerator = 32542, +DemicloneGenerator_PvE = 32542, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32781"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/32781"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special] /// <para>Deals damage to target.</para> /// </summary> -Rotosmash = 32781, +Rotosmash_PvE = 32781, /// <summary> -/// <see href="https://garlandtools.org/db/#action/32782"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/32782"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special] /// <para>Deals damage to nearby enemies while increasing damage taken.</para> /// </summary> -WreckingBall = 32782, +WreckingBall_PvE = 32782, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33013"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/33013"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability] /// <para>Converts a portion of physical damage dealt into HP.</para> /// <para>Duration: 20s</para> /// </summary> -Bloodbath_33013 = 33013, +Bloodbath_PvE_33013 = 33013, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33215"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/33215"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [33215] [] /// <para></para> /// </summary> -SingleTechnicalFinish_33215 = 33215, +SingleTechnicalFinish_PvE_33215 = 33215, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33216"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/33216"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [33216] [] /// <para></para> /// </summary> -DoubleTechnicalFinish_33216 = 33216, +DoubleTechnicalFinish_PvE_33216 = 33216, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33217"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/33217"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [33217] [] /// <para></para> /// </summary> -TripleTechnicalFinish_33217 = 33217, +TripleTechnicalFinish_PvE_33217 = 33217, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33218"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) +/// <see href="https://garlandtools.org/db/#action/33218"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [33218] [] /// <para></para> /// </summary> -QuadrupleTechnicalFinish_33218 = 33218, +QuadrupleTechnicalFinish_PvE_33218 = 33218, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33268"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/33268"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event] /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para> /// </summary> -EggSurprise = 33268, +EggSurprise_PvE = 33268, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33269"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/33269"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount] /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para> /// <para>※Has no effect in battle.</para> /// </summary> -EggSurprise_33269 = 33269, +EggSurprise_PvE_33269 = 33269, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33862"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) +/// <see href="https://garlandtools.org/db/#action/33862"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell] /// <para>Restores target's HP.</para> /// <para>Cure Potency: 16,800</para> /// <para>Additional Effect: Regen</para> @@ -31828,77 +31828,77 @@ EggSurprise_33269 = 33269, /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para> /// <para>This action is not affected by attributes.</para> /// </summary> -VariantCure_33862 = 33862, +VariantCure_PvE_33862 = 33862, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33863"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) +/// <see href="https://garlandtools.org/db/#action/33863"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability] /// <para>Deals damage over time to target and all enemies nearby it.</para> /// <para>Potency: 2,460</para> /// <para>Duration: 30s</para> /// <para>This action is not affected by attributes or enhancing effects.</para> /// </summary> -VariantSpiritDart_33863 = 33863, +VariantSpiritDart_PvE_33863 = 33863, /// <summary> -/// <see href="https://garlandtools.org/db/#action/33864"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) +/// <see href="https://garlandtools.org/db/#action/33864"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability] /// <para>Reduces damage taken by 20%.</para> /// <para>Duration: 60s</para> /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para> /// <para>Duration: 8s</para> /// </summary> -VariantRampart_33864 = 33864, +VariantRampart_PvE_33864 = 33864, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34563"><strong>Goblin Punch</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34563"><strong>Goblin Punch</strong></see> <i>PvE</i> (BLU) [34563] [Spell] /// <para>Deals physical damage with a potency of 120.</para> /// <para>220 when executed in front of a target.</para> /// <para>Potency is increased to 220 when you are under the effect of Mighty Guard.</para> /// <para>320 when executed in front of a target while you are under the effect of Mighty Guard.</para> /// </summary> -GoblinPunch = 34563, +GoblinPunch_PvE = 34563, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34564"><strong>Right Round</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34564"><strong>Right Round</strong></see> <i>PvE</i> (BLU) [34564] [Spell] /// <para>Deals physical damage with a potency of 110 to all nearby enemies.</para> /// <para>Additional Effect: 10-yalm knockback to all enemies and party members in range</para> /// <para>Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para> /// </summary> -RightRound = 34564, +RightRound_PvE = 34564, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34565"><strong>Schiltron</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34565"><strong>Schiltron</strong></see> <i>PvE</i> (BLU) [34565] [Spell] /// <para>Counters enemies with unaspected damage every time you suffer physical damage.</para> /// <para>Counter Potency: 50</para> /// <para>Duration: 15s</para> /// <para>Potency is increased to 100 when you are under the effect of Aetheric Mimicry: Tank.</para> /// <para>Effect cannot be stacked with Veil of the Whorl or Ice Spikes.</para> /// </summary> -Schiltron = 34565, +Schiltron_PvE = 34565, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34566"><strong>Rehydration</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34566"><strong>Rehydration</strong></see> <i>PvE</i> (BLU) [34566] [Spell] /// <para>Restores own HP.</para> /// <para>Cure Potency: 600</para> /// </summary> -Rehydration = 34566, +Rehydration_PvE = 34566, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34567"><strong>Breath of Magic</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34567"><strong>Breath of Magic</strong></see> <i>PvE</i> (BLU) [34567] [Spell] /// <para>Deals unaspected damage over time with a potency of 120 to all enemies in a cone before you.</para> /// <para>Duration: 60s</para> /// <para>Only one effect inflicted by this action can be active at a time.</para> /// </summary> -BreathOfMagic = 34567, +BreathOfMagic_PvE = 34567, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34568"><strong>Wild Rage</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34568"><strong>Wild Rage</strong></see> <i>PvE</i> (BLU) [34568] [Spell] /// <para>Deals physical damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Consumes 50% of your maximum HP when executed.</para> /// </summary> -WildRage = 34568, +WildRage_PvE = 34568, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34569"><strong>Peat Pelt</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34569"><strong>Peat Pelt</strong></see> <i>PvE</i> (BLU) [34569] [Spell] /// <para>Deals earth damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Afflicts target with Begrimed</para> /// <para>Begrimed Effect: Earth damage over time</para> /// <para>Potency: 10</para> /// <para>Duration: 9s</para> /// </summary> -PeatPelt = 34569, +PeatPelt_PvE = 34569, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34570"><strong>Deep Clean</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34570"><strong>Deep Clean</strong></see> <i>PvE</i> (BLU) [34570] [Spell] /// <para>Deals physical damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants one stack of Spick-and-span for each enemy afflicted with Begrimed. The Begrimed effect is also removed.</para> /// <para>Maximum Stacks: 6</para> @@ -31908,42 +31908,42 @@ PeatPelt = 34569, /// <para>Duration: 15s</para> /// <para>Additional stacks of Spick-and-span accumulated while the effect is active will not affect duration.</para> /// </summary> -DeepClean = 34570, +DeepClean_PvE = 34570, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34571"><strong>Ruby Dynamics</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34571"><strong>Ruby Dynamics</strong></see> <i>PvE</i> (BLU) [34571] [Spell] /// <para>Deals physical damage with a potency of 220 to all enemies before you.</para> /// <para>Shares a recast timer with Chelonian Gate and The Rose of Destruction.</para> /// </summary> -RubyDynamics = 34571, +RubyDynamics_PvE = 34571, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34572"><strong>Divination Rune</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34572"><strong>Divination Rune</strong></see> <i>PvE</i> (BLU) [34572] [Spell] /// <para>Deals unaspected damage with a potency of 100 to all enemies in a cone before you.</para> /// <para>Additional Effect: Restores MP</para> /// </summary> -DivinationRune = 34572, +DivinationRune_PvE = 34572, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34573"><strong>Dimensional Shift</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34573"><strong>Dimensional Shift</strong></see> <i>PvE</i> (BLU) [34573] [Spell] /// <para>Delivers an attack to all nearby enemies dealing damage equal to 30% of their current HP.</para> /// <para>Has no effect on enemies whose level is higher than your own.</para> /// </summary> -DimensionalShift = 34573, +DimensionalShift_PvE = 34573, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34574"><strong>Conviction Marcato</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34574"><strong>Conviction Marcato</strong></see> <i>PvE</i> (BLU) [34574] [Spell] /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Potency is increased to 440 when you are under the effect of Winged Redemption.</para> /// </summary> -ConvictionMarcato = 34574, +ConvictionMarcato_PvE = 34574, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34575"><strong>Force Field</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34575"><strong>Force Field</strong></see> <i>PvE</i> (BLU) [34575] [Spell] /// <para>Grants either Physical Vulnerability Down or Magic Vulnerability Down.</para> /// <para>Duration: 10s</para> /// <para>Physical Vulnerability Down Effect: Reduces physical damage taken by 50%</para> /// <para>Magic Vulnerability Down Effect: Reduces magic damage taken by 50%</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -ForceField = 34575, +ForceField_PvE = 34575, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34576"><strong>Winged Reprobation</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34576"><strong>Winged Reprobation</strong></see> <i>PvE</i> (BLU) [34576] [Spell] /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Grants one stack of Winged Reprobation and resets this action's recast timer</para> /// <para>Maximum Stacks: 4</para> @@ -31953,65 +31953,65 @@ ForceField = 34575, /// <para>Duration: 10s</para> /// <para>This action does not share a recast timer with any other actions.</para> /// </summary> -WingedReprobation = 34576, +WingedReprobation_PvE = 34576, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34577"><strong>Laser Eye</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34577"><strong>Laser Eye</strong></see> <i>PvE</i> (BLU) [34577] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: 5-yalm knockback to all enemies within 8 yalms of target</para> /// </summary> -LaserEye = 34577, +LaserEye_PvE = 34577, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34578"><strong>Candy Cane</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34578"><strong>Candy Cane</strong></see> <i>PvE</i> (BLU) [34578] [Spell] /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Additional Effect: Lowers strength and dexterity attributes of target by 10%</para> /// <para>Duration: 10s</para> /// <para>Additional Effect: Restores 10% of maximum MP</para> /// <para>Shares a recast timer with Magic Hammer.</para> /// </summary> -CandyCane = 34578, +CandyCane_PvE = 34578, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34579"><strong>Mortal Flame</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34579"><strong>Mortal Flame</strong></see> <i>PvE</i> (BLU) [34579] [Spell] /// <para>Deals fire damage over time with a potency of 40.</para> /// <para>Only one effect inflicted by this action can be active at a time.</para> /// <para>Has no effect on targets outside of combat.</para> /// <para>Effect ends upon target leaving combat.</para> /// </summary> -MortalFlame = 34579, +MortalFlame_PvE = 34579, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34580"><strong>Sea Shanty</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34580"><strong>Sea Shanty</strong></see> <i>PvE</i> (BLU) [34580] [Ability] /// <para>Deals water damage with a potency of 500 to all nearby enemies.</para> /// <para>Additional Effect: Potency increases to 1,000 during rain, showers, and thunderstorms</para> /// </summary> -SeaShanty = 34580, +SeaShanty_PvE = 34580, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34581"><strong>Apokalypsis</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34581"><strong>Apokalypsis</strong></see> <i>PvE</i> (BLU) [34581] [Ability] /// <para>Delivers damage over time with a potency of 140 to all enemies in a straight line before you.</para> /// <para>Duration: 10s</para> /// <para>Effect ends upon using another action or moving (including facing a different direction).</para> /// <para>Cancels auto-attack upon execution.</para> /// <para>Shares a recast timer with Being Mortal.</para> /// </summary> -Apokalypsis = 34581, +Apokalypsis_PvE = 34581, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34582"><strong>Being Mortal</strong></see> <i>PvE</i> (BLU) +/// <see href="https://garlandtools.org/db/#action/34582"><strong>Being Mortal</strong></see> <i>PvE</i> (BLU) [34582] [Ability] /// <para>Deals unaspected damage to all nearby enemies with a potency of 800 for the first enemy, and 50% less for all remaining enemies.</para> /// <para>Shares a recast timer with Apokalypsis.</para> /// </summary> -BeingMortal = 34582, +BeingMortal_PvE = 34582, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34738"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) +/// <see href="https://garlandtools.org/db/#action/34738"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount] /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para> /// <para>※Has no effect in battle.</para> /// </summary> -AFlameReborn = 34738, +AFlameReborn_PvE = 34738, /// <summary> -/// <see href="https://garlandtools.org/db/#action/34786"><strong>Guillotine</strong></see> <i>PvP</i> (RPR) +/// <see href="https://garlandtools.org/db/#action/34786"><strong>Guillotine</strong></see> <i>PvP</i> (RPR) [34786] [Weaponskill] /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para> /// <para>Can only be executed while under the effect of Soul Reaver.</para> /// <para></para> /// <para>※This action cannot be assigned to a hotbar.</para> /// </summary> -Guillotine_34786 = 34786, +Guillotine_PvP = 34786, /// <summary> @@ -32079,4 +32079,21183 @@ LimitBreak_15 = 15, /// </summary> Artillery = 17, + + public static IBaseAction Create1() +{ + IBaseAction action = new BaseAction(ActionID.KeyItem_PvE); + ModifyKeyItem_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event] +/// </summary> +static partial void ModifyKeyItem_1(ref IBaseAction action); +public static IBaseAction Create2() +{ + IBaseAction action = new BaseAction(ActionID.Interaction_PvE); + ModifyInteraction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event] +/// </summary> +static partial void ModifyInteraction_2(ref IBaseAction action); +public static IBaseAction Create3() +{ + IBaseAction action = new BaseAction(ActionID.Sprint_PvE); + ModifySprint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System] +/// </summary> +static partial void ModifySprint_3(ref IBaseAction action); +public static IBaseAction Create4() +{ + IBaseAction action = new BaseAction(ActionID.Mount_PvE); + ModifyMount_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item] +/// </summary> +static partial void ModifyMount_4(ref IBaseAction action); +public static IBaseAction Create5() +{ + IBaseAction action = new BaseAction(ActionID.Teleport_PvE); + ModifyTeleport_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System] +/// </summary> +static partial void ModifyTeleport_5(ref IBaseAction action); +public static IBaseAction Create6() +{ + IBaseAction action = new BaseAction(ActionID.Return_PvE); + ModifyReturn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System] +/// </summary> +static partial void ModifyReturn_6(ref IBaseAction action); +public static IBaseAction Create7() +{ + IBaseAction action = new BaseAction(ActionID.Attack_PvE); + ModifyAttack_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack] +/// </summary> +static partial void ModifyAttack_7(ref IBaseAction action); +public static IBaseAction Create9() +{ + IBaseAction action = new BaseAction(ActionID.FastBlade_PvE); + ModifyFastBlade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9"><strong>Fast Blade</strong></see> <i>PvE</i> (GLA PLD) [9] [Weaponskill] +/// </summary> +static partial void ModifyFastBlade_9(ref IBaseAction action); +public static IBaseAction Create15() +{ + IBaseAction action = new BaseAction(ActionID.RiotBlade_PvE); + ModifyRiotBlade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15"><strong>Riot Blade</strong></see> <i>PvE</i> (GLA PLD) [15] [Weaponskill] +/// </summary> +static partial void ModifyRiotBlade_15(ref IBaseAction action); +public static IBaseAction Create16() +{ + IBaseAction action = new BaseAction(ActionID.ShieldBash_PvE); + ModifyShieldBash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16"><strong>Shield Bash</strong></see> <i>PvE</i> (GLA PLD) [16] [Weaponskill] +/// </summary> +static partial void ModifyShieldBash_16(ref IBaseAction action); +public static IBaseAction Create17() +{ + IBaseAction action = new BaseAction(ActionID.Sentinel_PvE); + ModifySentinel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17"><strong>Sentinel</strong></see> <i>PvE</i> (GLA PLD) [17] [Ability] +/// </summary> +static partial void ModifySentinel_17(ref IBaseAction action); +public static IBaseAction Create20() +{ + IBaseAction action = new BaseAction(ActionID.FightOrFlight_PvE); + ModifyFightOrFlight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20"><strong>Fight or Flight</strong></see> <i>PvE</i> (GLA PLD) [20] [Ability] +/// </summary> +static partial void ModifyFightOrFlight_20(ref IBaseAction action); +public static IBaseAction Create21() +{ + IBaseAction action = new BaseAction(ActionID.RageOfHalone_PvE); + ModifyRageOfHalone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21"><strong>Rage of Halone</strong></see> <i>PvE</i> (GLA PLD) [21] [Weaponskill] +/// </summary> +static partial void ModifyRageOfHalone_21(ref IBaseAction action); +public static IBaseAction Create22() +{ + IBaseAction action = new BaseAction(ActionID.Bulwark_PvE); + ModifyBulwark_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22"><strong>Bulwark</strong></see> <i>PvE</i> (PLD) [22] [Ability] +/// </summary> +static partial void ModifyBulwark_22(ref IBaseAction action); +public static IBaseAction Create23() +{ + IBaseAction action = new BaseAction(ActionID.CircleOfScorn_PvE); + ModifyCircleOfScorn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23"><strong>Circle of Scorn</strong></see> <i>PvE</i> (GLA PLD) [23] [Ability] +/// </summary> +static partial void ModifyCircleOfScorn_23(ref IBaseAction action); +public static IBaseAction Create24() +{ + IBaseAction action = new BaseAction(ActionID.ShieldLob_PvE); + ModifyShieldLob_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24"><strong>Shield Lob</strong></see> <i>PvE</i> (GLA PLD) [24] [Weaponskill] +/// </summary> +static partial void ModifyShieldLob_24(ref IBaseAction action); +public static IBaseAction Create27() +{ + IBaseAction action = new BaseAction(ActionID.Cover_PvE); + ModifyCover_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27"><strong>Cover</strong></see> <i>PvE</i> (PLD) [27] [Ability] +/// </summary> +static partial void ModifyCover_27(ref IBaseAction action); +public static IBaseAction Create28() +{ + IBaseAction action = new BaseAction(ActionID.IronWill_PvE); + ModifyIronWill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/28"><strong>Iron Will</strong></see> <i>PvE</i> (GLA PLD) [28] [Ability] +/// </summary> +static partial void ModifyIronWill_28(ref IBaseAction action); +public static IBaseAction Create29() +{ + IBaseAction action = new BaseAction(ActionID.SpiritsWithin_PvE); + ModifySpiritsWithin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29"><strong>Spirits Within</strong></see> <i>PvE</i> (PLD) [29] [Ability] +/// </summary> +static partial void ModifySpiritsWithin_29(ref IBaseAction action); +public static IBaseAction Create30() +{ + IBaseAction action = new BaseAction(ActionID.HallowedGround_PvE); + ModifyHallowedGround_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/30"><strong>Hallowed Ground</strong></see> <i>PvE</i> (PLD) [30] [Ability] +/// </summary> +static partial void ModifyHallowedGround_30(ref IBaseAction action); +public static IBaseAction Create31() +{ + IBaseAction action = new BaseAction(ActionID.HeavySwing_PvE); + ModifyHeavySwing_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31"><strong>Heavy Swing</strong></see> <i>PvE</i> (MRD WAR) [31] [Weaponskill] +/// </summary> +static partial void ModifyHeavySwing_31(ref IBaseAction action); +public static IBaseAction Create37() +{ + IBaseAction action = new BaseAction(ActionID.Maim_PvE); + ModifyMaim_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/37"><strong>Maim</strong></see> <i>PvE</i> (MRD WAR) [37] [Weaponskill] +/// </summary> +static partial void ModifyMaim_37(ref IBaseAction action); +public static IBaseAction Create38() +{ + IBaseAction action = new BaseAction(ActionID.Berserk_PvE); + ModifyBerserk_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/38"><strong>Berserk</strong></see> <i>PvE</i> (MRD WAR) [38] [Ability] +/// </summary> +static partial void ModifyBerserk_38(ref IBaseAction action); +public static IBaseAction Create40() +{ + IBaseAction action = new BaseAction(ActionID.ThrillOfBattle_PvE); + ModifyThrillOfBattle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/40"><strong>Thrill of Battle</strong></see> <i>PvE</i> (MRD WAR) [40] [Ability] +/// </summary> +static partial void ModifyThrillOfBattle_40(ref IBaseAction action); +public static IBaseAction Create41() +{ + IBaseAction action = new BaseAction(ActionID.Overpower_PvE); + ModifyOverpower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/41"><strong>Overpower</strong></see> <i>PvE</i> (MRD WAR) [41] [Weaponskill] +/// </summary> +static partial void ModifyOverpower_41(ref IBaseAction action); +public static IBaseAction Create42() +{ + IBaseAction action = new BaseAction(ActionID.StormsPath_PvE); + ModifyStormsPath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/42"><strong>Storm's Path</strong></see> <i>PvE</i> (MRD WAR) [42] [Weaponskill] +/// </summary> +static partial void ModifyStormsPath_42(ref IBaseAction action); +public static IBaseAction Create43() +{ + IBaseAction action = new BaseAction(ActionID.Holmgang_PvE); + ModifyHolmgang_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/43"><strong>Holmgang</strong></see> <i>PvE</i> (MRD WAR) [43] [Ability] +/// </summary> +static partial void ModifyHolmgang_43(ref IBaseAction action); +public static IBaseAction Create44() +{ + IBaseAction action = new BaseAction(ActionID.Vengeance_PvE); + ModifyVengeance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/44"><strong>Vengeance</strong></see> <i>PvE</i> (MRD WAR) [44] [Ability] +/// </summary> +static partial void ModifyVengeance_44(ref IBaseAction action); +public static IBaseAction Create45() +{ + IBaseAction action = new BaseAction(ActionID.StormsEye_PvE); + ModifyStormsEye_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/45"><strong>Storm's Eye</strong></see> <i>PvE</i> (MRD WAR) [45] [Weaponskill] +/// </summary> +static partial void ModifyStormsEye_45(ref IBaseAction action); +public static IBaseAction Create46() +{ + IBaseAction action = new BaseAction(ActionID.Tomahawk_PvE); + ModifyTomahawk_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/46"><strong>Tomahawk</strong></see> <i>PvE</i> (MRD WAR) [46] [Weaponskill] +/// </summary> +static partial void ModifyTomahawk_46(ref IBaseAction action); +public static IBaseAction Create48() +{ + IBaseAction action = new BaseAction(ActionID.Defiance_PvE); + ModifyDefiance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/48"><strong>Defiance</strong></see> <i>PvE</i> (MRD WAR) [48] [Ability] +/// </summary> +static partial void ModifyDefiance_48(ref IBaseAction action); +public static IBaseAction Create49() +{ + IBaseAction action = new BaseAction(ActionID.InnerBeast_PvE); + ModifyInnerBeast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/49"><strong>Inner Beast</strong></see> <i>PvE</i> (WAR) [49] [Weaponskill] +/// </summary> +static partial void ModifyInnerBeast_49(ref IBaseAction action); +public static IBaseAction Create51() +{ + IBaseAction action = new BaseAction(ActionID.SteelCyclone_PvE); + ModifySteelCyclone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/51"><strong>Steel Cyclone</strong></see> <i>PvE</i> (WAR) [51] [Weaponskill] +/// </summary> +static partial void ModifySteelCyclone_51(ref IBaseAction action); +public static IBaseAction Create52() +{ + IBaseAction action = new BaseAction(ActionID.Infuriate_PvE); + ModifyInfuriate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/52"><strong>Infuriate</strong></see> <i>PvE</i> (WAR) [52] [Ability] +/// </summary> +static partial void ModifyInfuriate_52(ref IBaseAction action); +public static IBaseAction Create53() +{ + IBaseAction action = new BaseAction(ActionID.Bootshine_PvE); + ModifyBootshine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/53"><strong>Bootshine</strong></see> <i>PvE</i> (PGL MNK) [53] [Weaponskill] +/// </summary> +static partial void ModifyBootshine_53(ref IBaseAction action); +public static IBaseAction Create54() +{ + IBaseAction action = new BaseAction(ActionID.TrueStrike_PvE); + ModifyTrueStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/54"><strong>True Strike</strong></see> <i>PvE</i> (PGL MNK) [54] [Weaponskill] +/// </summary> +static partial void ModifyTrueStrike_54(ref IBaseAction action); +public static IBaseAction Create56() +{ + IBaseAction action = new BaseAction(ActionID.SnapPunch_PvE); + ModifySnapPunch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/56"><strong>Snap Punch</strong></see> <i>PvE</i> (PGL MNK) [56] [Weaponskill] +/// </summary> +static partial void ModifySnapPunch_56(ref IBaseAction action); +public static IBaseAction Create61() +{ + IBaseAction action = new BaseAction(ActionID.TwinSnakes_PvE); + ModifyTwinSnakes_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/61"><strong>Twin Snakes</strong></see> <i>PvE</i> (PGL MNK) [61] [Weaponskill] +/// </summary> +static partial void ModifyTwinSnakes_61(ref IBaseAction action); +public static IBaseAction Create62() +{ + IBaseAction action = new BaseAction(ActionID.ArmOfTheDestroyer_PvE); + ModifyArmOfTheDestroyer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/62"><strong>Arm of the Destroyer</strong></see> <i>PvE</i> (PGL MNK) [62] [Weaponskill] +/// </summary> +static partial void ModifyArmOfTheDestroyer_62(ref IBaseAction action); +public static IBaseAction Create65() +{ + IBaseAction action = new BaseAction(ActionID.Mantra_PvE); + ModifyMantra_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/65"><strong>Mantra</strong></see> <i>PvE</i> (PGL MNK) [65] [Ability] +/// </summary> +static partial void ModifyMantra_65(ref IBaseAction action); +public static IBaseAction Create66() +{ + IBaseAction action = new BaseAction(ActionID.Demolish_PvE); + ModifyDemolish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/66"><strong>Demolish</strong></see> <i>PvE</i> (PGL MNK) [66] [Weaponskill] +/// </summary> +static partial void ModifyDemolish_66(ref IBaseAction action); +public static IBaseAction Create69() +{ + IBaseAction action = new BaseAction(ActionID.PerfectBalance_PvE); + ModifyPerfectBalance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/69"><strong>Perfect Balance</strong></see> <i>PvE</i> (MNK) [69] [Ability] +/// </summary> +static partial void ModifyPerfectBalance_69(ref IBaseAction action); +public static IBaseAction Create70() +{ + IBaseAction action = new BaseAction(ActionID.Rockbreaker_PvE); + ModifyRockbreaker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/70"><strong>Rockbreaker</strong></see> <i>PvE</i> (MNK) [70] [Weaponskill] +/// </summary> +static partial void ModifyRockbreaker_70(ref IBaseAction action); +public static IBaseAction Create74() +{ + IBaseAction action = new BaseAction(ActionID.DragonKick_PvE); + ModifyDragonKick_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/74"><strong>Dragon Kick</strong></see> <i>PvE</i> (PGL MNK) [74] [Weaponskill] +/// </summary> +static partial void ModifyDragonKick_74(ref IBaseAction action); +public static IBaseAction Create75() +{ + IBaseAction action = new BaseAction(ActionID.TrueThrust_PvE); + ModifyTrueThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/75"><strong>True Thrust</strong></see> <i>PvE</i> (LNC DRG) [75] [Weaponskill] +/// </summary> +static partial void ModifyTrueThrust_75(ref IBaseAction action); +public static IBaseAction Create78() +{ + IBaseAction action = new BaseAction(ActionID.VorpalThrust_PvE); + ModifyVorpalThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/78"><strong>Vorpal Thrust</strong></see> <i>PvE</i> (LNC DRG) [78] [Weaponskill] +/// </summary> +static partial void ModifyVorpalThrust_78(ref IBaseAction action); +public static IBaseAction Create83() +{ + IBaseAction action = new BaseAction(ActionID.LifeSurge_PvE); + ModifyLifeSurge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/83"><strong>Life Surge</strong></see> <i>PvE</i> (LNC DRG) [83] [Ability] +/// </summary> +static partial void ModifyLifeSurge_83(ref IBaseAction action); +public static IBaseAction Create84() +{ + IBaseAction action = new BaseAction(ActionID.FullThrust_PvE); + ModifyFullThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/84"><strong>Full Thrust</strong></see> <i>PvE</i> (LNC DRG) [84] [Weaponskill] +/// </summary> +static partial void ModifyFullThrust_84(ref IBaseAction action); +public static IBaseAction Create85() +{ + IBaseAction action = new BaseAction(ActionID.LanceCharge_PvE); + ModifyLanceCharge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/85"><strong>Lance Charge</strong></see> <i>PvE</i> (LNC DRG) [85] [Ability] +/// </summary> +static partial void ModifyLanceCharge_85(ref IBaseAction action); +public static IBaseAction Create86() +{ + IBaseAction action = new BaseAction(ActionID.DoomSpike_PvE); + ModifyDoomSpike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/86"><strong>Doom Spike</strong></see> <i>PvE</i> (DRG) [86] [Weaponskill] +/// </summary> +static partial void ModifyDoomSpike_86(ref IBaseAction action); +public static IBaseAction Create87() +{ + IBaseAction action = new BaseAction(ActionID.Disembowel_PvE); + ModifyDisembowel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/87"><strong>Disembowel</strong></see> <i>PvE</i> (LNC DRG) [87] [Weaponskill] +/// </summary> +static partial void ModifyDisembowel_87(ref IBaseAction action); +public static IBaseAction Create88() +{ + IBaseAction action = new BaseAction(ActionID.ChaosThrust_PvE); + ModifyChaosThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/88"><strong>Chaos Thrust</strong></see> <i>PvE</i> (LNC DRG) [88] [Weaponskill] +/// </summary> +static partial void ModifyChaosThrust_88(ref IBaseAction action); +public static IBaseAction Create90() +{ + IBaseAction action = new BaseAction(ActionID.PiercingTalon_PvE); + ModifyPiercingTalon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/90"><strong>Piercing Talon</strong></see> <i>PvE</i> (LNC DRG) [90] [Weaponskill] +/// </summary> +static partial void ModifyPiercingTalon_90(ref IBaseAction action); +public static IBaseAction Create92() +{ + IBaseAction action = new BaseAction(ActionID.Jump_PvE); + ModifyJump_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/92"><strong>Jump</strong></see> <i>PvE</i> (DRG) [92] [Ability] +/// </summary> +static partial void ModifyJump_92(ref IBaseAction action); +public static IBaseAction Create94() +{ + IBaseAction action = new BaseAction(ActionID.ElusiveJump_PvE); + ModifyElusiveJump_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/94"><strong>Elusive Jump</strong></see> <i>PvE</i> (DRG) [94] [Ability] +/// </summary> +static partial void ModifyElusiveJump_94(ref IBaseAction action); +public static IBaseAction Create95() +{ + IBaseAction action = new BaseAction(ActionID.SpineshatterDive_PvE); + ModifySpineshatterDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/95"><strong>Spineshatter Dive</strong></see> <i>PvE</i> (DRG) [95] [Ability] +/// </summary> +static partial void ModifySpineshatterDive_95(ref IBaseAction action); +public static IBaseAction Create96() +{ + IBaseAction action = new BaseAction(ActionID.DragonfireDive_PvE); + ModifyDragonfireDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/96"><strong>Dragonfire Dive</strong></see> <i>PvE</i> (DRG) [96] [Ability] +/// </summary> +static partial void ModifyDragonfireDive_96(ref IBaseAction action); +public static IBaseAction Create97() +{ + IBaseAction action = new BaseAction(ActionID.HeavyShot_PvE); + ModifyHeavyShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/97"><strong>Heavy Shot</strong></see> <i>PvE</i> (ARC BRD) [97] [Weaponskill] +/// </summary> +static partial void ModifyHeavyShot_97(ref IBaseAction action); +public static IBaseAction Create98() +{ + IBaseAction action = new BaseAction(ActionID.StraightShot_PvE); + ModifyStraightShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/98"><strong>Straight Shot</strong></see> <i>PvE</i> (ARC BRD) [98] [Weaponskill] +/// </summary> +static partial void ModifyStraightShot_98(ref IBaseAction action); +public static IBaseAction Create100() +{ + IBaseAction action = new BaseAction(ActionID.VenomousBite_PvE); + ModifyVenomousBite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/100"><strong>Venomous Bite</strong></see> <i>PvE</i> (ARC BRD) [100] [Weaponskill] +/// </summary> +static partial void ModifyVenomousBite_100(ref IBaseAction action); +public static IBaseAction Create101() +{ + IBaseAction action = new BaseAction(ActionID.RagingStrikes_PvE); + ModifyRagingStrikes_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/101"><strong>Raging Strikes</strong></see> <i>PvE</i> (ARC BRD) [101] [Ability] +/// </summary> +static partial void ModifyRagingStrikes_101(ref IBaseAction action); +public static IBaseAction Create106() +{ + IBaseAction action = new BaseAction(ActionID.QuickNock_PvE); + ModifyQuickNock_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/106"><strong>Quick Nock</strong></see> <i>PvE</i> (ARC BRD) [106] [Weaponskill] +/// </summary> +static partial void ModifyQuickNock_106(ref IBaseAction action); +public static IBaseAction Create107() +{ + IBaseAction action = new BaseAction(ActionID.Barrage_PvE); + ModifyBarrage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/107"><strong>Barrage</strong></see> <i>PvE</i> (ARC BRD) [107] [Ability] +/// </summary> +static partial void ModifyBarrage_107(ref IBaseAction action); +public static IBaseAction Create110() +{ + IBaseAction action = new BaseAction(ActionID.Bloodletter_PvE); + ModifyBloodletter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/110"><strong>Bloodletter</strong></see> <i>PvE</i> (ARC BRD) [110] [Ability] +/// </summary> +static partial void ModifyBloodletter_110(ref IBaseAction action); +public static IBaseAction Create112() +{ + IBaseAction action = new BaseAction(ActionID.RepellingShot_PvE); + ModifyRepellingShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/112"><strong>Repelling Shot</strong></see> <i>PvE</i> (ARC BRD) [112] [Ability] +/// </summary> +static partial void ModifyRepellingShot_112(ref IBaseAction action); +public static IBaseAction Create113() +{ + IBaseAction action = new BaseAction(ActionID.Windbite_PvE); + ModifyWindbite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/113"><strong>Windbite</strong></see> <i>PvE</i> (ARC BRD) [113] [Weaponskill] +/// </summary> +static partial void ModifyWindbite_113(ref IBaseAction action); +public static IBaseAction Create114() +{ + IBaseAction action = new BaseAction(ActionID.MagesBallad_PvE); + ModifyMagesBallad_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/114"><strong>Mage's Ballad</strong></see> <i>PvE</i> (BRD) [114] [Ability] +/// </summary> +static partial void ModifyMagesBallad_114(ref IBaseAction action); +public static IBaseAction Create116() +{ + IBaseAction action = new BaseAction(ActionID.ArmysPaeon_PvE); + ModifyArmysPaeon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/116"><strong>Army's Paeon</strong></see> <i>PvE</i> (BRD) [116] [Ability] +/// </summary> +static partial void ModifyArmysPaeon_116(ref IBaseAction action); +public static IBaseAction Create117() +{ + IBaseAction action = new BaseAction(ActionID.RainOfDeath_PvE); + ModifyRainOfDeath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/117"><strong>Rain of Death</strong></see> <i>PvE</i> (BRD) [117] [Ability] +/// </summary> +static partial void ModifyRainOfDeath_117(ref IBaseAction action); +public static IBaseAction Create118() +{ + IBaseAction action = new BaseAction(ActionID.BattleVoice_PvE); + ModifyBattleVoice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/118"><strong>Battle Voice</strong></see> <i>PvE</i> (BRD) [118] [Ability] +/// </summary> +static partial void ModifyBattleVoice_118(ref IBaseAction action); +public static IBaseAction Create119() +{ + IBaseAction action = new BaseAction(ActionID.Stone_PvE); + ModifyStone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/119"><strong>Stone</strong></see> <i>PvE</i> (CNJ WHM) [119] [Spell] +/// </summary> +static partial void ModifyStone_119(ref IBaseAction action); +public static IBaseAction Create120() +{ + IBaseAction action = new BaseAction(ActionID.Cure_PvE); + ModifyCure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/120"><strong>Cure</strong></see> <i>PvE</i> (CNJ WHM) [120] [Spell] +/// </summary> +static partial void ModifyCure_120(ref IBaseAction action); +public static IBaseAction Create121() +{ + IBaseAction action = new BaseAction(ActionID.Aero_PvE); + ModifyAero_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/121"><strong>Aero</strong></see> <i>PvE</i> (CNJ WHM) [121] [Spell] +/// </summary> +static partial void ModifyAero_121(ref IBaseAction action); +public static IBaseAction Create124() +{ + IBaseAction action = new BaseAction(ActionID.Medica_PvE); + ModifyMedica_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/124"><strong>Medica</strong></see> <i>PvE</i> (CNJ WHM) [124] [Spell] +/// </summary> +static partial void ModifyMedica_124(ref IBaseAction action); +public static IBaseAction Create125() +{ + IBaseAction action = new BaseAction(ActionID.Raise_PvE); + ModifyRaise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/125"><strong>Raise</strong></see> <i>PvE</i> (CNJ WHM) [125] [Spell] +/// </summary> +static partial void ModifyRaise_125(ref IBaseAction action); +public static IBaseAction Create127() +{ + IBaseAction action = new BaseAction(ActionID.StoneIi_PvE); + ModifyStoneIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/127"><strong>Stone II</strong></see> <i>PvE</i> (CNJ WHM) [127] [Spell] +/// </summary> +static partial void ModifyStoneIi_127(ref IBaseAction action); +public static IBaseAction Create131() +{ + IBaseAction action = new BaseAction(ActionID.CureIii_PvE); + ModifyCureIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/131"><strong>Cure III</strong></see> <i>PvE</i> (WHM) [131] [Spell] +/// </summary> +static partial void ModifyCureIii_131(ref IBaseAction action); +public static IBaseAction Create132() +{ + IBaseAction action = new BaseAction(ActionID.AeroIi_PvE); + ModifyAeroIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/132"><strong>Aero II</strong></see> <i>PvE</i> (CNJ WHM) [132] [Spell] +/// </summary> +static partial void ModifyAeroIi_132(ref IBaseAction action); +public static IBaseAction Create133() +{ + IBaseAction action = new BaseAction(ActionID.MedicaIi_PvE); + ModifyMedicaIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/133"><strong>Medica II</strong></see> <i>PvE</i> (CNJ WHM) [133] [Spell] +/// </summary> +static partial void ModifyMedicaIi_133(ref IBaseAction action); +public static IBaseAction Create135() +{ + IBaseAction action = new BaseAction(ActionID.CureIi_PvE); + ModifyCureIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/135"><strong>Cure II</strong></see> <i>PvE</i> (CNJ WHM) [135] [Spell] +/// </summary> +static partial void ModifyCureIi_135(ref IBaseAction action); +public static IBaseAction Create136() +{ + IBaseAction action = new BaseAction(ActionID.PresenceOfMind_PvE); + ModifyPresenceOfMind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/136"><strong>Presence of Mind</strong></see> <i>PvE</i> (WHM) [136] [Ability] +/// </summary> +static partial void ModifyPresenceOfMind_136(ref IBaseAction action); +public static IBaseAction Create137() +{ + IBaseAction action = new BaseAction(ActionID.Regen_PvE); + ModifyRegen_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/137"><strong>Regen</strong></see> <i>PvE</i> (WHM) [137] [Spell] +/// </summary> +static partial void ModifyRegen_137(ref IBaseAction action); +public static IBaseAction Create139() +{ + IBaseAction action = new BaseAction(ActionID.Holy_PvE); + ModifyHoly_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/139"><strong>Holy</strong></see> <i>PvE</i> (WHM) [139] [Spell] +/// </summary> +static partial void ModifyHoly_139(ref IBaseAction action); +public static IBaseAction Create140() +{ + IBaseAction action = new BaseAction(ActionID.Benediction_PvE); + ModifyBenediction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/140"><strong>Benediction</strong></see> <i>PvE</i> (WHM) [140] [Ability] +/// </summary> +static partial void ModifyBenediction_140(ref IBaseAction action); +public static IBaseAction Create141() +{ + IBaseAction action = new BaseAction(ActionID.Fire_PvE); + ModifyFire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/141"><strong>Fire</strong></see> <i>PvE</i> (THM BLM) [141] [Spell] +/// </summary> +static partial void ModifyFire_141(ref IBaseAction action); +public static IBaseAction Create142() +{ + IBaseAction action = new BaseAction(ActionID.Blizzard_PvE); + ModifyBlizzard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/142"><strong>Blizzard</strong></see> <i>PvE</i> (THM BLM) [142] [Spell] +/// </summary> +static partial void ModifyBlizzard_142(ref IBaseAction action); +public static IBaseAction Create144() +{ + IBaseAction action = new BaseAction(ActionID.Thunder_PvE); + ModifyThunder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/144"><strong>Thunder</strong></see> <i>PvE</i> (THM BLM) [144] [Spell] +/// </summary> +static partial void ModifyThunder_144(ref IBaseAction action); +public static IBaseAction Create147() +{ + IBaseAction action = new BaseAction(ActionID.FireIi_PvE); + ModifyFireIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/147"><strong>Fire II</strong></see> <i>PvE</i> (THM BLM) [147] [Spell] +/// </summary> +static partial void ModifyFireIi_147(ref IBaseAction action); +public static IBaseAction Create149() +{ + IBaseAction action = new BaseAction(ActionID.Transpose_PvE); + ModifyTranspose_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/149"><strong>Transpose</strong></see> <i>PvE</i> (THM BLM) [149] [Ability] +/// </summary> +static partial void ModifyTranspose_149(ref IBaseAction action); +public static IBaseAction Create152() +{ + IBaseAction action = new BaseAction(ActionID.FireIii_PvE); + ModifyFireIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/152"><strong>Fire III</strong></see> <i>PvE</i> (THM BLM) [152] [Spell] +/// </summary> +static partial void ModifyFireIii_152(ref IBaseAction action); +public static IBaseAction Create153() +{ + IBaseAction action = new BaseAction(ActionID.ThunderIii_PvE); + ModifyThunderIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/153"><strong>Thunder III</strong></see> <i>PvE</i> (BLM) [153] [Spell] +/// </summary> +static partial void ModifyThunderIii_153(ref IBaseAction action); +public static IBaseAction Create154() +{ + IBaseAction action = new BaseAction(ActionID.BlizzardIii_PvE); + ModifyBlizzardIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/154"><strong>Blizzard III</strong></see> <i>PvE</i> (BLM) [154] [Spell] +/// </summary> +static partial void ModifyBlizzardIii_154(ref IBaseAction action); +public static IBaseAction Create155() +{ + IBaseAction action = new BaseAction(ActionID.AetherialManipulation_PvE); + ModifyAetherialManipulation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/155"><strong>Aetherial Manipulation</strong></see> <i>PvE</i> (THM BLM) [155] [Ability] +/// </summary> +static partial void ModifyAetherialManipulation_155(ref IBaseAction action); +public static IBaseAction Create156() +{ + IBaseAction action = new BaseAction(ActionID.Scathe_PvE); + ModifyScathe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/156"><strong>Scathe</strong></see> <i>PvE</i> (THM BLM) [156] [Spell] +/// </summary> +static partial void ModifyScathe_156(ref IBaseAction action); +public static IBaseAction Create157() +{ + IBaseAction action = new BaseAction(ActionID.Manaward_PvE); + ModifyManaward_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/157"><strong>Manaward</strong></see> <i>PvE</i> (THM BLM) [157] [Ability] +/// </summary> +static partial void ModifyManaward_157(ref IBaseAction action); +public static IBaseAction Create158() +{ + IBaseAction action = new BaseAction(ActionID.Manafont_PvE); + ModifyManafont_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/158"><strong>Manafont</strong></see> <i>PvE</i> (BLM) [158] [Ability] +/// </summary> +static partial void ModifyManafont_158(ref IBaseAction action); +public static IBaseAction Create159() +{ + IBaseAction action = new BaseAction(ActionID.Freeze_PvE); + ModifyFreeze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/159"><strong>Freeze</strong></see> <i>PvE</i> (BLM) [159] [Spell] +/// </summary> +static partial void ModifyFreeze_159(ref IBaseAction action); +public static IBaseAction Create162() +{ + IBaseAction action = new BaseAction(ActionID.Flare_PvE); + ModifyFlare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/162"><strong>Flare</strong></see> <i>PvE</i> (BLM) [162] [Spell] +/// </summary> +static partial void ModifyFlare_162(ref IBaseAction action); +public static IBaseAction Create163() +{ + IBaseAction action = new BaseAction(ActionID.Ruin_PvE); + ModifyRuin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/163"><strong>Ruin</strong></see> <i>PvE</i> (ACN SMN) [163] [Spell] +/// </summary> +static partial void ModifyRuin_163(ref IBaseAction action); +public static IBaseAction Create166() +{ + IBaseAction action = new BaseAction(ActionID.Aetherflow_PvE); + ModifyAetherflow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/166"><strong>Aetherflow</strong></see> <i>PvE</i> (SCH) [166] [Ability] +/// </summary> +static partial void ModifyAetherflow_166(ref IBaseAction action); +public static IBaseAction Create167() +{ + IBaseAction action = new BaseAction(ActionID.EnergyDrain_PvE); + ModifyEnergyDrain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/167"><strong>Energy Drain</strong></see> <i>PvE</i> (SCH) [167] [Ability] +/// </summary> +static partial void ModifyEnergyDrain_167(ref IBaseAction action); +public static IBaseAction Create172() +{ + IBaseAction action = new BaseAction(ActionID.RuinIi_PvE); + ModifyRuinIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/172"><strong>Ruin II</strong></see> <i>PvE</i> (ACN SMN) [172] [Spell] +/// </summary> +static partial void ModifyRuinIi_172(ref IBaseAction action); +public static IBaseAction Create173() +{ + IBaseAction action = new BaseAction(ActionID.Resurrection_PvE); + ModifyResurrection_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/173"><strong>Resurrection</strong></see> <i>PvE</i> (ACN SMN SCH) [173] [Spell] +/// </summary> +static partial void ModifyResurrection_173(ref IBaseAction action); +public static IBaseAction Create181() +{ + IBaseAction action = new BaseAction(ActionID.Fester_PvE); + ModifyFester_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/181"><strong>Fester</strong></see> <i>PvE</i> (ACN SMN) [181] [Ability] +/// </summary> +static partial void ModifyFester_181(ref IBaseAction action); +public static IBaseAction Create185() +{ + IBaseAction action = new BaseAction(ActionID.Adloquium_PvE); + ModifyAdloquium_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/185"><strong>Adloquium</strong></see> <i>PvE</i> (SCH) [185] [Spell] +/// </summary> +static partial void ModifyAdloquium_185(ref IBaseAction action); +public static IBaseAction Create186() +{ + IBaseAction action = new BaseAction(ActionID.Succor_PvE); + ModifySuccor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/186"><strong>Succor</strong></see> <i>PvE</i> (SCH) [186] [Spell] +/// </summary> +static partial void ModifySuccor_186(ref IBaseAction action); +public static IBaseAction Create188() +{ + IBaseAction action = new BaseAction(ActionID.SacredSoil_PvE); + ModifySacredSoil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/188"><strong>Sacred Soil</strong></see> <i>PvE</i> (SCH) [188] [Ability] +/// </summary> +static partial void ModifySacredSoil_188(ref IBaseAction action); +public static IBaseAction Create189() +{ + IBaseAction action = new BaseAction(ActionID.Lustrate_PvE); + ModifyLustrate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/189"><strong>Lustrate</strong></see> <i>PvE</i> (SCH) [189] [Ability] +/// </summary> +static partial void ModifyLustrate_189(ref IBaseAction action); +public static IBaseAction Create190() +{ + IBaseAction action = new BaseAction(ActionID.Physick_PvE); + ModifyPhysick_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/190"><strong>Physick</strong></see> <i>PvE</i> (SCH) [190] [Spell] +/// </summary> +static partial void ModifyPhysick_190(ref IBaseAction action); +public static IBaseAction Create197() +{ + IBaseAction action = new BaseAction(ActionID.ShieldWall_PvE); + ModifyShieldWall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/197"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break] +/// </summary> +static partial void ModifyShieldWall_197(ref IBaseAction action); +public static IBaseAction Create198() +{ + IBaseAction action = new BaseAction(ActionID.Stronghold_PvE); + ModifyStronghold_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/198"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break] +/// </summary> +static partial void ModifyStronghold_198(ref IBaseAction action); +public static IBaseAction Create199() +{ + IBaseAction action = new BaseAction(ActionID.LastBastion_PvE); + ModifyLastBastion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/199"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break] +/// </summary> +static partial void ModifyLastBastion_199(ref IBaseAction action); +public static IBaseAction Create200() +{ + IBaseAction action = new BaseAction(ActionID.Braver_PvE); + ModifyBraver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/200"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break] +/// </summary> +static partial void ModifyBraver_200(ref IBaseAction action); +public static IBaseAction Create201() +{ + IBaseAction action = new BaseAction(ActionID.Bladedance_PvE); + ModifyBladedance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/201"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break] +/// </summary> +static partial void ModifyBladedance_201(ref IBaseAction action); +public static IBaseAction Create202() +{ + IBaseAction action = new BaseAction(ActionID.FinalHeaven_PvE); + ModifyFinalHeaven_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/202"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break] +/// </summary> +static partial void ModifyFinalHeaven_202(ref IBaseAction action); +public static IBaseAction Create203() +{ + IBaseAction action = new BaseAction(ActionID.Skyshard_PvE); + ModifySkyshard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/203"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break] +/// </summary> +static partial void ModifySkyshard_203(ref IBaseAction action); +public static IBaseAction Create204() +{ + IBaseAction action = new BaseAction(ActionID.Starstorm_PvE); + ModifyStarstorm_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/204"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break] +/// </summary> +static partial void ModifyStarstorm_204(ref IBaseAction action); +public static IBaseAction Create205() +{ + IBaseAction action = new BaseAction(ActionID.Meteor_PvE); + ModifyMeteor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/205"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break] +/// </summary> +static partial void ModifyMeteor_205(ref IBaseAction action); +public static IBaseAction Create206() +{ + IBaseAction action = new BaseAction(ActionID.HealingWind_PvE); + ModifyHealingWind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/206"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break] +/// </summary> +static partial void ModifyHealingWind_206(ref IBaseAction action); +public static IBaseAction Create207() +{ + IBaseAction action = new BaseAction(ActionID.BreathOfTheEarth_PvE); + ModifyBreathOfTheEarth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/207"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break] +/// </summary> +static partial void ModifyBreathOfTheEarth_207(ref IBaseAction action); +public static IBaseAction Create208() +{ + IBaseAction action = new BaseAction(ActionID.PulseOfLife_PvE); + ModifyPulseOfLife_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/208"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break] +/// </summary> +static partial void ModifyPulseOfLife_208(ref IBaseAction action); +public static IBaseAction Create210() +{ + IBaseAction action = new BaseAction(ActionID.Triangulate_PvE); + ModifyTriangulate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/210"><strong>Triangulate</strong></see> <i>PvE</i> (Disciple of the Land) [210] [Ability] +/// </summary> +static partial void ModifyTriangulate_210(ref IBaseAction action); +public static IBaseAction Create211() +{ + IBaseAction action = new BaseAction(ActionID.ArborCall_PvE); + ModifyArborCall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/211"><strong>Arbor Call</strong></see> <i>PvE</i> (Disciple of the Land) [211] [Ability] +/// </summary> +static partial void ModifyArborCall_211(ref IBaseAction action); +public static IBaseAction Create215() +{ + IBaseAction action = new BaseAction(ActionID.AgelessWords_PvE); + ModifyAgelessWords_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/215"><strong>Ageless Words</strong></see> <i>PvE</i> (BTN) [215] [DoL Ability] +/// </summary> +static partial void ModifyAgelessWords_215(ref IBaseAction action); +public static IBaseAction Create218() +{ + IBaseAction action = new BaseAction(ActionID.FieldMastery_PvE); + ModifyFieldMastery_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/218"><strong>Field Mastery</strong></see> <i>PvE</i> (BTN) [218] [DoL Ability] +/// </summary> +static partial void ModifyFieldMastery_218(ref IBaseAction action); +public static IBaseAction Create220() +{ + IBaseAction action = new BaseAction(ActionID.FieldMasteryIi_PvE); + ModifyFieldMasteryIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/220"><strong>Field Mastery II</strong></see> <i>PvE</i> (BTN) [220] [DoL Ability] +/// </summary> +static partial void ModifyFieldMasteryIi_220(ref IBaseAction action); +public static IBaseAction Create221() +{ + IBaseAction action = new BaseAction(ActionID.TruthOfForests_PvE); + ModifyTruthOfForests_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/221"><strong>Truth of Forests</strong></see> <i>PvE</i> (Disciple of the Land) [221] [Ability] +/// </summary> +static partial void ModifyTruthOfForests_221(ref IBaseAction action); +public static IBaseAction Create222() +{ + IBaseAction action = new BaseAction(ActionID.BlessedHarvest_PvE); + ModifyBlessedHarvest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/222"><strong>Blessed Harvest</strong></see> <i>PvE</i> (BTN) [222] [DoL Ability] +/// </summary> +static partial void ModifyBlessedHarvest_222(ref IBaseAction action); +public static IBaseAction Create224() +{ + IBaseAction action = new BaseAction(ActionID.BlessedHarvestIi_PvE); + ModifyBlessedHarvestIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/224"><strong>Blessed Harvest II</strong></see> <i>PvE</i> (BTN) [224] [DoL Ability] +/// </summary> +static partial void ModifyBlessedHarvestIi_224(ref IBaseAction action); +public static IBaseAction Create227() +{ + IBaseAction action = new BaseAction(ActionID.Prospect_PvE); + ModifyProspect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/227"><strong>Prospect</strong></see> <i>PvE</i> (Disciple of the Land) [227] [Ability] +/// </summary> +static partial void ModifyProspect_227(ref IBaseAction action); +public static IBaseAction Create228() +{ + IBaseAction action = new BaseAction(ActionID.LayOfTheLand_PvE); + ModifyLayOfTheLand_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/228"><strong>Lay of the Land</strong></see> <i>PvE</i> (Disciple of the Land) [228] [Ability] +/// </summary> +static partial void ModifyLayOfTheLand_228(ref IBaseAction action); +public static IBaseAction Create232() +{ + IBaseAction action = new BaseAction(ActionID.SolidReason_PvE); + ModifySolidReason_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/232"><strong>Solid Reason</strong></see> <i>PvE</i> (MIN) [232] [DoL Ability] +/// </summary> +static partial void ModifySolidReason_232(ref IBaseAction action); +public static IBaseAction Create235() +{ + IBaseAction action = new BaseAction(ActionID.SharpVision_PvE); + ModifySharpVision_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/235"><strong>Sharp Vision</strong></see> <i>PvE</i> (MIN) [235] [DoL Ability] +/// </summary> +static partial void ModifySharpVision_235(ref IBaseAction action); +public static IBaseAction Create237() +{ + IBaseAction action = new BaseAction(ActionID.SharpVisionIi_PvE); + ModifySharpVisionIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/237"><strong>Sharp Vision II</strong></see> <i>PvE</i> (MIN) [237] [DoL Ability] +/// </summary> +static partial void ModifySharpVisionIi_237(ref IBaseAction action); +public static IBaseAction Create238() +{ + IBaseAction action = new BaseAction(ActionID.TruthOfMountains_PvE); + ModifyTruthOfMountains_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/238"><strong>Truth of Mountains</strong></see> <i>PvE</i> (Disciple of the Land) [238] [Ability] +/// </summary> +static partial void ModifyTruthOfMountains_238(ref IBaseAction action); +public static IBaseAction Create239() +{ + IBaseAction action = new BaseAction(ActionID.KingsYield_PvE); + ModifyKingsYield_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/239"><strong>King's Yield</strong></see> <i>PvE</i> (MIN) [239] [DoL Ability] +/// </summary> +static partial void ModifyKingsYield_239(ref IBaseAction action); +public static IBaseAction Create240() +{ + IBaseAction action = new BaseAction(ActionID.Collect_PvE); + ModifyCollect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/240"><strong>Collect</strong></see> <i>PvE</i> (MIN) [240] [DoL Ability] +/// </summary> +static partial void ModifyCollect_240(ref IBaseAction action); +public static IBaseAction Create241() +{ + IBaseAction action = new BaseAction(ActionID.KingsYieldIi_PvE); + ModifyKingsYieldIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/241"><strong>King's Yield II</strong></see> <i>PvE</i> (MIN) [241] [DoL Ability] +/// </summary> +static partial void ModifyKingsYieldIi_241(ref IBaseAction action); +public static IBaseAction Create260() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE); + ModifyGreatStrides_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/260"><strong>Great Strides</strong></see> <i>PvE</i> (CRP) [260] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_260(ref IBaseAction action); +public static IBaseAction Create261() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_261); + ModifyGreatStrides_PvE_261(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/261"><strong>Great Strides</strong></see> <i>PvE</i> (BSM) [261] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_261(ref IBaseAction action); +public static IBaseAction Create262() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_262); + ModifyGreatStrides_PvE_262(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/262"><strong>Great Strides</strong></see> <i>PvE</i> (ARM) [262] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_262(ref IBaseAction action); +public static IBaseAction Create263() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_263); + ModifyGreatStrides_PvE_263(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/263"><strong>Great Strides</strong></see> <i>PvE</i> (GSM) [263] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_263(ref IBaseAction action); +public static IBaseAction Create264() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_264); + ModifyGreatStrides_PvE_264(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/264"><strong>Great Strides</strong></see> <i>PvE</i> (WVR) [264] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_264(ref IBaseAction action); +public static IBaseAction Create265() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_265); + ModifyGreatStrides_PvE_265(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/265"><strong>Great Strides</strong></see> <i>PvE</i> (LTW) [265] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_265(ref IBaseAction action); +public static IBaseAction Create266() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_266); + ModifyGreatStrides_PvE_266(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/266"><strong>Great Strides</strong></see> <i>PvE</i> (ALC) [266] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_266(ref IBaseAction action); +public static IBaseAction Create267() +{ + IBaseAction action = new BaseAction(ActionID.GreatStrides_PvE_267); + ModifyGreatStrides_PvE_267(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/267"><strong>Great Strides</strong></see> <i>PvE</i> (CUL) [267] [DoH Ability] +/// </summary> +static partial void ModifyGreatStrides_267(ref IBaseAction action); +public static IBaseAction Create268() +{ + IBaseAction action = new BaseAction(ActionID.MoochIi_PvE); + ModifyMoochIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/268"><strong>Mooch II</strong></see> <i>PvE</i> (FSH) [268] [DoL Ability] +/// </summary> +static partial void ModifyMoochIi_268(ref IBaseAction action); +public static IBaseAction Create269() +{ + IBaseAction action = new BaseAction(ActionID.DoubleHook_PvE); + ModifyDoubleHook_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/269"><strong>Double Hook</strong></see> <i>PvE</i> (FSH) [269] [DoL Ability] +/// </summary> +static partial void ModifyDoubleHook_269(ref IBaseAction action); +public static IBaseAction Create272() +{ + IBaseAction action = new BaseAction(ActionID.BountifulYieldIi_PvE); + ModifyBountifulYieldIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/272"><strong>Bountiful Yield II</strong></see> <i>PvE</i> (MIN) [272] [DoL Ability] +/// </summary> +static partial void ModifyBountifulYieldIi_272(ref IBaseAction action); +public static IBaseAction Create273() +{ + IBaseAction action = new BaseAction(ActionID.BountifulHarvestIi_PvE); + ModifyBountifulHarvestIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/273"><strong>Bountiful Harvest II</strong></see> <i>PvE</i> (BTN) [273] [DoL Ability] +/// </summary> +static partial void ModifyBountifulHarvestIi_273(ref IBaseAction action); +public static IBaseAction Create280() +{ + IBaseAction action = new BaseAction(ActionID.TheTwelvesBounty_PvE); + ModifyTheTwelvesBounty_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/280"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (MIN) [280] [DoL Ability] +/// </summary> +static partial void ModifyTheTwelvesBounty_280(ref IBaseAction action); +public static IBaseAction Create282() +{ + IBaseAction action = new BaseAction(ActionID.TheTwelvesBounty_PvE_282); + ModifyTheTwelvesBounty_PvE_282(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/282"><strong>the Twelve's Bounty</strong></see> <i>PvE</i> (BTN) [282] [DoL Ability] +/// </summary> +static partial void ModifyTheTwelvesBounty_282(ref IBaseAction action); +public static IBaseAction Create288() +{ + IBaseAction action = new BaseAction(ActionID.Bait_PvE); + ModifyBait_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/288"><strong>Bait</strong></see> <i>PvE</i> (FSH) [288] [DoL Ability] +/// </summary> +static partial void ModifyBait_288(ref IBaseAction action); +public static IBaseAction Create289() +{ + IBaseAction action = new BaseAction(ActionID.Cast_PvE); + ModifyCast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/289"><strong>Cast</strong></see> <i>PvE</i> (FSH) [289] [DoL Ability] +/// </summary> +static partial void ModifyCast_289(ref IBaseAction action); +public static IBaseAction Create290() +{ + IBaseAction action = new BaseAction(ActionID.ArborCallIi_PvE); + ModifyArborCallIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/290"><strong>Arbor Call II</strong></see> <i>PvE</i> (Disciple of the Land) [290] [Ability] +/// </summary> +static partial void ModifyArborCallIi_290(ref IBaseAction action); +public static IBaseAction Create291() +{ + IBaseAction action = new BaseAction(ActionID.LayOfTheLandIi_PvE); + ModifyLayOfTheLandIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/291"><strong>Lay of the Land II</strong></see> <i>PvE</i> (Disciple of the Land) [291] [Ability] +/// </summary> +static partial void ModifyLayOfTheLandIi_291(ref IBaseAction action); +public static IBaseAction Create294() +{ + IBaseAction action = new BaseAction(ActionID.FieldMasteryIii_PvE); + ModifyFieldMasteryIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/294"><strong>Field Mastery III</strong></see> <i>PvE</i> (BTN) [294] [DoL Ability] +/// </summary> +static partial void ModifyFieldMasteryIii_294(ref IBaseAction action); +public static IBaseAction Create295() +{ + IBaseAction action = new BaseAction(ActionID.SharpVisionIii_PvE); + ModifySharpVisionIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/295"><strong>Sharp Vision III</strong></see> <i>PvE</i> (MIN) [295] [DoL Ability] +/// </summary> +static partial void ModifySharpVisionIii_295(ref IBaseAction action); +public static IBaseAction Create296() +{ + IBaseAction action = new BaseAction(ActionID.Hook_PvE); + ModifyHook_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/296"><strong>Hook</strong></see> <i>PvE</i> (FSH) [296] [DoL Ability] +/// </summary> +static partial void ModifyHook_296(ref IBaseAction action); +public static IBaseAction Create297() +{ + IBaseAction action = new BaseAction(ActionID.Mooch_PvE); + ModifyMooch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/297"><strong>Mooch</strong></see> <i>PvE</i> (FSH) [297] [DoL Ability] +/// </summary> +static partial void ModifyMooch_297(ref IBaseAction action); +public static IBaseAction Create299() +{ + IBaseAction action = new BaseAction(ActionID.Quit_PvE); + ModifyQuit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/299"><strong>Quit</strong></see> <i>PvE</i> (FSH) [299] [DoL Ability] +/// </summary> +static partial void ModifyQuit_299(ref IBaseAction action); +public static IBaseAction Create300() +{ + IBaseAction action = new BaseAction(ActionID.Release_PvE); + ModifyRelease_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/300"><strong>Release</strong></see> <i>PvE</i> (FSH) [300] [DoL Ability] +/// </summary> +static partial void ModifyRelease_300(ref IBaseAction action); +public static IBaseAction Create303() +{ + IBaseAction action = new BaseAction(ActionID.Sneak_PvE); + ModifySneak_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/303"><strong>Sneak</strong></see> <i>PvE</i> (MIN) [303] [Ability] +/// </summary> +static partial void ModifySneak_303(ref IBaseAction action); +public static IBaseAction Create304() +{ + IBaseAction action = new BaseAction(ActionID.Sneak_PvE_304); + ModifySneak_PvE_304(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/304"><strong>Sneak</strong></see> <i>PvE</i> (BTN) [304] [Ability] +/// </summary> +static partial void ModifySneak_304(ref IBaseAction action); +public static IBaseAction Create305() +{ + IBaseAction action = new BaseAction(ActionID.Sneak_PvE_305); + ModifySneak_PvE_305(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/305"><strong>Sneak</strong></see> <i>PvE</i> (FSH) [305] [Ability] +/// </summary> +static partial void ModifySneak_305(ref IBaseAction action); +public static IBaseAction Create802() +{ + IBaseAction action = new BaseAction(ActionID.Embrace_PvE); + ModifyEmbrace_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/802"><strong>Embrace</strong></see> <i>PvE</i> (SCH) [802] [Spell] +/// </summary> +static partial void ModifyEmbrace_802(ref IBaseAction action); +public static IBaseAction Create803() +{ + IBaseAction action = new BaseAction(ActionID.WhisperingDawn_PvE); + ModifyWhisperingDawn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/803"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [803] [Ability] +/// </summary> +static partial void ModifyWhisperingDawn_803(ref IBaseAction action); +public static IBaseAction Create805() +{ + IBaseAction action = new BaseAction(ActionID.FeyIllumination_PvE); + ModifyFeyIllumination_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/805"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [805] [Ability] +/// </summary> +static partial void ModifyFeyIllumination_805(ref IBaseAction action); +public static IBaseAction Create815() +{ + IBaseAction action = new BaseAction(ActionID.Collect_PvE_815); + ModifyCollect_PvE_815(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/815"><strong>Collect</strong></see> <i>PvE</i> (BTN) [815] [DoL Ability] +/// </summary> +static partial void ModifyCollect_815(ref IBaseAction action); +public static IBaseAction Create850() +{ + IBaseAction action = new BaseAction(ActionID.UnpackingMinion_PvE); + ModifyUnpackingMinion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/850"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item] +/// </summary> +static partial void ModifyUnpackingMinion_850(ref IBaseAction action); +public static IBaseAction Create1128() +{ + IBaseAction action = new BaseAction(ActionID.MagitekCannon_PvE); + ModifyMagitekCannon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1128"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill] +/// </summary> +static partial void ModifyMagitekCannon_1128(ref IBaseAction action); +public static IBaseAction Create1129() +{ + IBaseAction action = new BaseAction(ActionID.PhotonStream_PvE); + ModifyPhotonStream_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1129"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill] +/// </summary> +static partial void ModifyPhotonStream_1129(ref IBaseAction action); +public static IBaseAction Create1134() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE); + ModifyCannonfire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1134"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery] +/// </summary> +static partial void ModifyCannonfire_1134(ref IBaseAction action); +public static IBaseAction Create1437() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE_1437); + ModifyCannonfire_PvE_1437(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1437"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery] +/// </summary> +static partial void ModifyCannonfire_1437(ref IBaseAction action); +public static IBaseAction Create1584() +{ + IBaseAction action = new BaseAction(ActionID.Purify_PvE); + ModifyPurify_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1584"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability] +/// </summary> +static partial void ModifyPurify_1584(ref IBaseAction action); +public static IBaseAction Create1694() +{ + IBaseAction action = new BaseAction(ActionID.Decipher_PvE); + ModifyDecipher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1694"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System] +/// </summary> +static partial void ModifyDecipher_1694(ref IBaseAction action); +public static IBaseAction Create1695() +{ + IBaseAction action = new BaseAction(ActionID.Dig_PvE); + ModifyDig_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1695"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System] +/// </summary> +static partial void ModifyDig_1695(ref IBaseAction action); +public static IBaseAction Create1764() +{ + IBaseAction action = new BaseAction(ActionID.FieryBreath_PvE); + ModifyFieryBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1764"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event] +/// </summary> +static partial void ModifyFieryBreath_1764(ref IBaseAction action); +public static IBaseAction Create1765() +{ + IBaseAction action = new BaseAction(ActionID.BigSneeze_PvE); + ModifyBigSneeze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1765"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event] +/// </summary> +static partial void ModifyBigSneeze_1765(ref IBaseAction action); +public static IBaseAction Create1766() +{ + IBaseAction action = new BaseAction(ActionID.Throw_PvE); + ModifyThrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/1766"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event] +/// </summary> +static partial void ModifyThrow_1766(ref IBaseAction action); +public static IBaseAction Create2135() +{ + IBaseAction action = new BaseAction(ActionID.CastLight_PvE); + ModifyCastLight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2135"><strong>Cast Light</strong></see> <i>PvE</i> (FSH) [2135] [DoL Ability] +/// </summary> +static partial void ModifyCastLight_2135(ref IBaseAction action); +public static IBaseAction Create2136() +{ + IBaseAction action = new BaseAction(ActionID.MasterRecipeBook_PvE); + ModifyMasterRecipeBook_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2136"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item] +/// </summary> +static partial void ModifyMasterRecipeBook_2136(ref IBaseAction action); +public static IBaseAction Create2237() +{ + IBaseAction action = new BaseAction(ActionID.IronKiss_PvE); + ModifyIronKiss_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2237"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery] +/// </summary> +static partial void ModifyIronKiss_2237(ref IBaseAction action); +public static IBaseAction Create2238() +{ + IBaseAction action = new BaseAction(ActionID.SpindlyFinger_PvE); + ModifySpindlyFinger_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2238"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery] +/// </summary> +static partial void ModifySpindlyFinger_2238(ref IBaseAction action); +public static IBaseAction Create2240() +{ + IBaseAction action = new BaseAction(ActionID.SpinningEdge_PvE); + ModifySpinningEdge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2240"><strong>Spinning Edge</strong></see> <i>PvE</i> (ROG NIN) [2240] [Weaponskill] +/// </summary> +static partial void ModifySpinningEdge_2240(ref IBaseAction action); +public static IBaseAction Create2241() +{ + IBaseAction action = new BaseAction(ActionID.ShadeShift_PvE); + ModifyShadeShift_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2241"><strong>Shade Shift</strong></see> <i>PvE</i> (ROG NIN) [2241] [Ability] +/// </summary> +static partial void ModifyShadeShift_2241(ref IBaseAction action); +public static IBaseAction Create2242() +{ + IBaseAction action = new BaseAction(ActionID.GustSlash_PvE); + ModifyGustSlash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2242"><strong>Gust Slash</strong></see> <i>PvE</i> (ROG NIN) [2242] [Weaponskill] +/// </summary> +static partial void ModifyGustSlash_2242(ref IBaseAction action); +public static IBaseAction Create2245() +{ + IBaseAction action = new BaseAction(ActionID.Hide_PvE); + ModifyHide_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2245"><strong>Hide</strong></see> <i>PvE</i> (ROG NIN) [2245] [Ability] +/// </summary> +static partial void ModifyHide_2245(ref IBaseAction action); +public static IBaseAction Create2246() +{ + IBaseAction action = new BaseAction(ActionID.Assassinate_PvE); + ModifyAssassinate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2246"><strong>Assassinate</strong></see> <i>PvE</i> (NIN) [2246] [Ability] +/// </summary> +static partial void ModifyAssassinate_2246(ref IBaseAction action); +public static IBaseAction Create2247() +{ + IBaseAction action = new BaseAction(ActionID.ThrowingDagger_PvE); + ModifyThrowingDagger_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2247"><strong>Throwing Dagger</strong></see> <i>PvE</i> (ROG NIN) [2247] [Weaponskill] +/// </summary> +static partial void ModifyThrowingDagger_2247(ref IBaseAction action); +public static IBaseAction Create2248() +{ + IBaseAction action = new BaseAction(ActionID.Mug_PvE); + ModifyMug_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2248"><strong>Mug</strong></see> <i>PvE</i> (ROG NIN) [2248] [Ability] +/// </summary> +static partial void ModifyMug_2248(ref IBaseAction action); +public static IBaseAction Create2254() +{ + IBaseAction action = new BaseAction(ActionID.DeathBlossom_PvE); + ModifyDeathBlossom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2254"><strong>Death Blossom</strong></see> <i>PvE</i> (ROG NIN) [2254] [Weaponskill] +/// </summary> +static partial void ModifyDeathBlossom_2254(ref IBaseAction action); +public static IBaseAction Create2255() +{ + IBaseAction action = new BaseAction(ActionID.AeolianEdge_PvE); + ModifyAeolianEdge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2255"><strong>Aeolian Edge</strong></see> <i>PvE</i> (ROG NIN) [2255] [Weaponskill] +/// </summary> +static partial void ModifyAeolianEdge_2255(ref IBaseAction action); +public static IBaseAction Create2258() +{ + IBaseAction action = new BaseAction(ActionID.TrickAttack_PvE); + ModifyTrickAttack_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2258"><strong>Trick Attack</strong></see> <i>PvE</i> (ROG NIN) [2258] [Ability] +/// </summary> +static partial void ModifyTrickAttack_2258(ref IBaseAction action); +public static IBaseAction Create2259() +{ + IBaseAction action = new BaseAction(ActionID.Ten_PvE); + ModifyTen_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2259"><strong>Ten</strong></see> <i>PvE</i> (NIN) [2259] [Ability] +/// </summary> +static partial void ModifyTen_2259(ref IBaseAction action); +public static IBaseAction Create2260() +{ + IBaseAction action = new BaseAction(ActionID.Ninjutsu_PvE); + ModifyNinjutsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2260"><strong>Ninjutsu</strong></see> <i>PvE</i> (NIN) [2260] [Ability] +/// </summary> +static partial void ModifyNinjutsu_2260(ref IBaseAction action); +public static IBaseAction Create2261() +{ + IBaseAction action = new BaseAction(ActionID.Chi_PvE); + ModifyChi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2261"><strong>Chi</strong></see> <i>PvE</i> (NIN) [2261] [Ability] +/// </summary> +static partial void ModifyChi_2261(ref IBaseAction action); +public static IBaseAction Create2262() +{ + IBaseAction action = new BaseAction(ActionID.Shukuchi_PvE); + ModifyShukuchi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2262"><strong>Shukuchi</strong></see> <i>PvE</i> (NIN) [2262] [Ability] +/// </summary> +static partial void ModifyShukuchi_2262(ref IBaseAction action); +public static IBaseAction Create2263() +{ + IBaseAction action = new BaseAction(ActionID.Jin_PvE); + ModifyJin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2263"><strong>Jin</strong></see> <i>PvE</i> (NIN) [2263] [Ability] +/// </summary> +static partial void ModifyJin_2263(ref IBaseAction action); +public static IBaseAction Create2264() +{ + IBaseAction action = new BaseAction(ActionID.Kassatsu_PvE); + ModifyKassatsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2264"><strong>Kassatsu</strong></see> <i>PvE</i> (NIN) [2264] [Ability] +/// </summary> +static partial void ModifyKassatsu_2264(ref IBaseAction action); +public static IBaseAction Create2265() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvE); + ModifyFumaShuriken_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2265"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [2265] [Ability] +/// </summary> +static partial void ModifyFumaShuriken_2265(ref IBaseAction action); +public static IBaseAction Create2266() +{ + IBaseAction action = new BaseAction(ActionID.Katon_PvE); + ModifyKaton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2266"><strong>Katon</strong></see> <i>PvE</i> (NIN) [2266] [Ability] +/// </summary> +static partial void ModifyKaton_2266(ref IBaseAction action); +public static IBaseAction Create2267() +{ + IBaseAction action = new BaseAction(ActionID.Raiton_PvE); + ModifyRaiton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2267"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [2267] [Ability] +/// </summary> +static partial void ModifyRaiton_2267(ref IBaseAction action); +public static IBaseAction Create2268() +{ + IBaseAction action = new BaseAction(ActionID.Hyoton_PvE); + ModifyHyoton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2268"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [2268] [Ability] +/// </summary> +static partial void ModifyHyoton_2268(ref IBaseAction action); +public static IBaseAction Create2269() +{ + IBaseAction action = new BaseAction(ActionID.Huton_PvE); + ModifyHuton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2269"><strong>Huton</strong></see> <i>PvE</i> (NIN) [2269] [Ability] +/// </summary> +static partial void ModifyHuton_2269(ref IBaseAction action); +public static IBaseAction Create2270() +{ + IBaseAction action = new BaseAction(ActionID.Doton_PvE); + ModifyDoton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2270"><strong>Doton</strong></see> <i>PvE</i> (NIN) [2270] [Ability] +/// </summary> +static partial void ModifyDoton_2270(ref IBaseAction action); +public static IBaseAction Create2271() +{ + IBaseAction action = new BaseAction(ActionID.Suiton_PvE); + ModifySuiton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2271"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [2271] [Ability] +/// </summary> +static partial void ModifySuiton_2271(ref IBaseAction action); +public static IBaseAction Create2272() +{ + IBaseAction action = new BaseAction(ActionID.RabbitMedium_PvE); + ModifyRabbitMedium_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2272"><strong>Rabbit Medium</strong></see> <i>PvE</i> (NIN) [2272] [Ability] +/// </summary> +static partial void ModifyRabbitMedium_2272(ref IBaseAction action); +public static IBaseAction Create2360() +{ + IBaseAction action = new BaseAction(ActionID.FestalCant_PvE); + ModifyFestalCant_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2360"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special] +/// </summary> +static partial void ModifyFestalCant_2360(ref IBaseAction action); +public static IBaseAction Create2434() +{ + IBaseAction action = new BaseAction(ActionID.MagitekCannon_PvE_2434); + ModifyMagitekCannon_PvE_2434(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2434"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount] +/// </summary> +static partial void ModifyMagitekCannon_2434(ref IBaseAction action); +public static IBaseAction Create2435() +{ + IBaseAction action = new BaseAction(ActionID.PhotonStream_PvE_2435); + ModifyPhotonStream_PvE_2435(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2435"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount] +/// </summary> +static partial void ModifyPhotonStream_2435(ref IBaseAction action); +public static IBaseAction Create2436() +{ + IBaseAction action = new BaseAction(ActionID.FieryBreath_PvE_2436); + ModifyFieryBreath_PvE_2436(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2436"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount] +/// </summary> +static partial void ModifyFieryBreath_2436(ref IBaseAction action); +public static IBaseAction Create2437() +{ + IBaseAction action = new BaseAction(ActionID.Sneeze_PvE); + ModifySneeze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2437"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount] +/// </summary> +static partial void ModifySneeze_2437(ref IBaseAction action); +public static IBaseAction Create2443() +{ + IBaseAction action = new BaseAction(ActionID.ToadBreath_PvE); + ModifyToadBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2443"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special] +/// </summary> +static partial void ModifyToadBreath_2443(ref IBaseAction action); +public static IBaseAction Create2620() +{ + IBaseAction action = new BaseAction(ActionID.Saturate_PvE); + ModifySaturate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2620"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event] +/// </summary> +static partial void ModifySaturate_2620(ref IBaseAction action); +public static IBaseAction Create2630() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE_2630); + ModifyCannonfire_PvE_2630(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2630"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery] +/// </summary> +static partial void ModifyCannonfire_2630(ref IBaseAction action); +public static IBaseAction Create2645() +{ + IBaseAction action = new BaseAction(ActionID.ARealmReborn_PvE); + ModifyARealmReborn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2645"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item] +/// </summary> +static partial void ModifyARealmReborn_2645(ref IBaseAction action); +public static IBaseAction Create2864() +{ + IBaseAction action = new BaseAction(ActionID.RookAutoturret_PvE); + ModifyRookAutoturret_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2864"><strong>Rook Autoturret</strong></see> <i>PvE</i> (MCH) [2864] [Ability] +/// </summary> +static partial void ModifyRookAutoturret_2864(ref IBaseAction action); +public static IBaseAction Create2866() +{ + IBaseAction action = new BaseAction(ActionID.SplitShot_PvE); + ModifySplitShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2866"><strong>Split Shot</strong></see> <i>PvE</i> (MCH) [2866] [Weaponskill] +/// </summary> +static partial void ModifySplitShot_2866(ref IBaseAction action); +public static IBaseAction Create2868() +{ + IBaseAction action = new BaseAction(ActionID.SlugShot_PvE); + ModifySlugShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2868"><strong>Slug Shot</strong></see> <i>PvE</i> (MCH) [2868] [Weaponskill] +/// </summary> +static partial void ModifySlugShot_2868(ref IBaseAction action); +public static IBaseAction Create2870() +{ + IBaseAction action = new BaseAction(ActionID.SpreadShot_PvE); + ModifySpreadShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2870"><strong>Spread Shot</strong></see> <i>PvE</i> (MCH) [2870] [Weaponskill] +/// </summary> +static partial void ModifySpreadShot_2870(ref IBaseAction action); +public static IBaseAction Create2872() +{ + IBaseAction action = new BaseAction(ActionID.HotShot_PvE); + ModifyHotShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2872"><strong>Hot Shot</strong></see> <i>PvE</i> (MCH) [2872] [Weaponskill] +/// </summary> +static partial void ModifyHotShot_2872(ref IBaseAction action); +public static IBaseAction Create2873() +{ + IBaseAction action = new BaseAction(ActionID.CleanShot_PvE); + ModifyCleanShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2873"><strong>Clean Shot</strong></see> <i>PvE</i> (MCH) [2873] [Weaponskill] +/// </summary> +static partial void ModifyCleanShot_2873(ref IBaseAction action); +public static IBaseAction Create2874() +{ + IBaseAction action = new BaseAction(ActionID.GaussRound_PvE); + ModifyGaussRound_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2874"><strong>Gauss Round</strong></see> <i>PvE</i> (MCH) [2874] [Ability] +/// </summary> +static partial void ModifyGaussRound_2874(ref IBaseAction action); +public static IBaseAction Create2876() +{ + IBaseAction action = new BaseAction(ActionID.Reassemble_PvE); + ModifyReassemble_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2876"><strong>Reassemble</strong></see> <i>PvE</i> (MCH) [2876] [Ability] +/// </summary> +static partial void ModifyReassemble_2876(ref IBaseAction action); +public static IBaseAction Create2878() +{ + IBaseAction action = new BaseAction(ActionID.Wildfire_PvE); + ModifyWildfire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2878"><strong>Wildfire</strong></see> <i>PvE</i> (MCH) [2878] [Ability] +/// </summary> +static partial void ModifyWildfire_2878(ref IBaseAction action); +public static IBaseAction Create2887() +{ + IBaseAction action = new BaseAction(ActionID.Dismantle_PvE); + ModifyDismantle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2887"><strong>Dismantle</strong></see> <i>PvE</i> (MCH) [2887] [Ability] +/// </summary> +static partial void ModifyDismantle_2887(ref IBaseAction action); +public static IBaseAction Create2890() +{ + IBaseAction action = new BaseAction(ActionID.Ricochet_PvE); + ModifyRicochet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2890"><strong>Ricochet</strong></see> <i>PvE</i> (MCH) [2890] [Ability] +/// </summary> +static partial void ModifyRicochet_2890(ref IBaseAction action); +public static IBaseAction Create2894() +{ + IBaseAction action = new BaseAction(ActionID.EternityRing_PvE); + ModifyEternityRing_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/2894"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item] +/// </summary> +static partial void ModifyEternityRing_2894(ref IBaseAction action); +public static IBaseAction Create3139() +{ + IBaseAction action = new BaseAction(ActionID.ImpPunch_PvE); + ModifyImpPunch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3139"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special] +/// </summary> +static partial void ModifyImpPunch_3139(ref IBaseAction action); +public static IBaseAction Create3377() +{ + IBaseAction action = new BaseAction(ActionID.IronKiss_PvE_3377); + ModifyIronKiss_PvE_3377(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3377"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery] +/// </summary> +static partial void ModifyIronKiss_3377(ref IBaseAction action); +public static IBaseAction Create3378() +{ + IBaseAction action = new BaseAction(ActionID.SpindlyFinger_PvE_3378); + ModifySpindlyFinger_PvE_3378(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3378"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery] +/// </summary> +static partial void ModifySpindlyFinger_3378(ref IBaseAction action); +public static IBaseAction Create3379() +{ + IBaseAction action = new BaseAction(ActionID.PitchBomb_PvE); + ModifyPitchBomb_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3379"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery] +/// </summary> +static partial void ModifyPitchBomb_3379(ref IBaseAction action); +public static IBaseAction Create3504() +{ + IBaseAction action = new BaseAction(ActionID.Quickchant_PvE); + ModifyQuickchant_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3504"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special] +/// </summary> +static partial void ModifyQuickchant_3504(ref IBaseAction action); +public static IBaseAction Create3506() +{ + IBaseAction action = new BaseAction(ActionID.LowVoltage_PvE); + ModifyLowVoltage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3506"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount] +/// </summary> +static partial void ModifyLowVoltage_3506(ref IBaseAction action); +public static IBaseAction Create3538() +{ + IBaseAction action = new BaseAction(ActionID.GoringBlade_PvE); + ModifyGoringBlade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3538"><strong>Goring Blade</strong></see> <i>PvE</i> (PLD) [3538] [Weaponskill] +/// </summary> +static partial void ModifyGoringBlade_3538(ref IBaseAction action); +public static IBaseAction Create3539() +{ + IBaseAction action = new BaseAction(ActionID.RoyalAuthority_PvE); + ModifyRoyalAuthority_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3539"><strong>Royal Authority</strong></see> <i>PvE</i> (PLD) [3539] [Weaponskill] +/// </summary> +static partial void ModifyRoyalAuthority_3539(ref IBaseAction action); +public static IBaseAction Create3540() +{ + IBaseAction action = new BaseAction(ActionID.DivineVeil_PvE); + ModifyDivineVeil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3540"><strong>Divine Veil</strong></see> <i>PvE</i> (PLD) [3540] [Ability] +/// </summary> +static partial void ModifyDivineVeil_3540(ref IBaseAction action); +public static IBaseAction Create3541() +{ + IBaseAction action = new BaseAction(ActionID.Clemency_PvE); + ModifyClemency_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3541"><strong>Clemency</strong></see> <i>PvE</i> (PLD) [3541] [Spell] +/// </summary> +static partial void ModifyClemency_3541(ref IBaseAction action); +public static IBaseAction Create3542() +{ + IBaseAction action = new BaseAction(ActionID.Sheltron_PvE); + ModifySheltron_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3542"><strong>Sheltron</strong></see> <i>PvE</i> (PLD) [3542] [Ability] +/// </summary> +static partial void ModifySheltron_3542(ref IBaseAction action); +public static IBaseAction Create3543() +{ + IBaseAction action = new BaseAction(ActionID.TornadoKick_PvE); + ModifyTornadoKick_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3543"><strong>Tornado Kick</strong></see> <i>PvE</i> (MNK) [3543] [Weaponskill] +/// </summary> +static partial void ModifyTornadoKick_3543(ref IBaseAction action); +public static IBaseAction Create3545() +{ + IBaseAction action = new BaseAction(ActionID.ElixirField_PvE); + ModifyElixirField_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3545"><strong>Elixir Field</strong></see> <i>PvE</i> (MNK) [3545] [Weaponskill] +/// </summary> +static partial void ModifyElixirField_3545(ref IBaseAction action); +public static IBaseAction Create3546() +{ + IBaseAction action = new BaseAction(ActionID.Meditation_PvE); + ModifyMeditation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3546"><strong>Meditation</strong></see> <i>PvE</i> (PGL MNK) [3546] [Ability] +/// </summary> +static partial void ModifyMeditation_3546(ref IBaseAction action); +public static IBaseAction Create3547() +{ + IBaseAction action = new BaseAction(ActionID.TheForbiddenChakra_PvE); + ModifyTheForbiddenChakra_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3547"><strong>the Forbidden Chakra</strong></see> <i>PvE</i> (MNK) [3547] [Ability] +/// </summary> +static partial void ModifyTheForbiddenChakra_3547(ref IBaseAction action); +public static IBaseAction Create3549() +{ + IBaseAction action = new BaseAction(ActionID.FellCleave_PvE); + ModifyFellCleave_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3549"><strong>Fell Cleave</strong></see> <i>PvE</i> (WAR) [3549] [Weaponskill] +/// </summary> +static partial void ModifyFellCleave_3549(ref IBaseAction action); +public static IBaseAction Create3550() +{ + IBaseAction action = new BaseAction(ActionID.Decimate_PvE); + ModifyDecimate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3550"><strong>Decimate</strong></see> <i>PvE</i> (WAR) [3550] [Weaponskill] +/// </summary> +static partial void ModifyDecimate_3550(ref IBaseAction action); +public static IBaseAction Create3551() +{ + IBaseAction action = new BaseAction(ActionID.RawIntuition_PvE); + ModifyRawIntuition_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3551"><strong>Raw Intuition</strong></see> <i>PvE</i> (WAR) [3551] [Ability] +/// </summary> +static partial void ModifyRawIntuition_3551(ref IBaseAction action); +public static IBaseAction Create3552() +{ + IBaseAction action = new BaseAction(ActionID.Equilibrium_PvE); + ModifyEquilibrium_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3552"><strong>Equilibrium</strong></see> <i>PvE</i> (WAR) [3552] [Ability] +/// </summary> +static partial void ModifyEquilibrium_3552(ref IBaseAction action); +public static IBaseAction Create3554() +{ + IBaseAction action = new BaseAction(ActionID.FangAndClaw_PvE); + ModifyFangAndClaw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3554"><strong>Fang and Claw</strong></see> <i>PvE</i> (DRG) [3554] [Weaponskill] +/// </summary> +static partial void ModifyFangAndClaw_3554(ref IBaseAction action); +public static IBaseAction Create3555() +{ + IBaseAction action = new BaseAction(ActionID.Geirskogul_PvE); + ModifyGeirskogul_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3555"><strong>Geirskogul</strong></see> <i>PvE</i> (DRG) [3555] [Ability] +/// </summary> +static partial void ModifyGeirskogul_3555(ref IBaseAction action); +public static IBaseAction Create3556() +{ + IBaseAction action = new BaseAction(ActionID.WheelingThrust_PvE); + ModifyWheelingThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3556"><strong>Wheeling Thrust</strong></see> <i>PvE</i> (DRG) [3556] [Weaponskill] +/// </summary> +static partial void ModifyWheelingThrust_3556(ref IBaseAction action); +public static IBaseAction Create3557() +{ + IBaseAction action = new BaseAction(ActionID.BattleLitany_PvE); + ModifyBattleLitany_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3557"><strong>Battle Litany</strong></see> <i>PvE</i> (DRG) [3557] [Ability] +/// </summary> +static partial void ModifyBattleLitany_3557(ref IBaseAction action); +public static IBaseAction Create3558() +{ + IBaseAction action = new BaseAction(ActionID.EmpyrealArrow_PvE); + ModifyEmpyrealArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3558"><strong>Empyreal Arrow</strong></see> <i>PvE</i> (BRD) [3558] [Ability] +/// </summary> +static partial void ModifyEmpyrealArrow_3558(ref IBaseAction action); +public static IBaseAction Create3559() +{ + IBaseAction action = new BaseAction(ActionID.TheWanderersMinuet_PvE); + ModifyTheWanderersMinuet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3559"><strong>the Wanderer's Minuet</strong></see> <i>PvE</i> (BRD) [3559] [Ability] +/// </summary> +static partial void ModifyTheWanderersMinuet_3559(ref IBaseAction action); +public static IBaseAction Create3560() +{ + IBaseAction action = new BaseAction(ActionID.IronJaws_PvE); + ModifyIronJaws_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3560"><strong>Iron Jaws</strong></see> <i>PvE</i> (BRD) [3560] [Weaponskill] +/// </summary> +static partial void ModifyIronJaws_3560(ref IBaseAction action); +public static IBaseAction Create3561() +{ + IBaseAction action = new BaseAction(ActionID.TheWardensPaean_PvE); + ModifyTheWardensPaean_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3561"><strong>the Warden's Paean</strong></see> <i>PvE</i> (BRD) [3561] [Ability] +/// </summary> +static partial void ModifyTheWardensPaean_3561(ref IBaseAction action); +public static IBaseAction Create3562() +{ + IBaseAction action = new BaseAction(ActionID.Sidewinder_PvE); + ModifySidewinder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3562"><strong>Sidewinder</strong></see> <i>PvE</i> (BRD) [3562] [Ability] +/// </summary> +static partial void ModifySidewinder_3562(ref IBaseAction action); +public static IBaseAction Create3563() +{ + IBaseAction action = new BaseAction(ActionID.ArmorCrush_PvE); + ModifyArmorCrush_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3563"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [3563] [Weaponskill] +/// </summary> +static partial void ModifyArmorCrush_3563(ref IBaseAction action); +public static IBaseAction Create3566() +{ + IBaseAction action = new BaseAction(ActionID.DreamWithinADream_PvE); + ModifyDreamWithinADream_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3566"><strong>Dream Within a Dream</strong></see> <i>PvE</i> (NIN) [3566] [Ability] +/// </summary> +static partial void ModifyDreamWithinADream_3566(ref IBaseAction action); +public static IBaseAction Create3568() +{ + IBaseAction action = new BaseAction(ActionID.StoneIii_PvE); + ModifyStoneIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3568"><strong>Stone III</strong></see> <i>PvE</i> (WHM) [3568] [Spell] +/// </summary> +static partial void ModifyStoneIii_3568(ref IBaseAction action); +public static IBaseAction Create3569() +{ + IBaseAction action = new BaseAction(ActionID.Asylum_PvE); + ModifyAsylum_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3569"><strong>Asylum</strong></see> <i>PvE</i> (WHM) [3569] [Ability] +/// </summary> +static partial void ModifyAsylum_3569(ref IBaseAction action); +public static IBaseAction Create3570() +{ + IBaseAction action = new BaseAction(ActionID.Tetragrammaton_PvE); + ModifyTetragrammaton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3570"><strong>Tetragrammaton</strong></see> <i>PvE</i> (WHM) [3570] [Ability] +/// </summary> +static partial void ModifyTetragrammaton_3570(ref IBaseAction action); +public static IBaseAction Create3571() +{ + IBaseAction action = new BaseAction(ActionID.Assize_PvE); + ModifyAssize_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3571"><strong>Assize</strong></see> <i>PvE</i> (WHM) [3571] [Ability] +/// </summary> +static partial void ModifyAssize_3571(ref IBaseAction action); +public static IBaseAction Create3573() +{ + IBaseAction action = new BaseAction(ActionID.LeyLines_PvE); + ModifyLeyLines_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3573"><strong>Ley Lines</strong></see> <i>PvE</i> (BLM) [3573] [Ability] +/// </summary> +static partial void ModifyLeyLines_3573(ref IBaseAction action); +public static IBaseAction Create3574() +{ + IBaseAction action = new BaseAction(ActionID.Sharpcast_PvE); + ModifySharpcast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3574"><strong>Sharpcast</strong></see> <i>PvE</i> (BLM) [3574] [Ability] +/// </summary> +static partial void ModifySharpcast_3574(ref IBaseAction action); +public static IBaseAction Create3576() +{ + IBaseAction action = new BaseAction(ActionID.BlizzardIv_PvE); + ModifyBlizzardIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3576"><strong>Blizzard IV</strong></see> <i>PvE</i> (BLM) [3576] [Spell] +/// </summary> +static partial void ModifyBlizzardIv_3576(ref IBaseAction action); +public static IBaseAction Create3577() +{ + IBaseAction action = new BaseAction(ActionID.FireIv_PvE); + ModifyFireIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3577"><strong>Fire IV</strong></see> <i>PvE</i> (BLM) [3577] [Spell] +/// </summary> +static partial void ModifyFireIv_3577(ref IBaseAction action); +public static IBaseAction Create3578() +{ + IBaseAction action = new BaseAction(ActionID.Painflare_PvE); + ModifyPainflare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3578"><strong>Painflare</strong></see> <i>PvE</i> (SMN) [3578] [Ability] +/// </summary> +static partial void ModifyPainflare_3578(ref IBaseAction action); +public static IBaseAction Create3579() +{ + IBaseAction action = new BaseAction(ActionID.RuinIii_PvE); + ModifyRuinIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3579"><strong>Ruin III</strong></see> <i>PvE</i> (SMN) [3579] [Spell] +/// </summary> +static partial void ModifyRuinIii_3579(ref IBaseAction action); +public static IBaseAction Create3581() +{ + IBaseAction action = new BaseAction(ActionID.DreadwyrmTrance_PvE); + ModifyDreadwyrmTrance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3581"><strong>Dreadwyrm Trance</strong></see> <i>PvE</i> (SMN) [3581] [Spell] +/// </summary> +static partial void ModifyDreadwyrmTrance_3581(ref IBaseAction action); +public static IBaseAction Create3582() +{ + IBaseAction action = new BaseAction(ActionID.Deathflare_PvE); + ModifyDeathflare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3582"><strong>Deathflare</strong></see> <i>PvE</i> (SMN) [3582] [Ability] +/// </summary> +static partial void ModifyDeathflare_3582(ref IBaseAction action); +public static IBaseAction Create3583() +{ + IBaseAction action = new BaseAction(ActionID.Indomitability_PvE); + ModifyIndomitability_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3583"><strong>Indomitability</strong></see> <i>PvE</i> (SCH) [3583] [Ability] +/// </summary> +static partial void ModifyIndomitability_3583(ref IBaseAction action); +public static IBaseAction Create3584() +{ + IBaseAction action = new BaseAction(ActionID.Broil_PvE); + ModifyBroil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3584"><strong>Broil</strong></see> <i>PvE</i> (SCH) [3584] [Spell] +/// </summary> +static partial void ModifyBroil_3584(ref IBaseAction action); +public static IBaseAction Create3585() +{ + IBaseAction action = new BaseAction(ActionID.DeploymentTactics_PvE); + ModifyDeploymentTactics_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3585"><strong>Deployment Tactics</strong></see> <i>PvE</i> (SCH) [3585] [Ability] +/// </summary> +static partial void ModifyDeploymentTactics_3585(ref IBaseAction action); +public static IBaseAction Create3586() +{ + IBaseAction action = new BaseAction(ActionID.EmergencyTactics_PvE); + ModifyEmergencyTactics_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3586"><strong>Emergency Tactics</strong></see> <i>PvE</i> (SCH) [3586] [Ability] +/// </summary> +static partial void ModifyEmergencyTactics_3586(ref IBaseAction action); +public static IBaseAction Create3587() +{ + IBaseAction action = new BaseAction(ActionID.Dissipation_PvE); + ModifyDissipation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3587"><strong>Dissipation</strong></see> <i>PvE</i> (SCH) [3587] [Ability] +/// </summary> +static partial void ModifyDissipation_3587(ref IBaseAction action); +public static IBaseAction Create3590() +{ + IBaseAction action = new BaseAction(ActionID.Draw_PvE); + ModifyDraw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3590"><strong>Draw</strong></see> <i>PvE</i> (AST) [3590] [Ability] +/// </summary> +static partial void ModifyDraw_3590(ref IBaseAction action); +public static IBaseAction Create3593() +{ + IBaseAction action = new BaseAction(ActionID.Redraw_PvE); + ModifyRedraw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3593"><strong>Redraw</strong></see> <i>PvE</i> (AST) [3593] [Ability] +/// </summary> +static partial void ModifyRedraw_3593(ref IBaseAction action); +public static IBaseAction Create3594() +{ + IBaseAction action = new BaseAction(ActionID.Benefic_PvE); + ModifyBenefic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3594"><strong>Benefic</strong></see> <i>PvE</i> (AST) [3594] [Spell] +/// </summary> +static partial void ModifyBenefic_3594(ref IBaseAction action); +public static IBaseAction Create3595() +{ + IBaseAction action = new BaseAction(ActionID.AspectedBenefic_PvE); + ModifyAspectedBenefic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3595"><strong>Aspected Benefic</strong></see> <i>PvE</i> (AST) [3595] [Spell] +/// </summary> +static partial void ModifyAspectedBenefic_3595(ref IBaseAction action); +public static IBaseAction Create3596() +{ + IBaseAction action = new BaseAction(ActionID.Malefic_PvE); + ModifyMalefic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3596"><strong>Malefic</strong></see> <i>PvE</i> (AST) [3596] [Spell] +/// </summary> +static partial void ModifyMalefic_3596(ref IBaseAction action); +public static IBaseAction Create3598() +{ + IBaseAction action = new BaseAction(ActionID.MaleficIi_PvE); + ModifyMaleficIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3598"><strong>Malefic II</strong></see> <i>PvE</i> (AST) [3598] [Spell] +/// </summary> +static partial void ModifyMaleficIi_3598(ref IBaseAction action); +public static IBaseAction Create3599() +{ + IBaseAction action = new BaseAction(ActionID.Combust_PvE); + ModifyCombust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3599"><strong>Combust</strong></see> <i>PvE</i> (AST) [3599] [Spell] +/// </summary> +static partial void ModifyCombust_3599(ref IBaseAction action); +public static IBaseAction Create3600() +{ + IBaseAction action = new BaseAction(ActionID.Helios_PvE); + ModifyHelios_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3600"><strong>Helios</strong></see> <i>PvE</i> (AST) [3600] [Spell] +/// </summary> +static partial void ModifyHelios_3600(ref IBaseAction action); +public static IBaseAction Create3601() +{ + IBaseAction action = new BaseAction(ActionID.AspectedHelios_PvE); + ModifyAspectedHelios_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3601"><strong>Aspected Helios</strong></see> <i>PvE</i> (AST) [3601] [Spell] +/// </summary> +static partial void ModifyAspectedHelios_3601(ref IBaseAction action); +public static IBaseAction Create3603() +{ + IBaseAction action = new BaseAction(ActionID.Ascend_PvE); + ModifyAscend_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3603"><strong>Ascend</strong></see> <i>PvE</i> (AST) [3603] [Spell] +/// </summary> +static partial void ModifyAscend_3603(ref IBaseAction action); +public static IBaseAction Create3606() +{ + IBaseAction action = new BaseAction(ActionID.Lightspeed_PvE); + ModifyLightspeed_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3606"><strong>Lightspeed</strong></see> <i>PvE</i> (AST) [3606] [Ability] +/// </summary> +static partial void ModifyLightspeed_3606(ref IBaseAction action); +public static IBaseAction Create3608() +{ + IBaseAction action = new BaseAction(ActionID.CombustIi_PvE); + ModifyCombustIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3608"><strong>Combust II</strong></see> <i>PvE</i> (AST) [3608] [Spell] +/// </summary> +static partial void ModifyCombustIi_3608(ref IBaseAction action); +public static IBaseAction Create3610() +{ + IBaseAction action = new BaseAction(ActionID.BeneficIi_PvE); + ModifyBeneficIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3610"><strong>Benefic II</strong></see> <i>PvE</i> (AST) [3610] [Spell] +/// </summary> +static partial void ModifyBeneficIi_3610(ref IBaseAction action); +public static IBaseAction Create3612() +{ + IBaseAction action = new BaseAction(ActionID.Synastry_PvE); + ModifySynastry_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3612"><strong>Synastry</strong></see> <i>PvE</i> (AST) [3612] [Ability] +/// </summary> +static partial void ModifySynastry_3612(ref IBaseAction action); +public static IBaseAction Create3613() +{ + IBaseAction action = new BaseAction(ActionID.CollectiveUnconscious_PvE); + ModifyCollectiveUnconscious_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3613"><strong>Collective Unconscious</strong></see> <i>PvE</i> (AST) [3613] [Ability] +/// </summary> +static partial void ModifyCollectiveUnconscious_3613(ref IBaseAction action); +public static IBaseAction Create3614() +{ + IBaseAction action = new BaseAction(ActionID.EssentialDignity_PvE); + ModifyEssentialDignity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3614"><strong>Essential Dignity</strong></see> <i>PvE</i> (AST) [3614] [Ability] +/// </summary> +static partial void ModifyEssentialDignity_3614(ref IBaseAction action); +public static IBaseAction Create3615() +{ + IBaseAction action = new BaseAction(ActionID.Gravity_PvE); + ModifyGravity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3615"><strong>Gravity</strong></see> <i>PvE</i> (AST) [3615] [Spell] +/// </summary> +static partial void ModifyGravity_3615(ref IBaseAction action); +public static IBaseAction Create3617() +{ + IBaseAction action = new BaseAction(ActionID.HardSlash_PvE); + ModifyHardSlash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3617"><strong>Hard Slash</strong></see> <i>PvE</i> (DRK) [3617] [Weaponskill] +/// </summary> +static partial void ModifyHardSlash_3617(ref IBaseAction action); +public static IBaseAction Create3621() +{ + IBaseAction action = new BaseAction(ActionID.Unleash_PvE); + ModifyUnleash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3621"><strong>Unleash</strong></see> <i>PvE</i> (DRK) [3621] [Spell] +/// </summary> +static partial void ModifyUnleash_3621(ref IBaseAction action); +public static IBaseAction Create3623() +{ + IBaseAction action = new BaseAction(ActionID.SyphonStrike_PvE); + ModifySyphonStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3623"><strong>Syphon Strike</strong></see> <i>PvE</i> (DRK) [3623] [Weaponskill] +/// </summary> +static partial void ModifySyphonStrike_3623(ref IBaseAction action); +public static IBaseAction Create3624() +{ + IBaseAction action = new BaseAction(ActionID.Unmend_PvE); + ModifyUnmend_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3624"><strong>Unmend</strong></see> <i>PvE</i> (DRK) [3624] [Spell] +/// </summary> +static partial void ModifyUnmend_3624(ref IBaseAction action); +public static IBaseAction Create3625() +{ + IBaseAction action = new BaseAction(ActionID.BloodWeapon_PvE); + ModifyBloodWeapon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3625"><strong>Blood Weapon</strong></see> <i>PvE</i> (DRK) [3625] [Ability] +/// </summary> +static partial void ModifyBloodWeapon_3625(ref IBaseAction action); +public static IBaseAction Create3629() +{ + IBaseAction action = new BaseAction(ActionID.Grit_PvE); + ModifyGrit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3629"><strong>Grit</strong></see> <i>PvE</i> (DRK) [3629] [Ability] +/// </summary> +static partial void ModifyGrit_3629(ref IBaseAction action); +public static IBaseAction Create3632() +{ + IBaseAction action = new BaseAction(ActionID.Souleater_PvE); + ModifySouleater_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3632"><strong>Souleater</strong></see> <i>PvE</i> (DRK) [3632] [Weaponskill] +/// </summary> +static partial void ModifySouleater_3632(ref IBaseAction action); +public static IBaseAction Create3634() +{ + IBaseAction action = new BaseAction(ActionID.DarkMind_PvE); + ModifyDarkMind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3634"><strong>Dark Mind</strong></see> <i>PvE</i> (DRK) [3634] [Ability] +/// </summary> +static partial void ModifyDarkMind_3634(ref IBaseAction action); +public static IBaseAction Create3636() +{ + IBaseAction action = new BaseAction(ActionID.ShadowWall_PvE); + ModifyShadowWall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3636"><strong>Shadow Wall</strong></see> <i>PvE</i> (DRK) [3636] [Ability] +/// </summary> +static partial void ModifyShadowWall_3636(ref IBaseAction action); +public static IBaseAction Create3638() +{ + IBaseAction action = new BaseAction(ActionID.LivingDead_PvE); + ModifyLivingDead_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3638"><strong>Living Dead</strong></see> <i>PvE</i> (DRK) [3638] [Ability] +/// </summary> +static partial void ModifyLivingDead_3638(ref IBaseAction action); +public static IBaseAction Create3639() +{ + IBaseAction action = new BaseAction(ActionID.SaltedEarth_PvE); + ModifySaltedEarth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3639"><strong>Salted Earth</strong></see> <i>PvE</i> (DRK) [3639] [Ability] +/// </summary> +static partial void ModifySaltedEarth_3639(ref IBaseAction action); +public static IBaseAction Create3640() +{ + IBaseAction action = new BaseAction(ActionID.Plunge_PvE); + ModifyPlunge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3640"><strong>Plunge</strong></see> <i>PvE</i> (DRK) [3640] [Ability] +/// </summary> +static partial void ModifyPlunge_3640(ref IBaseAction action); +public static IBaseAction Create3641() +{ + IBaseAction action = new BaseAction(ActionID.AbyssalDrain_PvE); + ModifyAbyssalDrain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3641"><strong>Abyssal Drain</strong></see> <i>PvE</i> (DRK) [3641] [Ability] +/// </summary> +static partial void ModifyAbyssalDrain_3641(ref IBaseAction action); +public static IBaseAction Create3643() +{ + IBaseAction action = new BaseAction(ActionID.CarveAndSpit_PvE); + ModifyCarveAndSpit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/3643"><strong>Carve and Spit</strong></see> <i>PvE</i> (DRK) [3643] [Ability] +/// </summary> +static partial void ModifyCarveAndSpit_3643(ref IBaseAction action); +public static IBaseAction Create4062() +{ + IBaseAction action = new BaseAction(ActionID.Heavydoom_PvE); + ModifyHeavydoom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4062"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount] +/// </summary> +static partial void ModifyHeavydoom_4062(ref IBaseAction action); +public static IBaseAction Create4063() +{ + IBaseAction action = new BaseAction(ActionID.Cracklyplume_PvE); + ModifyCracklyplume_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4063"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount] +/// </summary> +static partial void ModifyCracklyplume_4063(ref IBaseAction action); +public static IBaseAction Create4064() +{ + IBaseAction action = new BaseAction(ActionID.Meltyspume_PvE); + ModifyMeltyspume_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4064"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount] +/// </summary> +static partial void ModifyMeltyspume_4064(ref IBaseAction action); +public static IBaseAction Create4065() +{ + IBaseAction action = new BaseAction(ActionID.Stickyloom_PvE); + ModifyStickyloom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4065"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount] +/// </summary> +static partial void ModifyStickyloom_4065(ref IBaseAction action); +public static IBaseAction Create4066() +{ + IBaseAction action = new BaseAction(ActionID.Selfdetonate_PvE); + ModifySelfdetonate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4066"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount] +/// </summary> +static partial void ModifySelfdetonate_4066(ref IBaseAction action); +public static IBaseAction Create4067() +{ + IBaseAction action = new BaseAction(ActionID.Recharge_PvE); + ModifyRecharge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4067"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount] +/// </summary> +static partial void ModifyRecharge_4067(ref IBaseAction action); +public static IBaseAction Create4072() +{ + IBaseAction action = new BaseAction(ActionID.ClearVision_PvE); + ModifyClearVision_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4072"><strong>Clear Vision</strong></see> <i>PvE</i> (MIN) [4072] [DoL Ability] +/// </summary> +static partial void ModifyClearVision_4072(ref IBaseAction action); +public static IBaseAction Create4073() +{ + IBaseAction action = new BaseAction(ActionID.BountifulYield_PvE); + ModifyBountifulYield_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4073"><strong>Bountiful Yield</strong></see> <i>PvE</i> (MIN) [4073] [DoL Ability] +/// </summary> +static partial void ModifyBountifulYield_4073(ref IBaseAction action); +public static IBaseAction Create4081() +{ + IBaseAction action = new BaseAction(ActionID.LuckOfTheMountaineer_PvE); + ModifyLuckOfTheMountaineer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4081"><strong>Luck of the Mountaineer</strong></see> <i>PvE</i> (MIN) [4081] [DoL Ability] +/// </summary> +static partial void ModifyLuckOfTheMountaineer_4081(ref IBaseAction action); +public static IBaseAction Create4086() +{ + IBaseAction action = new BaseAction(ActionID.FloraMastery_PvE); + ModifyFloraMastery_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4086"><strong>Flora Mastery</strong></see> <i>PvE</i> (BTN) [4086] [DoL Ability] +/// </summary> +static partial void ModifyFloraMastery_4086(ref IBaseAction action); +public static IBaseAction Create4087() +{ + IBaseAction action = new BaseAction(ActionID.BountifulHarvest_PvE); + ModifyBountifulHarvest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4087"><strong>Bountiful Harvest</strong></see> <i>PvE</i> (BTN) [4087] [DoL Ability] +/// </summary> +static partial void ModifyBountifulHarvest_4087(ref IBaseAction action); +public static IBaseAction Create4095() +{ + IBaseAction action = new BaseAction(ActionID.LuckOfThePioneer_PvE); + ModifyLuckOfThePioneer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4095"><strong>Luck of the Pioneer</strong></see> <i>PvE</i> (BTN) [4095] [DoL Ability] +/// </summary> +static partial void ModifyLuckOfThePioneer_4095(ref IBaseAction action); +public static IBaseAction Create4100() +{ + IBaseAction action = new BaseAction(ActionID.Snagging_PvE); + ModifySnagging_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4100"><strong>Snagging</strong></see> <i>PvE</i> (FSH) [4100] [DoL Ability] +/// </summary> +static partial void ModifySnagging_4100(ref IBaseAction action); +public static IBaseAction Create4101() +{ + IBaseAction action = new BaseAction(ActionID.Collect_PvE_4101); + ModifyCollect_PvE_4101(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4101"><strong>Collect</strong></see> <i>PvE</i> (FSH) [4101] [Ability] +/// </summary> +static partial void ModifyCollect_4101(ref IBaseAction action); +public static IBaseAction Create4102() +{ + IBaseAction action = new BaseAction(ActionID.Patience_PvE); + ModifyPatience_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4102"><strong>Patience</strong></see> <i>PvE</i> (FSH) [4102] [DoL Ability] +/// </summary> +static partial void ModifyPatience_4102(ref IBaseAction action); +public static IBaseAction Create4103() +{ + IBaseAction action = new BaseAction(ActionID.PowerfulHookset_PvE); + ModifyPowerfulHookset_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4103"><strong>Powerful Hookset</strong></see> <i>PvE</i> (FSH) [4103] [DoL Ability] +/// </summary> +static partial void ModifyPowerfulHookset_4103(ref IBaseAction action); +public static IBaseAction Create4104() +{ + IBaseAction action = new BaseAction(ActionID.Chum_PvE); + ModifyChum_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4104"><strong>Chum</strong></see> <i>PvE</i> (FSH) [4104] [DoL Ability] +/// </summary> +static partial void ModifyChum_4104(ref IBaseAction action); +public static IBaseAction Create4105() +{ + IBaseAction action = new BaseAction(ActionID.FishEyes_PvE); + ModifyFishEyes_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4105"><strong>Fish Eyes</strong></see> <i>PvE</i> (FSH) [4105] [DoL Ability] +/// </summary> +static partial void ModifyFishEyes_4105(ref IBaseAction action); +public static IBaseAction Create4106() +{ + IBaseAction action = new BaseAction(ActionID.PatienceIi_PvE); + ModifyPatienceIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4106"><strong>Patience II</strong></see> <i>PvE</i> (FSH) [4106] [DoL Ability] +/// </summary> +static partial void ModifyPatienceIi_4106(ref IBaseAction action); +public static IBaseAction Create4179() +{ + IBaseAction action = new BaseAction(ActionID.PrecisionHookset_PvE); + ModifyPrecisionHookset_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4179"><strong>Precision Hookset</strong></see> <i>PvE</i> (FSH) [4179] [DoL Ability] +/// </summary> +static partial void ModifyPrecisionHookset_4179(ref IBaseAction action); +public static IBaseAction Create4238() +{ + IBaseAction action = new BaseAction(ActionID.BigShot_PvE); + ModifyBigShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4238"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break] +/// </summary> +static partial void ModifyBigShot_4238(ref IBaseAction action); +public static IBaseAction Create4239() +{ + IBaseAction action = new BaseAction(ActionID.Desperado_PvE); + ModifyDesperado_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4239"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break] +/// </summary> +static partial void ModifyDesperado_4239(ref IBaseAction action); +public static IBaseAction Create4240() +{ + IBaseAction action = new BaseAction(ActionID.LandWaker_PvE); + ModifyLandWaker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4240"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break] +/// </summary> +static partial void ModifyLandWaker_4240(ref IBaseAction action); +public static IBaseAction Create4241() +{ + IBaseAction action = new BaseAction(ActionID.DarkForce_PvE); + ModifyDarkForce_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4241"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break] +/// </summary> +static partial void ModifyDarkForce_4241(ref IBaseAction action); +public static IBaseAction Create4242() +{ + IBaseAction action = new BaseAction(ActionID.DragonsongDive_PvE); + ModifyDragonsongDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4242"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break] +/// </summary> +static partial void ModifyDragonsongDive_4242(ref IBaseAction action); +public static IBaseAction Create4243() +{ + IBaseAction action = new BaseAction(ActionID.Chimatsuri_PvE); + ModifyChimatsuri_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4243"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break] +/// </summary> +static partial void ModifyChimatsuri_4243(ref IBaseAction action); +public static IBaseAction Create4244() +{ + IBaseAction action = new BaseAction(ActionID.SagittariusArrow_PvE); + ModifySagittariusArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4244"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break] +/// </summary> +static partial void ModifySagittariusArrow_4244(ref IBaseAction action); +public static IBaseAction Create4245() +{ + IBaseAction action = new BaseAction(ActionID.SatelliteBeam_PvE); + ModifySatelliteBeam_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4245"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break] +/// </summary> +static partial void ModifySatelliteBeam_4245(ref IBaseAction action); +public static IBaseAction Create4246() +{ + IBaseAction action = new BaseAction(ActionID.Teraflare_PvE); + ModifyTeraflare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4246"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break] +/// </summary> +static partial void ModifyTeraflare_4246(ref IBaseAction action); +public static IBaseAction Create4247() +{ + IBaseAction action = new BaseAction(ActionID.AngelFeathers_PvE); + ModifyAngelFeathers_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4247"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break] +/// </summary> +static partial void ModifyAngelFeathers_4247(ref IBaseAction action); +public static IBaseAction Create4248() +{ + IBaseAction action = new BaseAction(ActionID.AstralStasis_PvE); + ModifyAstralStasis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4248"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break] +/// </summary> +static partial void ModifyAstralStasis_4248(ref IBaseAction action); +public static IBaseAction Create4262() +{ + IBaseAction action = new BaseAction(ActionID.FormShift_PvE); + ModifyFormShift_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4262"><strong>Form Shift</strong></see> <i>PvE</i> (MNK) [4262] [Weaponskill] +/// </summary> +static partial void ModifyFormShift_4262(ref IBaseAction action); +public static IBaseAction Create4401() +{ + IBaseAction action = new BaseAction(ActionID.TheBalance_PvE); + ModifyTheBalance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4401"><strong>the Balance</strong></see> <i>PvE</i> (AST) [4401] [Ability] +/// </summary> +static partial void ModifyTheBalance_4401(ref IBaseAction action); +public static IBaseAction Create4402() +{ + IBaseAction action = new BaseAction(ActionID.TheArrow_PvE); + ModifyTheArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4402"><strong>the Arrow</strong></see> <i>PvE</i> (AST) [4402] [Ability] +/// </summary> +static partial void ModifyTheArrow_4402(ref IBaseAction action); +public static IBaseAction Create4403() +{ + IBaseAction action = new BaseAction(ActionID.TheSpear_PvE); + ModifyTheSpear_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4403"><strong>the Spear</strong></see> <i>PvE</i> (AST) [4403] [Ability] +/// </summary> +static partial void ModifyTheSpear_4403(ref IBaseAction action); +public static IBaseAction Create4404() +{ + IBaseAction action = new BaseAction(ActionID.TheBole_PvE); + ModifyTheBole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4404"><strong>the Bole</strong></see> <i>PvE</i> (AST) [4404] [Ability] +/// </summary> +static partial void ModifyTheBole_4404(ref IBaseAction action); +public static IBaseAction Create4405() +{ + IBaseAction action = new BaseAction(ActionID.TheEwer_PvE); + ModifyTheEwer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4405"><strong>the Ewer</strong></see> <i>PvE</i> (AST) [4405] [Ability] +/// </summary> +static partial void ModifyTheEwer_4405(ref IBaseAction action); +public static IBaseAction Create4406() +{ + IBaseAction action = new BaseAction(ActionID.TheSpire_PvE); + ModifyTheSpire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4406"><strong>the Spire</strong></see> <i>PvE</i> (AST) [4406] [Ability] +/// </summary> +static partial void ModifyTheSpire_4406(ref IBaseAction action); +public static IBaseAction Create4574() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE); + ModifyManipulation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4574"><strong>Manipulation</strong></see> <i>PvE</i> (CRP) [4574] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4574(ref IBaseAction action); +public static IBaseAction Create4575() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4575); + ModifyManipulation_PvE_4575(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4575"><strong>Manipulation</strong></see> <i>PvE</i> (BSM) [4575] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4575(ref IBaseAction action); +public static IBaseAction Create4576() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4576); + ModifyManipulation_PvE_4576(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4576"><strong>Manipulation</strong></see> <i>PvE</i> (ARM) [4576] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4576(ref IBaseAction action); +public static IBaseAction Create4577() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4577); + ModifyManipulation_PvE_4577(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4577"><strong>Manipulation</strong></see> <i>PvE</i> (GSM) [4577] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4577(ref IBaseAction action); +public static IBaseAction Create4578() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4578); + ModifyManipulation_PvE_4578(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4578"><strong>Manipulation</strong></see> <i>PvE</i> (LTW) [4578] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4578(ref IBaseAction action); +public static IBaseAction Create4579() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4579); + ModifyManipulation_PvE_4579(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4579"><strong>Manipulation</strong></see> <i>PvE</i> (WVR) [4579] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4579(ref IBaseAction action); +public static IBaseAction Create4580() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4580); + ModifyManipulation_PvE_4580(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4580"><strong>Manipulation</strong></see> <i>PvE</i> (ALC) [4580] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4580(ref IBaseAction action); +public static IBaseAction Create4581() +{ + IBaseAction action = new BaseAction(ActionID.Manipulation_PvE_4581); + ModifyManipulation_PvE_4581(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4581"><strong>Manipulation</strong></see> <i>PvE</i> (CUL) [4581] [DoH Ability] +/// </summary> +static partial void ModifyManipulation_4581(ref IBaseAction action); +public static IBaseAction Create4583() +{ + IBaseAction action = new BaseAction(ActionID.Buffet_PvE); + ModifyBuffet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4583"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event] +/// </summary> +static partial void ModifyBuffet_4583(ref IBaseAction action); +public static IBaseAction Create4584() +{ + IBaseAction action = new BaseAction(ActionID.Buffet_PvE_4584); + ModifyBuffet_PvE_4584(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4584"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount] +/// </summary> +static partial void ModifyBuffet_4584(ref IBaseAction action); +public static IBaseAction Create4585() +{ + IBaseAction action = new BaseAction(ActionID.Trample_PvE); + ModifyTrample_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4585"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event] +/// </summary> +static partial void ModifyTrample_4585(ref IBaseAction action); +public static IBaseAction Create4586() +{ + IBaseAction action = new BaseAction(ActionID.Trample_PvE_4586); + ModifyTrample_PvE_4586(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4586"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount] +/// </summary> +static partial void ModifyTrample_4586(ref IBaseAction action); +public static IBaseAction Create4589() +{ + IBaseAction action = new BaseAction(ActionID.TheGivingLand_PvE); + ModifyTheGivingLand_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4589"><strong>The Giving Land</strong></see> <i>PvE</i> (MIN) [4589] [DoL Ability] +/// </summary> +static partial void ModifyTheGivingLand_4589(ref IBaseAction action); +public static IBaseAction Create4590() +{ + IBaseAction action = new BaseAction(ActionID.TheGivingLand_PvE_4590); + ModifyTheGivingLand_PvE_4590(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4590"><strong>The Giving Land</strong></see> <i>PvE</i> (BTN) [4590] [DoL Ability] +/// </summary> +static partial void ModifyTheGivingLand_4590(ref IBaseAction action); +public static IBaseAction Create4592() +{ + IBaseAction action = new BaseAction(ActionID.SilencingCant_PvE); + ModifySilencingCant_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4592"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount] +/// </summary> +static partial void ModifySilencingCant_4592(ref IBaseAction action); +public static IBaseAction Create4595() +{ + IBaseAction action = new BaseAction(ActionID.SurfaceSlap_PvE); + ModifySurfaceSlap_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4595"><strong>Surface Slap</strong></see> <i>PvE</i> (FSH) [4595] [DoL Ability] +/// </summary> +static partial void ModifySurfaceSlap_4595(ref IBaseAction action); +public static IBaseAction Create4596() +{ + IBaseAction action = new BaseAction(ActionID.IdenticalCast_PvE); + ModifyIdenticalCast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4596"><strong>Identical Cast</strong></see> <i>PvE</i> (FSH) [4596] [DoL Ability] +/// </summary> +static partial void ModifyIdenticalCast_4596(ref IBaseAction action); +public static IBaseAction Create4631() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE); + ModifyWasteNot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4631"><strong>Waste Not</strong></see> <i>PvE</i> (CRP) [4631] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4631(ref IBaseAction action); +public static IBaseAction Create4632() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4632); + ModifyWasteNot_PvE_4632(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4632"><strong>Waste Not</strong></see> <i>PvE</i> (BSM) [4632] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4632(ref IBaseAction action); +public static IBaseAction Create4633() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4633); + ModifyWasteNot_PvE_4633(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4633"><strong>Waste Not</strong></see> <i>PvE</i> (ARM) [4633] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4633(ref IBaseAction action); +public static IBaseAction Create4634() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4634); + ModifyWasteNot_PvE_4634(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4634"><strong>Waste Not</strong></see> <i>PvE</i> (GSM) [4634] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4634(ref IBaseAction action); +public static IBaseAction Create4635() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4635); + ModifyWasteNot_PvE_4635(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4635"><strong>Waste Not</strong></see> <i>PvE</i> (LTW) [4635] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4635(ref IBaseAction action); +public static IBaseAction Create4636() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4636); + ModifyWasteNot_PvE_4636(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4636"><strong>Waste Not</strong></see> <i>PvE</i> (WVR) [4636] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4636(ref IBaseAction action); +public static IBaseAction Create4637() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4637); + ModifyWasteNot_PvE_4637(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4637"><strong>Waste Not</strong></see> <i>PvE</i> (ALC) [4637] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4637(ref IBaseAction action); +public static IBaseAction Create4638() +{ + IBaseAction action = new BaseAction(ActionID.WasteNot_PvE_4638); + ModifyWasteNot_PvE_4638(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4638"><strong>Waste Not</strong></see> <i>PvE</i> (CUL) [4638] [DoH Ability] +/// </summary> +static partial void ModifyWasteNot_4638(ref IBaseAction action); +public static IBaseAction Create4639() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE); + ModifyWasteNotIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4639"><strong>Waste Not II</strong></see> <i>PvE</i> (CRP) [4639] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4639(ref IBaseAction action); +public static IBaseAction Create4640() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_4640); + ModifyWasteNotIi_PvE_4640(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4640"><strong>Waste Not II</strong></see> <i>PvE</i> (BSM) [4640] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4640(ref IBaseAction action); +public static IBaseAction Create4641() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_4641); + ModifyWasteNotIi_PvE_4641(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4641"><strong>Waste Not II</strong></see> <i>PvE</i> (ARM) [4641] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4641(ref IBaseAction action); +public static IBaseAction Create4642() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_4642); + ModifyWasteNotIi_PvE_4642(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4642"><strong>Waste Not II</strong></see> <i>PvE</i> (GSM) [4642] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4642(ref IBaseAction action); +public static IBaseAction Create4643() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_4643); + ModifyWasteNotIi_PvE_4643(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4643"><strong>Waste Not II</strong></see> <i>PvE</i> (LTW) [4643] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4643(ref IBaseAction action); +public static IBaseAction Create4644() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_4644); + ModifyWasteNotIi_PvE_4644(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4644"><strong>Waste Not II</strong></see> <i>PvE</i> (WVR) [4644] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_4644(ref IBaseAction action); +public static IBaseAction Create4800() +{ + IBaseAction action = new BaseAction(ActionID.Selfdetonate_PvE_4800); + ModifySelfdetonate_PvE_4800(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4800"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount] +/// </summary> +static partial void ModifySelfdetonate_4800(ref IBaseAction action); +public static IBaseAction Create4913() +{ + IBaseAction action = new BaseAction(ActionID.Heavydoom_PvE_4913); + ModifyHeavydoom_PvE_4913(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4913"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount] +/// </summary> +static partial void ModifyHeavydoom_4913(ref IBaseAction action); +public static IBaseAction Create4914() +{ + IBaseAction action = new BaseAction(ActionID.Cracklyplume_PvE_4914); + ModifyCracklyplume_PvE_4914(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4914"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount] +/// </summary> +static partial void ModifyCracklyplume_4914(ref IBaseAction action); +public static IBaseAction Create4915() +{ + IBaseAction action = new BaseAction(ActionID.Meltyspume_PvE_4915); + ModifyMeltyspume_PvE_4915(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4915"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount] +/// </summary> +static partial void ModifyMeltyspume_4915(ref IBaseAction action); +public static IBaseAction Create4916() +{ + IBaseAction action = new BaseAction(ActionID.Stickyloom_PvE_4916); + ModifyStickyloom_PvE_4916(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4916"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount] +/// </summary> +static partial void ModifyStickyloom_4916(ref IBaseAction action); +public static IBaseAction Create4917() +{ + IBaseAction action = new BaseAction(ActionID.Recharge_PvE_4917); + ModifyRecharge_PvE_4917(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4917"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount] +/// </summary> +static partial void ModifyRecharge_4917(ref IBaseAction action); +public static IBaseAction Create4930() +{ + IBaseAction action = new BaseAction(ActionID.SilencingCant_PvE_4930); + ModifySilencingCant_PvE_4930(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4930"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event] +/// </summary> +static partial void ModifySilencingCant_4930(ref IBaseAction action); +public static IBaseAction Create4931() +{ + IBaseAction action = new BaseAction(ActionID.Buffet_PvE_4931); + ModifyBuffet_PvE_4931(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4931"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event] +/// </summary> +static partial void ModifyBuffet_4931(ref IBaseAction action); +public static IBaseAction Create4976() +{ + IBaseAction action = new BaseAction(ActionID.AirCombatManeuver_PvE); + ModifyAirCombatManeuver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/4976"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount] +/// </summary> +static partial void ModifyAirCombatManeuver_4976(ref IBaseAction action); +public static IBaseAction Create5097() +{ + IBaseAction action = new BaseAction(ActionID.KeyItem_PvE_5097); + ModifyKeyItem_PvE_5097(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5097"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event] +/// </summary> +static partial void ModifyKeyItem_5097(ref IBaseAction action); +public static IBaseAction Create5136() +{ + IBaseAction action = new BaseAction(ActionID.StarryHeavens_PvE); + ModifyStarryHeavens_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5136"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item] +/// </summary> +static partial void ModifyStarryHeavens_5136(ref IBaseAction action); +public static IBaseAction Create5475() +{ + IBaseAction action = new BaseAction(ActionID.Browbeat_PvE); + ModifyBrowbeat_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5475"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special] +/// </summary> +static partial void ModifyBrowbeat_5475(ref IBaseAction action); +public static IBaseAction Create5476() +{ + IBaseAction action = new BaseAction(ActionID.Apothecary_PvE); + ModifyApothecary_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5476"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special] +/// </summary> +static partial void ModifyApothecary_5476(ref IBaseAction action); +public static IBaseAction Create5477() +{ + IBaseAction action = new BaseAction(ActionID.WingCutter_PvE); + ModifyWingCutter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5477"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special] +/// </summary> +static partial void ModifyWingCutter_5477(ref IBaseAction action); +public static IBaseAction Create5872() +{ + IBaseAction action = new BaseAction(ActionID.Fumigate_PvE); + ModifyFumigate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/5872"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event] +/// </summary> +static partial void ModifyFumigate_5872(ref IBaseAction action); +public static IBaseAction Create6143() +{ + IBaseAction action = new BaseAction(ActionID.Saturate_PvE_6143); + ModifySaturate_PvE_6143(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6143"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event] +/// </summary> +static partial void ModifySaturate_6143(ref IBaseAction action); +public static IBaseAction Create6259() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfSafety_PvE); + ModifyPomanderOfSafety_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6259"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] [] +/// </summary> +static partial void ModifyPomanderOfSafety_6259(ref IBaseAction action); +public static IBaseAction Create6260() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfSight_PvE); + ModifyPomanderOfSight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6260"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] [] +/// </summary> +static partial void ModifyPomanderOfSight_6260(ref IBaseAction action); +public static IBaseAction Create6262() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfStrength_PvE); + ModifyPomanderOfStrength_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6262"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] [] +/// </summary> +static partial void ModifyPomanderOfStrength_6262(ref IBaseAction action); +public static IBaseAction Create6263() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfSteel_PvE); + ModifyPomanderOfSteel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6263"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] [] +/// </summary> +static partial void ModifyPomanderOfSteel_6263(ref IBaseAction action); +public static IBaseAction Create6264() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfAffluence_PvE); + ModifyPomanderOfAffluence_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6264"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] [] +/// </summary> +static partial void ModifyPomanderOfAffluence_6264(ref IBaseAction action); +public static IBaseAction Create6265() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfFlight_PvE); + ModifyPomanderOfFlight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6265"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] [] +/// </summary> +static partial void ModifyPomanderOfFlight_6265(ref IBaseAction action); +public static IBaseAction Create6266() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfAlteration_PvE); + ModifyPomanderOfAlteration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6266"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] [] +/// </summary> +static partial void ModifyPomanderOfAlteration_6266(ref IBaseAction action); +public static IBaseAction Create6268() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfFortune_PvE); + ModifyPomanderOfFortune_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6268"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] [] +/// </summary> +static partial void ModifyPomanderOfFortune_6268(ref IBaseAction action); +public static IBaseAction Create6269() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfWitching_PvE); + ModifyPomanderOfWitching_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6269"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] [] +/// </summary> +static partial void ModifyPomanderOfWitching_6269(ref IBaseAction action); +public static IBaseAction Create6270() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfSerenity_PvE); + ModifyPomanderOfSerenity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6270"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] [] +/// </summary> +static partial void ModifyPomanderOfSerenity_6270(ref IBaseAction action); +public static IBaseAction Create6271() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfRage_PvE); + ModifyPomanderOfRage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6271"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] [] +/// </summary> +static partial void ModifyPomanderOfRage_6271(ref IBaseAction action); +public static IBaseAction Create6272() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfLust_PvE); + ModifyPomanderOfLust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6272"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] [] +/// </summary> +static partial void ModifyPomanderOfLust_6272(ref IBaseAction action); +public static IBaseAction Create6273() +{ + IBaseAction action = new BaseAction(ActionID.Pummel_PvE); + ModifyPummel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6273"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special] +/// </summary> +static partial void ModifyPummel_6273(ref IBaseAction action); +public static IBaseAction Create6274() +{ + IBaseAction action = new BaseAction(ActionID.VoidFireIi_PvE); + ModifyVoidFireIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6274"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell] +/// </summary> +static partial void ModifyVoidFireIi_6274(ref IBaseAction action); +public static IBaseAction Create6293() +{ + IBaseAction action = new BaseAction(ActionID.Roar_PvE); + ModifyRoar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6293"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event] +/// </summary> +static partial void ModifyRoar_6293(ref IBaseAction action); +public static IBaseAction Create6294() +{ + IBaseAction action = new BaseAction(ActionID.Seed_PvE); + ModifySeed_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6294"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event] +/// </summary> +static partial void ModifySeed_6294(ref IBaseAction action); +public static IBaseAction Create6295() +{ + IBaseAction action = new BaseAction(ActionID.Buffet_PvE_6295); + ModifyBuffet_PvE_6295(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6295"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount] +/// </summary> +static partial void ModifyBuffet_6295(ref IBaseAction action); +public static IBaseAction Create6296() +{ + IBaseAction action = new BaseAction(ActionID.Fumigate_PvE_6296); + ModifyFumigate_PvE_6296(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6296"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount] +/// </summary> +static partial void ModifyFumigate_6296(ref IBaseAction action); +public static IBaseAction Create6297() +{ + IBaseAction action = new BaseAction(ActionID.Seed_PvE_6297); + ModifySeed_PvE_6297(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6297"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount] +/// </summary> +static partial void ModifySeed_6297(ref IBaseAction action); +public static IBaseAction Create6324() +{ + IBaseAction action = new BaseAction(ActionID.MogatoryMogDance_PvE); + ModifyMogatoryMogDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6324"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount] +/// </summary> +static partial void ModifyMogatoryMogDance_6324(ref IBaseAction action); +public static IBaseAction Create6868() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfRaising_PvE); + ModifyPomanderOfRaising_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6868"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] [] +/// </summary> +static partial void ModifyPomanderOfRaising_6868(ref IBaseAction action); +public static IBaseAction Create6869() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfResolution_PvE); + ModifyPomanderOfResolution_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6869"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] [] +/// </summary> +static partial void ModifyPomanderOfResolution_6869(ref IBaseAction action); +public static IBaseAction Create6870() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfIntuition_PvE); + ModifyPomanderOfIntuition_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6870"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] [] +/// </summary> +static partial void ModifyPomanderOfIntuition_6870(ref IBaseAction action); +public static IBaseAction Create6871() +{ + IBaseAction action = new BaseAction(ActionID.HeavenlyJudge_PvE); + ModifyHeavenlyJudge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/6871"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special] +/// </summary> +static partial void ModifyHeavenlyJudge_6871(ref IBaseAction action); +public static IBaseAction Create7381() +{ + IBaseAction action = new BaseAction(ActionID.TotalEclipse_PvE); + ModifyTotalEclipse_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7381"><strong>Total Eclipse</strong></see> <i>PvE</i> (GLA PLD) [7381] [Weaponskill] +/// </summary> +static partial void ModifyTotalEclipse_7381(ref IBaseAction action); +public static IBaseAction Create7382() +{ + IBaseAction action = new BaseAction(ActionID.Intervention_PvE); + ModifyIntervention_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7382"><strong>Intervention</strong></see> <i>PvE</i> (PLD) [7382] [Ability] +/// </summary> +static partial void ModifyIntervention_7382(ref IBaseAction action); +public static IBaseAction Create7383() +{ + IBaseAction action = new BaseAction(ActionID.Requiescat_PvE); + ModifyRequiescat_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7383"><strong>Requiescat</strong></see> <i>PvE</i> (PLD) [7383] [Ability] +/// </summary> +static partial void ModifyRequiescat_7383(ref IBaseAction action); +public static IBaseAction Create7384() +{ + IBaseAction action = new BaseAction(ActionID.HolySpirit_PvE); + ModifyHolySpirit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7384"><strong>Holy Spirit</strong></see> <i>PvE</i> (PLD) [7384] [Spell] +/// </summary> +static partial void ModifyHolySpirit_7384(ref IBaseAction action); +public static IBaseAction Create7385() +{ + IBaseAction action = new BaseAction(ActionID.PassageOfArms_PvE); + ModifyPassageOfArms_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7385"><strong>Passage of Arms</strong></see> <i>PvE</i> (PLD) [7385] [Ability] +/// </summary> +static partial void ModifyPassageOfArms_7385(ref IBaseAction action); +public static IBaseAction Create7386() +{ + IBaseAction action = new BaseAction(ActionID.Onslaught_PvE); + ModifyOnslaught_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7386"><strong>Onslaught</strong></see> <i>PvE</i> (WAR) [7386] [Ability] +/// </summary> +static partial void ModifyOnslaught_7386(ref IBaseAction action); +public static IBaseAction Create7387() +{ + IBaseAction action = new BaseAction(ActionID.Upheaval_PvE); + ModifyUpheaval_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7387"><strong>Upheaval</strong></see> <i>PvE</i> (WAR) [7387] [Ability] +/// </summary> +static partial void ModifyUpheaval_7387(ref IBaseAction action); +public static IBaseAction Create7388() +{ + IBaseAction action = new BaseAction(ActionID.ShakeItOff_PvE); + ModifyShakeItOff_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7388"><strong>Shake It Off</strong></see> <i>PvE</i> (WAR) [7388] [Ability] +/// </summary> +static partial void ModifyShakeItOff_7388(ref IBaseAction action); +public static IBaseAction Create7389() +{ + IBaseAction action = new BaseAction(ActionID.InnerRelease_PvE); + ModifyInnerRelease_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7389"><strong>Inner Release</strong></see> <i>PvE</i> (WAR) [7389] [Ability] +/// </summary> +static partial void ModifyInnerRelease_7389(ref IBaseAction action); +public static IBaseAction Create7390() +{ + IBaseAction action = new BaseAction(ActionID.Delirium_PvE); + ModifyDelirium_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7390"><strong>Delirium</strong></see> <i>PvE</i> (DRK) [7390] [Ability] +/// </summary> +static partial void ModifyDelirium_7390(ref IBaseAction action); +public static IBaseAction Create7391() +{ + IBaseAction action = new BaseAction(ActionID.Quietus_PvE); + ModifyQuietus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7391"><strong>Quietus</strong></see> <i>PvE</i> (DRK) [7391] [Weaponskill] +/// </summary> +static partial void ModifyQuietus_7391(ref IBaseAction action); +public static IBaseAction Create7392() +{ + IBaseAction action = new BaseAction(ActionID.Bloodspiller_PvE); + ModifyBloodspiller_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7392"><strong>Bloodspiller</strong></see> <i>PvE</i> (DRK) [7392] [Weaponskill] +/// </summary> +static partial void ModifyBloodspiller_7392(ref IBaseAction action); +public static IBaseAction Create7393() +{ + IBaseAction action = new BaseAction(ActionID.TheBlackestNight_PvE); + ModifyTheBlackestNight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7393"><strong>The Blackest Night</strong></see> <i>PvE</i> (DRK) [7393] [Ability] +/// </summary> +static partial void ModifyTheBlackestNight_7393(ref IBaseAction action); +public static IBaseAction Create7394() +{ + IBaseAction action = new BaseAction(ActionID.RiddleOfEarth_PvE); + ModifyRiddleOfEarth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7394"><strong>Riddle of Earth</strong></see> <i>PvE</i> (MNK) [7394] [Ability] +/// </summary> +static partial void ModifyRiddleOfEarth_7394(ref IBaseAction action); +public static IBaseAction Create7395() +{ + IBaseAction action = new BaseAction(ActionID.RiddleOfFire_PvE); + ModifyRiddleOfFire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7395"><strong>Riddle of Fire</strong></see> <i>PvE</i> (MNK) [7395] [Ability] +/// </summary> +static partial void ModifyRiddleOfFire_7395(ref IBaseAction action); +public static IBaseAction Create7396() +{ + IBaseAction action = new BaseAction(ActionID.Brotherhood_PvE); + ModifyBrotherhood_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7396"><strong>Brotherhood</strong></see> <i>PvE</i> (MNK) [7396] [Ability] +/// </summary> +static partial void ModifyBrotherhood_7396(ref IBaseAction action); +public static IBaseAction Create7397() +{ + IBaseAction action = new BaseAction(ActionID.SonicThrust_PvE); + ModifySonicThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7397"><strong>Sonic Thrust</strong></see> <i>PvE</i> (DRG) [7397] [Weaponskill] +/// </summary> +static partial void ModifySonicThrust_7397(ref IBaseAction action); +public static IBaseAction Create7398() +{ + IBaseAction action = new BaseAction(ActionID.DragonSight_PvE); + ModifyDragonSight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7398"><strong>Dragon Sight</strong></see> <i>PvE</i> (DRG) [7398] [Ability] +/// </summary> +static partial void ModifyDragonSight_7398(ref IBaseAction action); +public static IBaseAction Create7399() +{ + IBaseAction action = new BaseAction(ActionID.MirageDive_PvE); + ModifyMirageDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7399"><strong>Mirage Dive</strong></see> <i>PvE</i> (DRG) [7399] [Ability] +/// </summary> +static partial void ModifyMirageDive_7399(ref IBaseAction action); +public static IBaseAction Create7400() +{ + IBaseAction action = new BaseAction(ActionID.Nastrond_PvE); + ModifyNastrond_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7400"><strong>Nastrond</strong></see> <i>PvE</i> (DRG) [7400] [Ability] +/// </summary> +static partial void ModifyNastrond_7400(ref IBaseAction action); +public static IBaseAction Create7401() +{ + IBaseAction action = new BaseAction(ActionID.HellfrogMedium_PvE); + ModifyHellfrogMedium_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7401"><strong>Hellfrog Medium</strong></see> <i>PvE</i> (NIN) [7401] [Ability] +/// </summary> +static partial void ModifyHellfrogMedium_7401(ref IBaseAction action); +public static IBaseAction Create7402() +{ + IBaseAction action = new BaseAction(ActionID.Bhavacakra_PvE); + ModifyBhavacakra_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7402"><strong>Bhavacakra</strong></see> <i>PvE</i> (NIN) [7402] [Ability] +/// </summary> +static partial void ModifyBhavacakra_7402(ref IBaseAction action); +public static IBaseAction Create7403() +{ + IBaseAction action = new BaseAction(ActionID.TenChiJin_PvE); + ModifyTenChiJin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7403"><strong>Ten Chi Jin</strong></see> <i>PvE</i> (NIN) [7403] [Ability] +/// </summary> +static partial void ModifyTenChiJin_7403(ref IBaseAction action); +public static IBaseAction Create7404() +{ + IBaseAction action = new BaseAction(ActionID.PitchPerfect_PvE); + ModifyPitchPerfect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7404"><strong>Pitch Perfect</strong></see> <i>PvE</i> (BRD) [7404] [Ability] +/// </summary> +static partial void ModifyPitchPerfect_7404(ref IBaseAction action); +public static IBaseAction Create7405() +{ + IBaseAction action = new BaseAction(ActionID.Troubadour_PvE); + ModifyTroubadour_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7405"><strong>Troubadour</strong></see> <i>PvE</i> (BRD) [7405] [Ability] +/// </summary> +static partial void ModifyTroubadour_7405(ref IBaseAction action); +public static IBaseAction Create7406() +{ + IBaseAction action = new BaseAction(ActionID.CausticBite_PvE); + ModifyCausticBite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7406"><strong>Caustic Bite</strong></see> <i>PvE</i> (BRD) [7406] [Weaponskill] +/// </summary> +static partial void ModifyCausticBite_7406(ref IBaseAction action); +public static IBaseAction Create7407() +{ + IBaseAction action = new BaseAction(ActionID.Stormbite_PvE); + ModifyStormbite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7407"><strong>Stormbite</strong></see> <i>PvE</i> (BRD) [7407] [Weaponskill] +/// </summary> +static partial void ModifyStormbite_7407(ref IBaseAction action); +public static IBaseAction Create7408() +{ + IBaseAction action = new BaseAction(ActionID.NaturesMinne_PvE); + ModifyNaturesMinne_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7408"><strong>Nature's Minne</strong></see> <i>PvE</i> (BRD) [7408] [Ability] +/// </summary> +static partial void ModifyNaturesMinne_7408(ref IBaseAction action); +public static IBaseAction Create7409() +{ + IBaseAction action = new BaseAction(ActionID.RefulgentArrow_PvE); + ModifyRefulgentArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7409"><strong>Refulgent Arrow</strong></see> <i>PvE</i> (BRD) [7409] [Weaponskill] +/// </summary> +static partial void ModifyRefulgentArrow_7409(ref IBaseAction action); +public static IBaseAction Create7410() +{ + IBaseAction action = new BaseAction(ActionID.HeatBlast_PvE); + ModifyHeatBlast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7410"><strong>Heat Blast</strong></see> <i>PvE</i> (MCH) [7410] [Weaponskill] +/// </summary> +static partial void ModifyHeatBlast_7410(ref IBaseAction action); +public static IBaseAction Create7411() +{ + IBaseAction action = new BaseAction(ActionID.HeatedSplitShot_PvE); + ModifyHeatedSplitShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7411"><strong>Heated Split Shot</strong></see> <i>PvE</i> (MCH) [7411] [Weaponskill] +/// </summary> +static partial void ModifyHeatedSplitShot_7411(ref IBaseAction action); +public static IBaseAction Create7412() +{ + IBaseAction action = new BaseAction(ActionID.HeatedSlugShot_PvE); + ModifyHeatedSlugShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7412"><strong>Heated Slug Shot</strong></see> <i>PvE</i> (MCH) [7412] [Weaponskill] +/// </summary> +static partial void ModifyHeatedSlugShot_7412(ref IBaseAction action); +public static IBaseAction Create7413() +{ + IBaseAction action = new BaseAction(ActionID.HeatedCleanShot_PvE); + ModifyHeatedCleanShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7413"><strong>Heated Clean Shot</strong></see> <i>PvE</i> (MCH) [7413] [Weaponskill] +/// </summary> +static partial void ModifyHeatedCleanShot_7413(ref IBaseAction action); +public static IBaseAction Create7414() +{ + IBaseAction action = new BaseAction(ActionID.BarrelStabilizer_PvE); + ModifyBarrelStabilizer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7414"><strong>Barrel Stabilizer</strong></see> <i>PvE</i> (MCH) [7414] [Ability] +/// </summary> +static partial void ModifyBarrelStabilizer_7414(ref IBaseAction action); +public static IBaseAction Create7415() +{ + IBaseAction action = new BaseAction(ActionID.RookOverdrive_PvE); + ModifyRookOverdrive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7415"><strong>Rook Overdrive</strong></see> <i>PvE</i> (MCH) [7415] [Ability] +/// </summary> +static partial void ModifyRookOverdrive_7415(ref IBaseAction action); +public static IBaseAction Create7416() +{ + IBaseAction action = new BaseAction(ActionID.RookOverload_PvE); + ModifyRookOverload_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7416"><strong>Rook Overload</strong></see> <i>PvE</i> (MCH) [7416] [Ability] +/// </summary> +static partial void ModifyRookOverload_7416(ref IBaseAction action); +public static IBaseAction Create7418() +{ + IBaseAction action = new BaseAction(ActionID.Flamethrower_PvE); + ModifyFlamethrower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7418"><strong>Flamethrower</strong></see> <i>PvE</i> (MCH) [7418] [Ability] +/// </summary> +static partial void ModifyFlamethrower_7418(ref IBaseAction action); +public static IBaseAction Create7419() +{ + IBaseAction action = new BaseAction(ActionID.BetweenTheLines_PvE); + ModifyBetweenTheLines_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7419"><strong>Between the Lines</strong></see> <i>PvE</i> (BLM) [7419] [Ability] +/// </summary> +static partial void ModifyBetweenTheLines_7419(ref IBaseAction action); +public static IBaseAction Create7420() +{ + IBaseAction action = new BaseAction(ActionID.ThunderIv_PvE); + ModifyThunderIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7420"><strong>Thunder IV</strong></see> <i>PvE</i> (BLM) [7420] [Spell] +/// </summary> +static partial void ModifyThunderIv_7420(ref IBaseAction action); +public static IBaseAction Create7421() +{ + IBaseAction action = new BaseAction(ActionID.Triplecast_PvE); + ModifyTriplecast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7421"><strong>Triplecast</strong></see> <i>PvE</i> (BLM) [7421] [Ability] +/// </summary> +static partial void ModifyTriplecast_7421(ref IBaseAction action); +public static IBaseAction Create7422() +{ + IBaseAction action = new BaseAction(ActionID.Foul_PvE); + ModifyFoul_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7422"><strong>Foul</strong></see> <i>PvE</i> (BLM) [7422] [Spell] +/// </summary> +static partial void ModifyFoul_7422(ref IBaseAction action); +public static IBaseAction Create7426() +{ + IBaseAction action = new BaseAction(ActionID.RuinIv_PvE); + ModifyRuinIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7426"><strong>Ruin IV</strong></see> <i>PvE</i> (SMN) [7426] [Spell] +/// </summary> +static partial void ModifyRuinIv_7426(ref IBaseAction action); +public static IBaseAction Create7427() +{ + IBaseAction action = new BaseAction(ActionID.SummonBahamut_PvE); + ModifySummonBahamut_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7427"><strong>Summon Bahamut</strong></see> <i>PvE</i> (SMN) [7427] [Spell] +/// </summary> +static partial void ModifySummonBahamut_7427(ref IBaseAction action); +public static IBaseAction Create7428() +{ + IBaseAction action = new BaseAction(ActionID.Wyrmwave_PvE); + ModifyWyrmwave_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7428"><strong>Wyrmwave</strong></see> <i>PvE</i> (SMN) [7428] [Spell] +/// </summary> +static partial void ModifyWyrmwave_7428(ref IBaseAction action); +public static IBaseAction Create7429() +{ + IBaseAction action = new BaseAction(ActionID.EnkindleBahamut_PvE); + ModifyEnkindleBahamut_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7429"><strong>Enkindle Bahamut</strong></see> <i>PvE</i> (SMN) [7429] [Ability] +/// </summary> +static partial void ModifyEnkindleBahamut_7429(ref IBaseAction action); +public static IBaseAction Create7430() +{ + IBaseAction action = new BaseAction(ActionID.ThinAir_PvE); + ModifyThinAir_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7430"><strong>Thin Air</strong></see> <i>PvE</i> (WHM) [7430] [Ability] +/// </summary> +static partial void ModifyThinAir_7430(ref IBaseAction action); +public static IBaseAction Create7431() +{ + IBaseAction action = new BaseAction(ActionID.StoneIv_PvE); + ModifyStoneIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7431"><strong>Stone IV</strong></see> <i>PvE</i> (WHM) [7431] [Spell] +/// </summary> +static partial void ModifyStoneIv_7431(ref IBaseAction action); +public static IBaseAction Create7432() +{ + IBaseAction action = new BaseAction(ActionID.DivineBenison_PvE); + ModifyDivineBenison_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7432"><strong>Divine Benison</strong></see> <i>PvE</i> (WHM) [7432] [Ability] +/// </summary> +static partial void ModifyDivineBenison_7432(ref IBaseAction action); +public static IBaseAction Create7433() +{ + IBaseAction action = new BaseAction(ActionID.PlenaryIndulgence_PvE); + ModifyPlenaryIndulgence_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7433"><strong>Plenary Indulgence</strong></see> <i>PvE</i> (WHM) [7433] [Ability] +/// </summary> +static partial void ModifyPlenaryIndulgence_7433(ref IBaseAction action); +public static IBaseAction Create7434() +{ + IBaseAction action = new BaseAction(ActionID.Excogitation_PvE); + ModifyExcogitation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7434"><strong>Excogitation</strong></see> <i>PvE</i> (SCH) [7434] [Ability] +/// </summary> +static partial void ModifyExcogitation_7434(ref IBaseAction action); +public static IBaseAction Create7435() +{ + IBaseAction action = new BaseAction(ActionID.BroilIi_PvE); + ModifyBroilIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7435"><strong>Broil II</strong></see> <i>PvE</i> (SCH) [7435] [Spell] +/// </summary> +static partial void ModifyBroilIi_7435(ref IBaseAction action); +public static IBaseAction Create7436() +{ + IBaseAction action = new BaseAction(ActionID.ChainStratagem_PvE); + ModifyChainStratagem_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7436"><strong>Chain Stratagem</strong></see> <i>PvE</i> (SCH) [7436] [Ability] +/// </summary> +static partial void ModifyChainStratagem_7436(ref IBaseAction action); +public static IBaseAction Create7437() +{ + IBaseAction action = new BaseAction(ActionID.Aetherpact_PvE); + ModifyAetherpact_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7437"><strong>Aetherpact</strong></see> <i>PvE</i> (SCH) [7437] [Ability] +/// </summary> +static partial void ModifyAetherpact_7437(ref IBaseAction action); +public static IBaseAction Create7438() +{ + IBaseAction action = new BaseAction(ActionID.FeyUnion_PvE); + ModifyFeyUnion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7438"><strong>Fey Union</strong></see> <i>PvE</i> (SCH) [7438] [Ability] +/// </summary> +static partial void ModifyFeyUnion_7438(ref IBaseAction action); +public static IBaseAction Create7439() +{ + IBaseAction action = new BaseAction(ActionID.EarthlyStar_PvE); + ModifyEarthlyStar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7439"><strong>Earthly Star</strong></see> <i>PvE</i> (AST) [7439] [Ability] +/// </summary> +static partial void ModifyEarthlyStar_7439(ref IBaseAction action); +public static IBaseAction Create7440() +{ + IBaseAction action = new BaseAction(ActionID.StellarBurst_PvE); + ModifyStellarBurst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7440"><strong>Stellar Burst</strong></see> <i>PvE</i> (AST) [7440] [Ability] +/// </summary> +static partial void ModifyStellarBurst_7440(ref IBaseAction action); +public static IBaseAction Create7441() +{ + IBaseAction action = new BaseAction(ActionID.StellarExplosion_PvE); + ModifyStellarExplosion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7441"><strong>Stellar Explosion</strong></see> <i>PvE</i> (AST) [7441] [Ability] +/// </summary> +static partial void ModifyStellarExplosion_7441(ref IBaseAction action); +public static IBaseAction Create7442() +{ + IBaseAction action = new BaseAction(ActionID.MaleficIii_PvE); + ModifyMaleficIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7442"><strong>Malefic III</strong></see> <i>PvE</i> (AST) [7442] [Spell] +/// </summary> +static partial void ModifyMaleficIii_7442(ref IBaseAction action); +public static IBaseAction Create7443() +{ + IBaseAction action = new BaseAction(ActionID.MinorArcana_PvE); + ModifyMinorArcana_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7443"><strong>Minor Arcana</strong></see> <i>PvE</i> (AST) [7443] [Ability] +/// </summary> +static partial void ModifyMinorArcana_7443(ref IBaseAction action); +public static IBaseAction Create7444() +{ + IBaseAction action = new BaseAction(ActionID.LordOfCrowns_PvE); + ModifyLordOfCrowns_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7444"><strong>Lord of Crowns</strong></see> <i>PvE</i> (AST) [7444] [Ability] +/// </summary> +static partial void ModifyLordOfCrowns_7444(ref IBaseAction action); +public static IBaseAction Create7445() +{ + IBaseAction action = new BaseAction(ActionID.LadyOfCrowns_PvE); + ModifyLadyOfCrowns_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7445"><strong>Lady of Crowns</strong></see> <i>PvE</i> (AST) [7445] [Ability] +/// </summary> +static partial void ModifyLadyOfCrowns_7445(ref IBaseAction action); +public static IBaseAction Create7447() +{ + IBaseAction action = new BaseAction(ActionID.ThunderIi_PvE); + ModifyThunderIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7447"><strong>Thunder II</strong></see> <i>PvE</i> (THM BLM) [7447] [Spell] +/// </summary> +static partial void ModifyThunderIi_7447(ref IBaseAction action); +public static IBaseAction Create7449() +{ + IBaseAction action = new BaseAction(ActionID.AkhMorn_PvE); + ModifyAkhMorn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7449"><strong>Akh Morn</strong></see> <i>PvE</i> (SMN) [7449] [Ability] +/// </summary> +static partial void ModifyAkhMorn_7449(ref IBaseAction action); +public static IBaseAction Create7477() +{ + IBaseAction action = new BaseAction(ActionID.Hakaze_PvE); + ModifyHakaze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7477"><strong>Hakaze</strong></see> <i>PvE</i> (SAM) [7477] [Weaponskill] +/// </summary> +static partial void ModifyHakaze_7477(ref IBaseAction action); +public static IBaseAction Create7478() +{ + IBaseAction action = new BaseAction(ActionID.Jinpu_PvE); + ModifyJinpu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7478"><strong>Jinpu</strong></see> <i>PvE</i> (SAM) [7478] [Weaponskill] +/// </summary> +static partial void ModifyJinpu_7478(ref IBaseAction action); +public static IBaseAction Create7479() +{ + IBaseAction action = new BaseAction(ActionID.Shifu_PvE); + ModifyShifu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7479"><strong>Shifu</strong></see> <i>PvE</i> (SAM) [7479] [Weaponskill] +/// </summary> +static partial void ModifyShifu_7479(ref IBaseAction action); +public static IBaseAction Create7480() +{ + IBaseAction action = new BaseAction(ActionID.Yukikaze_PvE); + ModifyYukikaze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7480"><strong>Yukikaze</strong></see> <i>PvE</i> (SAM) [7480] [Weaponskill] +/// </summary> +static partial void ModifyYukikaze_7480(ref IBaseAction action); +public static IBaseAction Create7481() +{ + IBaseAction action = new BaseAction(ActionID.Gekko_PvE); + ModifyGekko_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7481"><strong>Gekko</strong></see> <i>PvE</i> (SAM) [7481] [Weaponskill] +/// </summary> +static partial void ModifyGekko_7481(ref IBaseAction action); +public static IBaseAction Create7482() +{ + IBaseAction action = new BaseAction(ActionID.Kasha_PvE); + ModifyKasha_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7482"><strong>Kasha</strong></see> <i>PvE</i> (SAM) [7482] [Weaponskill] +/// </summary> +static partial void ModifyKasha_7482(ref IBaseAction action); +public static IBaseAction Create7483() +{ + IBaseAction action = new BaseAction(ActionID.Fuga_PvE); + ModifyFuga_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7483"><strong>Fuga</strong></see> <i>PvE</i> (SAM) [7483] [Weaponskill] +/// </summary> +static partial void ModifyFuga_7483(ref IBaseAction action); +public static IBaseAction Create7484() +{ + IBaseAction action = new BaseAction(ActionID.Mangetsu_PvE); + ModifyMangetsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7484"><strong>Mangetsu</strong></see> <i>PvE</i> (SAM) [7484] [Weaponskill] +/// </summary> +static partial void ModifyMangetsu_7484(ref IBaseAction action); +public static IBaseAction Create7485() +{ + IBaseAction action = new BaseAction(ActionID.Oka_PvE); + ModifyOka_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7485"><strong>Oka</strong></see> <i>PvE</i> (SAM) [7485] [Weaponskill] +/// </summary> +static partial void ModifyOka_7485(ref IBaseAction action); +public static IBaseAction Create7486() +{ + IBaseAction action = new BaseAction(ActionID.Enpi_PvE); + ModifyEnpi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7486"><strong>Enpi</strong></see> <i>PvE</i> (SAM) [7486] [Weaponskill] +/// </summary> +static partial void ModifyEnpi_7486(ref IBaseAction action); +public static IBaseAction Create7487() +{ + IBaseAction action = new BaseAction(ActionID.MidareSetsugekka_PvE); + ModifyMidareSetsugekka_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7487"><strong>Midare Setsugekka</strong></see> <i>PvE</i> (SAM) [7487] [Weaponskill] +/// </summary> +static partial void ModifyMidareSetsugekka_7487(ref IBaseAction action); +public static IBaseAction Create7488() +{ + IBaseAction action = new BaseAction(ActionID.TenkaGoken_PvE); + ModifyTenkaGoken_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7488"><strong>Tenka Goken</strong></see> <i>PvE</i> (SAM) [7488] [Weaponskill] +/// </summary> +static partial void ModifyTenkaGoken_7488(ref IBaseAction action); +public static IBaseAction Create7489() +{ + IBaseAction action = new BaseAction(ActionID.Higanbana_PvE); + ModifyHiganbana_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7489"><strong>Higanbana</strong></see> <i>PvE</i> (SAM) [7489] [Weaponskill] +/// </summary> +static partial void ModifyHiganbana_7489(ref IBaseAction action); +public static IBaseAction Create7490() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuShinten_PvE); + ModifyHissatsuShinten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7490"><strong>Hissatsu: Shinten</strong></see> <i>PvE</i> (SAM) [7490] [Ability] +/// </summary> +static partial void ModifyHissatsuShinten_7490(ref IBaseAction action); +public static IBaseAction Create7491() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuKyuten_PvE); + ModifyHissatsuKyuten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7491"><strong>Hissatsu: Kyuten</strong></see> <i>PvE</i> (SAM) [7491] [Ability] +/// </summary> +static partial void ModifyHissatsuKyuten_7491(ref IBaseAction action); +public static IBaseAction Create7492() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuGyoten_PvE); + ModifyHissatsuGyoten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7492"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (SAM) [7492] [Ability] +/// </summary> +static partial void ModifyHissatsuGyoten_7492(ref IBaseAction action); +public static IBaseAction Create7493() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuYaten_PvE); + ModifyHissatsuYaten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7493"><strong>Hissatsu: Yaten</strong></see> <i>PvE</i> (SAM) [7493] [Ability] +/// </summary> +static partial void ModifyHissatsuYaten_7493(ref IBaseAction action); +public static IBaseAction Create7495() +{ + IBaseAction action = new BaseAction(ActionID.Hagakure_PvE); + ModifyHagakure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7495"><strong>Hagakure</strong></see> <i>PvE</i> (SAM) [7495] [Ability] +/// </summary> +static partial void ModifyHagakure_7495(ref IBaseAction action); +public static IBaseAction Create7496() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuGuren_PvE); + ModifyHissatsuGuren_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7496"><strong>Hissatsu: Guren</strong></see> <i>PvE</i> (SAM) [7496] [Ability] +/// </summary> +static partial void ModifyHissatsuGuren_7496(ref IBaseAction action); +public static IBaseAction Create7497() +{ + IBaseAction action = new BaseAction(ActionID.Meditate_PvE); + ModifyMeditate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7497"><strong>Meditate</strong></see> <i>PvE</i> (SAM) [7497] [Ability] +/// </summary> +static partial void ModifyMeditate_7497(ref IBaseAction action); +public static IBaseAction Create7498() +{ + IBaseAction action = new BaseAction(ActionID.ThirdEye_PvE); + ModifyThirdEye_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7498"><strong>Third Eye</strong></see> <i>PvE</i> (SAM) [7498] [Ability] +/// </summary> +static partial void ModifyThirdEye_7498(ref IBaseAction action); +public static IBaseAction Create7499() +{ + IBaseAction action = new BaseAction(ActionID.MeikyoShisui_PvE); + ModifyMeikyoShisui_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7499"><strong>Meikyo Shisui</strong></see> <i>PvE</i> (SAM) [7499] [Ability] +/// </summary> +static partial void ModifyMeikyoShisui_7499(ref IBaseAction action); +public static IBaseAction Create7503() +{ + IBaseAction action = new BaseAction(ActionID.Jolt_PvE); + ModifyJolt_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7503"><strong>Jolt</strong></see> <i>PvE</i> (RDM) [7503] [Spell] +/// </summary> +static partial void ModifyJolt_7503(ref IBaseAction action); +public static IBaseAction Create7504() +{ + IBaseAction action = new BaseAction(ActionID.Riposte_PvE); + ModifyRiposte_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7504"><strong>Riposte</strong></see> <i>PvE</i> (RDM) [7504] [Weaponskill] +/// </summary> +static partial void ModifyRiposte_7504(ref IBaseAction action); +public static IBaseAction Create7505() +{ + IBaseAction action = new BaseAction(ActionID.Verthunder_PvE); + ModifyVerthunder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7505"><strong>Verthunder</strong></see> <i>PvE</i> (RDM) [7505] [Spell] +/// </summary> +static partial void ModifyVerthunder_7505(ref IBaseAction action); +public static IBaseAction Create7506() +{ + IBaseAction action = new BaseAction(ActionID.Corpsacorps_PvE); + ModifyCorpsacorps_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7506"><strong>Corps-a-corps</strong></see> <i>PvE</i> (RDM) [7506] [Ability] +/// </summary> +static partial void ModifyCorpsacorps_7506(ref IBaseAction action); +public static IBaseAction Create7507() +{ + IBaseAction action = new BaseAction(ActionID.Veraero_PvE); + ModifyVeraero_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7507"><strong>Veraero</strong></see> <i>PvE</i> (RDM) [7507] [Spell] +/// </summary> +static partial void ModifyVeraero_7507(ref IBaseAction action); +public static IBaseAction Create7509() +{ + IBaseAction action = new BaseAction(ActionID.Scatter_PvE); + ModifyScatter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7509"><strong>Scatter</strong></see> <i>PvE</i> (RDM) [7509] [Spell] +/// </summary> +static partial void ModifyScatter_7509(ref IBaseAction action); +public static IBaseAction Create7510() +{ + IBaseAction action = new BaseAction(ActionID.Verfire_PvE); + ModifyVerfire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7510"><strong>Verfire</strong></see> <i>PvE</i> (RDM) [7510] [Spell] +/// </summary> +static partial void ModifyVerfire_7510(ref IBaseAction action); +public static IBaseAction Create7511() +{ + IBaseAction action = new BaseAction(ActionID.Verstone_PvE); + ModifyVerstone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7511"><strong>Verstone</strong></see> <i>PvE</i> (RDM) [7511] [Spell] +/// </summary> +static partial void ModifyVerstone_7511(ref IBaseAction action); +public static IBaseAction Create7512() +{ + IBaseAction action = new BaseAction(ActionID.Zwerchhau_PvE); + ModifyZwerchhau_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7512"><strong>Zwerchhau</strong></see> <i>PvE</i> (RDM) [7512] [Weaponskill] +/// </summary> +static partial void ModifyZwerchhau_7512(ref IBaseAction action); +public static IBaseAction Create7513() +{ + IBaseAction action = new BaseAction(ActionID.Moulinet_PvE); + ModifyMoulinet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7513"><strong>Moulinet</strong></see> <i>PvE</i> (RDM) [7513] [Weaponskill] +/// </summary> +static partial void ModifyMoulinet_7513(ref IBaseAction action); +public static IBaseAction Create7514() +{ + IBaseAction action = new BaseAction(ActionID.Vercure_PvE); + ModifyVercure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7514"><strong>Vercure</strong></see> <i>PvE</i> (RDM) [7514] [Spell] +/// </summary> +static partial void ModifyVercure_7514(ref IBaseAction action); +public static IBaseAction Create7515() +{ + IBaseAction action = new BaseAction(ActionID.Displacement_PvE); + ModifyDisplacement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7515"><strong>Displacement</strong></see> <i>PvE</i> (RDM) [7515] [Ability] +/// </summary> +static partial void ModifyDisplacement_7515(ref IBaseAction action); +public static IBaseAction Create7516() +{ + IBaseAction action = new BaseAction(ActionID.Redoublement_PvE); + ModifyRedoublement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7516"><strong>Redoublement</strong></see> <i>PvE</i> (RDM) [7516] [Weaponskill] +/// </summary> +static partial void ModifyRedoublement_7516(ref IBaseAction action); +public static IBaseAction Create7517() +{ + IBaseAction action = new BaseAction(ActionID.Fleche_PvE); + ModifyFleche_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7517"><strong>Fleche</strong></see> <i>PvE</i> (RDM) [7517] [Ability] +/// </summary> +static partial void ModifyFleche_7517(ref IBaseAction action); +public static IBaseAction Create7518() +{ + IBaseAction action = new BaseAction(ActionID.Acceleration_PvE); + ModifyAcceleration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7518"><strong>Acceleration</strong></see> <i>PvE</i> (RDM) [7518] [Ability] +/// </summary> +static partial void ModifyAcceleration_7518(ref IBaseAction action); +public static IBaseAction Create7519() +{ + IBaseAction action = new BaseAction(ActionID.ContreSixte_PvE); + ModifyContreSixte_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7519"><strong>Contre Sixte</strong></see> <i>PvE</i> (RDM) [7519] [Ability] +/// </summary> +static partial void ModifyContreSixte_7519(ref IBaseAction action); +public static IBaseAction Create7520() +{ + IBaseAction action = new BaseAction(ActionID.Embolden_PvE); + ModifyEmbolden_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7520"><strong>Embolden</strong></see> <i>PvE</i> (RDM) [7520] [Ability] +/// </summary> +static partial void ModifyEmbolden_7520(ref IBaseAction action); +public static IBaseAction Create7521() +{ + IBaseAction action = new BaseAction(ActionID.Manafication_PvE); + ModifyManafication_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7521"><strong>Manafication</strong></see> <i>PvE</i> (RDM) [7521] [Ability] +/// </summary> +static partial void ModifyManafication_7521(ref IBaseAction action); +public static IBaseAction Create7523() +{ + IBaseAction action = new BaseAction(ActionID.Verraise_PvE); + ModifyVerraise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7523"><strong>Verraise</strong></see> <i>PvE</i> (RDM) [7523] [Spell] +/// </summary> +static partial void ModifyVerraise_7523(ref IBaseAction action); +public static IBaseAction Create7524() +{ + IBaseAction action = new BaseAction(ActionID.JoltIi_PvE); + ModifyJoltIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7524"><strong>Jolt II</strong></see> <i>PvE</i> (RDM) [7524] [Spell] +/// </summary> +static partial void ModifyJoltIi_7524(ref IBaseAction action); +public static IBaseAction Create7525() +{ + IBaseAction action = new BaseAction(ActionID.Verflare_PvE); + ModifyVerflare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7525"><strong>Verflare</strong></see> <i>PvE</i> (RDM) [7525] [Spell] +/// </summary> +static partial void ModifyVerflare_7525(ref IBaseAction action); +public static IBaseAction Create7526() +{ + IBaseAction action = new BaseAction(ActionID.Verholy_PvE); + ModifyVerholy_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7526"><strong>Verholy</strong></see> <i>PvE</i> (RDM) [7526] [Spell] +/// </summary> +static partial void ModifyVerholy_7526(ref IBaseAction action); +public static IBaseAction Create7527() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRiposte_PvE); + ModifyEnchantedRiposte_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7527"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (RDM) [7527] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRiposte_7527(ref IBaseAction action); +public static IBaseAction Create7528() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedZwerchhau_PvE); + ModifyEnchantedZwerchhau_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7528"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (RDM) [7528] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedZwerchhau_7528(ref IBaseAction action); +public static IBaseAction Create7529() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRedoublement_PvE); + ModifyEnchantedRedoublement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7529"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (RDM) [7529] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRedoublement_7529(ref IBaseAction action); +public static IBaseAction Create7530() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedMoulinet_PvE); + ModifyEnchantedMoulinet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7530"><strong>Enchanted Moulinet</strong></see> <i>PvE</i> (RDM) [7530] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedMoulinet_7530(ref IBaseAction action); +public static IBaseAction Create7531() +{ + IBaseAction action = new BaseAction(ActionID.Rampart_PvE); + ModifyRampart_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7531"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability] +/// </summary> +static partial void ModifyRampart_7531(ref IBaseAction action); +public static IBaseAction Create7533() +{ + IBaseAction action = new BaseAction(ActionID.Provoke_PvE); + ModifyProvoke_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7533"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability] +/// </summary> +static partial void ModifyProvoke_7533(ref IBaseAction action); +public static IBaseAction Create7535() +{ + IBaseAction action = new BaseAction(ActionID.Reprisal_PvE); + ModifyReprisal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7535"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability] +/// </summary> +static partial void ModifyReprisal_7535(ref IBaseAction action); +public static IBaseAction Create7537() +{ + IBaseAction action = new BaseAction(ActionID.Shirk_PvE); + ModifyShirk_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7537"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability] +/// </summary> +static partial void ModifyShirk_7537(ref IBaseAction action); +public static IBaseAction Create7538() +{ + IBaseAction action = new BaseAction(ActionID.Interject_PvE); + ModifyInterject_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7538"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability] +/// </summary> +static partial void ModifyInterject_7538(ref IBaseAction action); +public static IBaseAction Create7540() +{ + IBaseAction action = new BaseAction(ActionID.LowBlow_PvE); + ModifyLowBlow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7540"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability] +/// </summary> +static partial void ModifyLowBlow_7540(ref IBaseAction action); +public static IBaseAction Create7541() +{ + IBaseAction action = new BaseAction(ActionID.SecondWind_PvE); + ModifySecondWind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7541"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability] +/// </summary> +static partial void ModifySecondWind_7541(ref IBaseAction action); +public static IBaseAction Create7542() +{ + IBaseAction action = new BaseAction(ActionID.Bloodbath_PvE); + ModifyBloodbath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7542"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability] +/// </summary> +static partial void ModifyBloodbath_7542(ref IBaseAction action); +public static IBaseAction Create7546() +{ + IBaseAction action = new BaseAction(ActionID.TrueNorth_PvE); + ModifyTrueNorth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7546"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability] +/// </summary> +static partial void ModifyTrueNorth_7546(ref IBaseAction action); +public static IBaseAction Create7548() +{ + IBaseAction action = new BaseAction(ActionID.ArmsLength_PvE); + ModifyArmsLength_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7548"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability] +/// </summary> +static partial void ModifyArmsLength_7548(ref IBaseAction action); +public static IBaseAction Create7549() +{ + IBaseAction action = new BaseAction(ActionID.Feint_PvE); + ModifyFeint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7549"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability] +/// </summary> +static partial void ModifyFeint_7549(ref IBaseAction action); +public static IBaseAction Create7551() +{ + IBaseAction action = new BaseAction(ActionID.HeadGraze_PvE); + ModifyHeadGraze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7551"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7551] [Ability] +/// </summary> +static partial void ModifyHeadGraze_7551(ref IBaseAction action); +public static IBaseAction Create7553() +{ + IBaseAction action = new BaseAction(ActionID.FootGraze_PvE); + ModifyFootGraze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7553"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7553] [Ability] +/// </summary> +static partial void ModifyFootGraze_7553(ref IBaseAction action); +public static IBaseAction Create7554() +{ + IBaseAction action = new BaseAction(ActionID.LegGraze_PvE); + ModifyLegGraze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7554"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7554] [Ability] +/// </summary> +static partial void ModifyLegGraze_7554(ref IBaseAction action); +public static IBaseAction Create7557() +{ + IBaseAction action = new BaseAction(ActionID.Peloton_PvE); + ModifyPeloton_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7557"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7557] [Ability] +/// </summary> +static partial void ModifyPeloton_7557(ref IBaseAction action); +public static IBaseAction Create7559() +{ + IBaseAction action = new BaseAction(ActionID.Surecast_PvE); + ModifySurecast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7559"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability] +/// </summary> +static partial void ModifySurecast_7559(ref IBaseAction action); +public static IBaseAction Create7560() +{ + IBaseAction action = new BaseAction(ActionID.Addle_PvE); + ModifyAddle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7560"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability] +/// </summary> +static partial void ModifyAddle_7560(ref IBaseAction action); +public static IBaseAction Create7561() +{ + IBaseAction action = new BaseAction(ActionID.Swiftcast_PvE); + ModifySwiftcast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7561"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability] +/// </summary> +static partial void ModifySwiftcast_7561(ref IBaseAction action); +public static IBaseAction Create7562() +{ + IBaseAction action = new BaseAction(ActionID.LucidDreaming_PvE); + ModifyLucidDreaming_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7562"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability] +/// </summary> +static partial void ModifyLucidDreaming_7562(ref IBaseAction action); +public static IBaseAction Create7568() +{ + IBaseAction action = new BaseAction(ActionID.Esuna_PvE); + ModifyEsuna_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7568"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell] +/// </summary> +static partial void ModifyEsuna_7568(ref IBaseAction action); +public static IBaseAction Create7571() +{ + IBaseAction action = new BaseAction(ActionID.Rescue_PvE); + ModifyRescue_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7571"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability] +/// </summary> +static partial void ModifyRescue_7571(ref IBaseAction action); +public static IBaseAction Create7599() +{ + IBaseAction action = new BaseAction(ActionID.Shockobo_PvE); + ModifyShockobo_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7599"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event] +/// </summary> +static partial void ModifyShockobo_7599(ref IBaseAction action); +public static IBaseAction Create7600() +{ + IBaseAction action = new BaseAction(ActionID.Shockobo_PvE_7600); + ModifyShockobo_PvE_7600(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7600"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount] +/// </summary> +static partial void ModifyShockobo_7600(ref IBaseAction action); +public static IBaseAction Create7619() +{ + IBaseAction action = new BaseAction(ActionID.MagitekCannon_PvE_7619); + ModifyMagitekCannon_PvE_7619(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7619"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability] +/// </summary> +static partial void ModifyMagitekCannon_7619(ref IBaseAction action); +public static IBaseAction Create7620() +{ + IBaseAction action = new BaseAction(ActionID.PhotonStream_PvE_7620); + ModifyPhotonStream_PvE_7620(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7620"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability] +/// </summary> +static partial void ModifyPhotonStream_7620(ref IBaseAction action); +public static IBaseAction Create7621() +{ + IBaseAction action = new BaseAction(ActionID.DiffractiveMagitekCannon_PvE); + ModifyDiffractiveMagitekCannon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7621"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability] +/// </summary> +static partial void ModifyDiffractiveMagitekCannon_7621(ref IBaseAction action); +public static IBaseAction Create7622() +{ + IBaseAction action = new BaseAction(ActionID.HighpoweredMagitekCannon_PvE); + ModifyHighpoweredMagitekCannon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7622"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability] +/// </summary> +static partial void ModifyHighpoweredMagitekCannon_7622(ref IBaseAction action); +public static IBaseAction Create7632() +{ + IBaseAction action = new BaseAction(ActionID.Gig_PvE); + ModifyGig_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7632"><strong>Gig</strong></see> <i>PvE</i> (FSH) [7632] [DoL Ability] +/// </summary> +static partial void ModifyGig_7632(ref IBaseAction action); +public static IBaseAction Create7816() +{ + IBaseAction action = new BaseAction(ActionID.SmokeScreen_PvE); + ModifySmokeScreen_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7816"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability] +/// </summary> +static partial void ModifySmokeScreen_7816(ref IBaseAction action); +public static IBaseAction Create7861() +{ + IBaseAction action = new BaseAction(ActionID.DoomOfTheLiving_PvE); + ModifyDoomOfTheLiving_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7861"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break] +/// </summary> +static partial void ModifyDoomOfTheLiving_7861(ref IBaseAction action); +public static IBaseAction Create7862() +{ + IBaseAction action = new BaseAction(ActionID.VermilionScourge_PvE); + ModifyVermilionScourge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7862"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break] +/// </summary> +static partial void ModifyVermilionScourge_7862(ref IBaseAction action); +public static IBaseAction Create7863() +{ + IBaseAction action = new BaseAction(ActionID.LegSweep_PvE); + ModifyLegSweep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7863"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability] +/// </summary> +static partial void ModifyLegSweep_7863(ref IBaseAction action); +public static IBaseAction Create7867() +{ + IBaseAction action = new BaseAction(ActionID.Iaijutsu_PvE); + ModifyIaijutsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7867"><strong>Iaijutsu</strong></see> <i>PvE</i> (SAM) [7867] [Weaponskill] +/// </summary> +static partial void ModifyIaijutsu_7867(ref IBaseAction action); +public static IBaseAction Create7869() +{ + IBaseAction action = new BaseAction(ActionID.DissolveUnion_PvE); + ModifyDissolveUnion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7869"><strong>Dissolve Union</strong></see> <i>PvE</i> (SCH) [7869] [Ability] +/// </summary> +static partial void ModifyDissolveUnion_7869(ref IBaseAction action); +public static IBaseAction Create7903() +{ + IBaseAction action = new BaseAction(ActionID.Fathom_PvE); + ModifyFathom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7903"><strong>Fathom</strong></see> <i>PvE</i> (Disciple of the Land) [7903] [Ability] +/// </summary> +static partial void ModifyFathom_7903(ref IBaseAction action); +public static IBaseAction Create7904() +{ + IBaseAction action = new BaseAction(ActionID.SharkEye_PvE); + ModifySharkEye_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7904"><strong>Shark Eye</strong></see> <i>PvE</i> (Disciple of the Land) [7904] [Ability] +/// </summary> +static partial void ModifySharkEye_7904(ref IBaseAction action); +public static IBaseAction Create7905() +{ + IBaseAction action = new BaseAction(ActionID.SharkEyeIi_PvE); + ModifySharkEyeIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7905"><strong>Shark Eye II</strong></see> <i>PvE</i> (Disciple of the Land) [7905] [Ability] +/// </summary> +static partial void ModifySharkEyeIi_7905(ref IBaseAction action); +public static IBaseAction Create7906() +{ + IBaseAction action = new BaseAction(ActionID.VeteranTrade_PvE); + ModifyVeteranTrade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7906"><strong>Veteran Trade</strong></see> <i>PvE</i> (FSH) [7906] [DoL Ability] +/// </summary> +static partial void ModifyVeteranTrade_7906(ref IBaseAction action); +public static IBaseAction Create7909() +{ + IBaseAction action = new BaseAction(ActionID.NaturesBounty_PvE); + ModifyNaturesBounty_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7909"><strong>Nature's Bounty</strong></see> <i>PvE</i> (FSH) [7909] [DoL Ability] +/// </summary> +static partial void ModifyNaturesBounty_7909(ref IBaseAction action); +public static IBaseAction Create7910() +{ + IBaseAction action = new BaseAction(ActionID.Salvage_PvE); + ModifySalvage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7910"><strong>Salvage</strong></see> <i>PvE</i> (FSH) [7910] [Ability] +/// </summary> +static partial void ModifySalvage_7910(ref IBaseAction action); +public static IBaseAction Create7911() +{ + IBaseAction action = new BaseAction(ActionID.TruthOfOceans_PvE); + ModifyTruthOfOceans_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7911"><strong>Truth of Oceans</strong></see> <i>PvE</i> (Disciple of the Land) [7911] [Ability] +/// </summary> +static partial void ModifyTruthOfOceans_7911(ref IBaseAction action); +public static IBaseAction Create7962() +{ + IBaseAction action = new BaseAction(ActionID.MagitekPulse_PvE); + ModifyMagitekPulse_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/7962"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery] +/// </summary> +static partial void ModifyMagitekPulse_7962(ref IBaseAction action); +public static IBaseAction Create8324() +{ + IBaseAction action = new BaseAction(ActionID.StellarDetonation_PvE); + ModifyStellarDetonation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/8324"><strong>Stellar Detonation</strong></see> <i>PvE</i> (AST) [8324] [Ability] +/// </summary> +static partial void ModifyStellarDetonation_8324(ref IBaseAction action); +public static IBaseAction Create8517() +{ + IBaseAction action = new BaseAction(ActionID.Vril_PvE); + ModifyVril_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/8517"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability] +/// </summary> +static partial void ModifyVril_8517(ref IBaseAction action); +public static IBaseAction Create8623() +{ + IBaseAction action = new BaseAction(ActionID.DoubleBubble_PvE); + ModifyDoubleBubble_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/8623"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event] +/// </summary> +static partial void ModifyDoubleBubble_8623(ref IBaseAction action); +public static IBaseAction Create8624() +{ + IBaseAction action = new BaseAction(ActionID.MagitekPulse_PvE_8624); + ModifyMagitekPulse_PvE_8624(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/8624"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability] +/// </summary> +static partial void ModifyMagitekPulse_8624(ref IBaseAction action); +public static IBaseAction Create8625() +{ + IBaseAction action = new BaseAction(ActionID.MagitekThunder_PvE); + ModifyMagitekThunder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/8625"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability] +/// </summary> +static partial void ModifyMagitekThunder_8625(ref IBaseAction action); +public static IBaseAction Create9035() +{ + IBaseAction action = new BaseAction(ActionID.ImpPunch_PvE_9035); + ModifyImpPunch_PvE_9035(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9035"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special] +/// </summary> +static partial void ModifyImpPunch_9035(ref IBaseAction action); +public static IBaseAction Create9066() +{ + IBaseAction action = new BaseAction(ActionID.AntigravityGimbal_PvE); + ModifyAntigravityGimbal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9066"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability] +/// </summary> +static partial void ModifyAntigravityGimbal_9066(ref IBaseAction action); +public static IBaseAction Create9102() +{ + IBaseAction action = new BaseAction(ActionID.AethericSiphon_PvE); + ModifyAethericSiphon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9102"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability] +/// </summary> +static partial void ModifyAethericSiphon_9102(ref IBaseAction action); +public static IBaseAction Create9345() +{ + IBaseAction action = new BaseAction(ActionID.Vril_PvE_9345); + ModifyVril_PvE_9345(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9345"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability] +/// </summary> +static partial void ModifyVril_9345(ref IBaseAction action); +public static IBaseAction Create9483() +{ + IBaseAction action = new BaseAction(ActionID.AntigravityGimbal_PvE_9483); + ModifyAntigravityGimbal_PvE_9483(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9483"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability] +/// </summary> +static partial void ModifyAntigravityGimbal_9483(ref IBaseAction action); +public static IBaseAction Create9629() +{ + IBaseAction action = new BaseAction(ActionID.Undraw_PvE); + ModifyUndraw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9629"><strong>Undraw</strong></see> <i>PvE</i> (AST) [9629] [Ability] +/// </summary> +static partial void ModifyUndraw_9629(ref IBaseAction action); +public static IBaseAction Create9823() +{ + IBaseAction action = new BaseAction(ActionID.Shatterstone_PvE); + ModifyShatterstone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9823"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill] +/// </summary> +static partial void ModifyShatterstone_9823(ref IBaseAction action); +public static IBaseAction Create9971() +{ + IBaseAction action = new BaseAction(ActionID.OpticalSight_PvP); + ModifyOpticalSight_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9971"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special] +/// </summary> +static partial void ModifyOpticalSight_9971(ref IBaseAction action); +public static IBaseAction Create9973() +{ + IBaseAction action = new BaseAction(ActionID.SpinCrusher_PvP); + ModifySpinCrusher_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9973"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special] +/// </summary> +static partial void ModifySpinCrusher_9973(ref IBaseAction action); +public static IBaseAction Create9974() +{ + IBaseAction action = new BaseAction(ActionID.LaserXSword_PvP); + ModifyLaserXSword_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9974"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special] +/// </summary> +static partial void ModifyLaserXSword_9974(ref IBaseAction action); +public static IBaseAction Create9975() +{ + IBaseAction action = new BaseAction(ActionID._3000TonzeMissile_PvP); + Modify_3000TonzeMissile_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9975"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special] +/// </summary> +static partial void Modify_3000TonzeMissile_9975(ref IBaseAction action); +public static IBaseAction Create9977() +{ + IBaseAction action = new BaseAction(ActionID.SteamRelease_PvP); + ModifySteamRelease_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9977"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special] +/// </summary> +static partial void ModifySteamRelease_9977(ref IBaseAction action); +public static IBaseAction Create9978() +{ + IBaseAction action = new BaseAction(ActionID.Flarethrower_PvP); + ModifyFlarethrower_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9978"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special] +/// </summary> +static partial void ModifyFlarethrower_9978(ref IBaseAction action); +public static IBaseAction Create9979() +{ + IBaseAction action = new BaseAction(ActionID.DoubleRocketPunch_PvP); + ModifyDoubleRocketPunch_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9979"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special] +/// </summary> +static partial void ModifyDoubleRocketPunch_9979(ref IBaseAction action); +public static IBaseAction Create9980() +{ + IBaseAction action = new BaseAction(ActionID.MegaBeam_PvP); + ModifyMegaBeam_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9980"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special] +/// </summary> +static partial void ModifyMegaBeam_9980(ref IBaseAction action); +public static IBaseAction Create9981() +{ + IBaseAction action = new BaseAction(ActionID.CeruleumRefill_PvP); + ModifyCeruleumRefill_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9981"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special] +/// </summary> +static partial void ModifyCeruleumRefill_9981(ref IBaseAction action); +public static IBaseAction Create9982() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvP); + ModifyCannonfire_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/9982"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount] +/// </summary> +static partial void ModifyCannonfire_9982(ref IBaseAction action); +public static IBaseAction Create10001() +{ + IBaseAction action = new BaseAction(ActionID.Ungarmax_PvE); + ModifyUngarmax_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10001"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break] +/// </summary> +static partial void ModifyUngarmax_10001(ref IBaseAction action); +public static IBaseAction Create10006() +{ + IBaseAction action = new BaseAction(ActionID.Deflect_PvE); + ModifyDeflect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10006"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability] +/// </summary> +static partial void ModifyDeflect_10006(ref IBaseAction action); +public static IBaseAction Create10013() +{ + IBaseAction action = new BaseAction(ActionID.Inhale_PvE); + ModifyInhale_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10013"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event] +/// </summary> +static partial void ModifyInhale_10013(ref IBaseAction action); +public static IBaseAction Create10014() +{ + IBaseAction action = new BaseAction(ActionID.Inhale_PvE_10014); + ModifyInhale_PvE_10014(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10014"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount] +/// </summary> +static partial void ModifyInhale_10014(ref IBaseAction action); +public static IBaseAction Create10019() +{ + IBaseAction action = new BaseAction(ActionID.Starburst_PvE); + ModifyStarburst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10019"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event] +/// </summary> +static partial void ModifyStarburst_10019(ref IBaseAction action); +public static IBaseAction Create10020() +{ + IBaseAction action = new BaseAction(ActionID.Starburst_PvE_10020); + ModifyStarburst_PvE_10020(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10020"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount] +/// </summary> +static partial void ModifyStarburst_10020(ref IBaseAction action); +public static IBaseAction Create10057() +{ + IBaseAction action = new BaseAction(ActionID.Dismount_PvP); + ModifyDismount_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10057"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special] +/// </summary> +static partial void ModifyDismount_10057(ref IBaseAction action); +public static IBaseAction Create10061() +{ + IBaseAction action = new BaseAction(ActionID.Return_PvE_10061); + ModifyReturn_PvE_10061(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10061"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System] +/// </summary> +static partial void ModifyReturn_10061(ref IBaseAction action); +public static IBaseAction Create10229() +{ + IBaseAction action = new BaseAction(ActionID.MegaPotion_PvE); + ModifyMegaPotion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10229"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability] +/// </summary> +static partial void ModifyMegaPotion_10229(ref IBaseAction action); +public static IBaseAction Create10262() +{ + IBaseAction action = new BaseAction(ActionID.RedPaint_PvE); + ModifyRedPaint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10262"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability] +/// </summary> +static partial void ModifyRedPaint_10262(ref IBaseAction action); +public static IBaseAction Create10263() +{ + IBaseAction action = new BaseAction(ActionID.YellowPaint_PvE); + ModifyYellowPaint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10263"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability] +/// </summary> +static partial void ModifyYellowPaint_10263(ref IBaseAction action); +public static IBaseAction Create10264() +{ + IBaseAction action = new BaseAction(ActionID.BlackPaint_PvE); + ModifyBlackPaint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10264"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability] +/// </summary> +static partial void ModifyBlackPaint_10264(ref IBaseAction action); +public static IBaseAction Create10265() +{ + IBaseAction action = new BaseAction(ActionID.BluePaint_PvE); + ModifyBluePaint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10265"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability] +/// </summary> +static partial void ModifyBluePaint_10265(ref IBaseAction action); +public static IBaseAction Create10270() +{ + IBaseAction action = new BaseAction(ActionID.Snort_PvE); + ModifySnort_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10270"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount] +/// </summary> +static partial void ModifySnort_10270(ref IBaseAction action); +public static IBaseAction Create10401() +{ + IBaseAction action = new BaseAction(ActionID.ChocoboBrush_PvE); + ModifyChocoboBrush_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10401"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability] +/// </summary> +static partial void ModifyChocoboBrush_10401(ref IBaseAction action); +public static IBaseAction Create10713() +{ + IBaseAction action = new BaseAction(ActionID.CheerJump_PvE); + ModifyCheerJump_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10713"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special] +/// </summary> +static partial void ModifyCheerJump_10713(ref IBaseAction action); +public static IBaseAction Create10714() +{ + IBaseAction action = new BaseAction(ActionID.CheerWave_PvE); + ModifyCheerWave_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10714"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special] +/// </summary> +static partial void ModifyCheerWave_10714(ref IBaseAction action); +public static IBaseAction Create10715() +{ + IBaseAction action = new BaseAction(ActionID.CheerOn_PvE); + ModifyCheerOn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10715"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special] +/// </summary> +static partial void ModifyCheerOn_10715(ref IBaseAction action); +public static IBaseAction Create10716() +{ + IBaseAction action = new BaseAction(ActionID.CheerJump_PvE_10716); + ModifyCheerJump_PvE_10716(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10716"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special] +/// </summary> +static partial void ModifyCheerJump_10716(ref IBaseAction action); +public static IBaseAction Create10717() +{ + IBaseAction action = new BaseAction(ActionID.CheerWave_PvE_10717); + ModifyCheerWave_PvE_10717(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10717"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special] +/// </summary> +static partial void ModifyCheerWave_10717(ref IBaseAction action); +public static IBaseAction Create10718() +{ + IBaseAction action = new BaseAction(ActionID.CheerOn_PvE_10718); + ModifyCheerOn_PvE_10718(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/10718"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special] +/// </summary> +static partial void ModifyCheerOn_10718(ref IBaseAction action); +public static IBaseAction Create11063() +{ + IBaseAction action = new BaseAction(ActionID.CurtainCall_PvE); + ModifyCurtainCall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11063"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special] +/// </summary> +static partial void ModifyCurtainCall_11063(ref IBaseAction action); +public static IBaseAction Create11191() +{ + IBaseAction action = new BaseAction(ActionID.RuinIii_PvE_11191); + ModifyRuinIii_PvE_11191(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11191"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell] +/// </summary> +static partial void ModifyRuinIii_11191(ref IBaseAction action); +public static IBaseAction Create11192() +{ + IBaseAction action = new BaseAction(ActionID.Physick_PvE_11192); + ModifyPhysick_PvE_11192(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11192"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell] +/// </summary> +static partial void ModifyPhysick_11192(ref IBaseAction action); +public static IBaseAction Create11193() +{ + IBaseAction action = new BaseAction(ActionID.Starstorm_PvE_11193); + ModifyStarstorm_PvE_11193(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11193"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break] +/// </summary> +static partial void ModifyStarstorm_11193(ref IBaseAction action); +public static IBaseAction Create11275() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfFrailty_PvE); + ModifyPomanderOfFrailty_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11275"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] [] +/// </summary> +static partial void ModifyPomanderOfFrailty_11275(ref IBaseAction action); +public static IBaseAction Create11276() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfConcealment_PvE); + ModifyPomanderOfConcealment_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11276"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] [] +/// </summary> +static partial void ModifyPomanderOfConcealment_11276(ref IBaseAction action); +public static IBaseAction Create11277() +{ + IBaseAction action = new BaseAction(ActionID.PomanderOfPetrification_PvE); + ModifyPomanderOfPetrification_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11277"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] [] +/// </summary> +static partial void ModifyPomanderOfPetrification_11277(ref IBaseAction action); +public static IBaseAction Create11278() +{ + IBaseAction action = new BaseAction(ActionID.Magicite_PvE); + ModifyMagicite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11278"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] [] +/// </summary> +static partial void ModifyMagicite_11278(ref IBaseAction action); +public static IBaseAction Create11383() +{ + IBaseAction action = new BaseAction(ActionID.Snort_PvE_11383); + ModifySnort_PvE_11383(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11383"><strong>Snort</strong></see> <i>PvE</i> (BLU) [11383] [Spell] +/// </summary> +static partial void ModifySnort_11383(ref IBaseAction action); +public static IBaseAction Create11384() +{ + IBaseAction action = new BaseAction(ActionID._4TonzeWeight_PvE); + Modify_4TonzeWeight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11384"><strong>4-tonze Weight</strong></see> <i>PvE</i> (BLU) [11384] [Spell] +/// </summary> +static partial void Modify_4TonzeWeight_11384(ref IBaseAction action); +public static IBaseAction Create11385() +{ + IBaseAction action = new BaseAction(ActionID.WaterCannon_PvE); + ModifyWaterCannon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11385"><strong>Water Cannon</strong></see> <i>PvE</i> (BLU) [11385] [Spell] +/// </summary> +static partial void ModifyWaterCannon_11385(ref IBaseAction action); +public static IBaseAction Create11386() +{ + IBaseAction action = new BaseAction(ActionID.SongOfTorment_PvE); + ModifySongOfTorment_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11386"><strong>Song of Torment</strong></see> <i>PvE</i> (BLU) [11386] [Spell] +/// </summary> +static partial void ModifySongOfTorment_11386(ref IBaseAction action); +public static IBaseAction Create11387() +{ + IBaseAction action = new BaseAction(ActionID.HighVoltage_PvE); + ModifyHighVoltage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11387"><strong>High Voltage</strong></see> <i>PvE</i> (BLU) [11387] [Spell] +/// </summary> +static partial void ModifyHighVoltage_11387(ref IBaseAction action); +public static IBaseAction Create11388() +{ + IBaseAction action = new BaseAction(ActionID.BadBreath_PvE); + ModifyBadBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11388"><strong>Bad Breath</strong></see> <i>PvE</i> (BLU) [11388] [Spell] +/// </summary> +static partial void ModifyBadBreath_11388(ref IBaseAction action); +public static IBaseAction Create11389() +{ + IBaseAction action = new BaseAction(ActionID.FlyingFrenzy_PvE); + ModifyFlyingFrenzy_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11389"><strong>Flying Frenzy</strong></see> <i>PvE</i> (BLU) [11389] [Spell] +/// </summary> +static partial void ModifyFlyingFrenzy_11389(ref IBaseAction action); +public static IBaseAction Create11390() +{ + IBaseAction action = new BaseAction(ActionID.AquaBreath_PvE); + ModifyAquaBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11390"><strong>Aqua Breath</strong></see> <i>PvE</i> (BLU) [11390] [Spell] +/// </summary> +static partial void ModifyAquaBreath_11390(ref IBaseAction action); +public static IBaseAction Create11391() +{ + IBaseAction action = new BaseAction(ActionID.Plaincracker_PvE); + ModifyPlaincracker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11391"><strong>Plaincracker</strong></see> <i>PvE</i> (BLU) [11391] [Spell] +/// </summary> +static partial void ModifyPlaincracker_11391(ref IBaseAction action); +public static IBaseAction Create11392() +{ + IBaseAction action = new BaseAction(ActionID.AcornBomb_PvE); + ModifyAcornBomb_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11392"><strong>Acorn Bomb</strong></see> <i>PvE</i> (BLU) [11392] [Spell] +/// </summary> +static partial void ModifyAcornBomb_11392(ref IBaseAction action); +public static IBaseAction Create11393() +{ + IBaseAction action = new BaseAction(ActionID.Bristle_PvE); + ModifyBristle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11393"><strong>Bristle</strong></see> <i>PvE</i> (BLU) [11393] [Spell] +/// </summary> +static partial void ModifyBristle_11393(ref IBaseAction action); +public static IBaseAction Create11394() +{ + IBaseAction action = new BaseAction(ActionID.MindBlast_PvE); + ModifyMindBlast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11394"><strong>Mind Blast</strong></see> <i>PvE</i> (BLU) [11394] [Spell] +/// </summary> +static partial void ModifyMindBlast_11394(ref IBaseAction action); +public static IBaseAction Create11395() +{ + IBaseAction action = new BaseAction(ActionID.BloodDrain_PvE); + ModifyBloodDrain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11395"><strong>Blood Drain</strong></see> <i>PvE</i> (BLU) [11395] [Spell] +/// </summary> +static partial void ModifyBloodDrain_11395(ref IBaseAction action); +public static IBaseAction Create11396() +{ + IBaseAction action = new BaseAction(ActionID.BombToss_PvE); + ModifyBombToss_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11396"><strong>Bomb Toss</strong></see> <i>PvE</i> (BLU) [11396] [Spell] +/// </summary> +static partial void ModifyBombToss_11396(ref IBaseAction action); +public static IBaseAction Create11397() +{ + IBaseAction action = new BaseAction(ActionID._1000Needles_PvE); + Modify_1000Needles_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11397"><strong>1000 Needles</strong></see> <i>PvE</i> (BLU) [11397] [Spell] +/// </summary> +static partial void Modify_1000Needles_11397(ref IBaseAction action); +public static IBaseAction Create11398() +{ + IBaseAction action = new BaseAction(ActionID.DrillCannons_PvE); + ModifyDrillCannons_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11398"><strong>Drill Cannons</strong></see> <i>PvE</i> (BLU) [11398] [Spell] +/// </summary> +static partial void ModifyDrillCannons_11398(ref IBaseAction action); +public static IBaseAction Create11399() +{ + IBaseAction action = new BaseAction(ActionID.TheLook_PvE); + ModifyTheLook_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11399"><strong>the Look</strong></see> <i>PvE</i> (BLU) [11399] [Spell] +/// </summary> +static partial void ModifyTheLook_11399(ref IBaseAction action); +public static IBaseAction Create11400() +{ + IBaseAction action = new BaseAction(ActionID.SharpenedKnife_PvE); + ModifySharpenedKnife_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11400"><strong>Sharpened Knife</strong></see> <i>PvE</i> (BLU) [11400] [Spell] +/// </summary> +static partial void ModifySharpenedKnife_11400(ref IBaseAction action); +public static IBaseAction Create11401() +{ + IBaseAction action = new BaseAction(ActionID.Loom_PvE); + ModifyLoom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11401"><strong>Loom</strong></see> <i>PvE</i> (BLU) [11401] [Spell] +/// </summary> +static partial void ModifyLoom_11401(ref IBaseAction action); +public static IBaseAction Create11402() +{ + IBaseAction action = new BaseAction(ActionID.FlameThrower_PvE); + ModifyFlameThrower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11402"><strong>Flame Thrower</strong></see> <i>PvE</i> (BLU) [11402] [Spell] +/// </summary> +static partial void ModifyFlameThrower_11402(ref IBaseAction action); +public static IBaseAction Create11403() +{ + IBaseAction action = new BaseAction(ActionID.Faze_PvE); + ModifyFaze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11403"><strong>Faze</strong></see> <i>PvE</i> (BLU) [11403] [Spell] +/// </summary> +static partial void ModifyFaze_11403(ref IBaseAction action); +public static IBaseAction Create11404() +{ + IBaseAction action = new BaseAction(ActionID.Glower_PvE); + ModifyGlower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11404"><strong>Glower</strong></see> <i>PvE</i> (BLU) [11404] [Spell] +/// </summary> +static partial void ModifyGlower_11404(ref IBaseAction action); +public static IBaseAction Create11405() +{ + IBaseAction action = new BaseAction(ActionID.Missile_PvE); + ModifyMissile_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11405"><strong>Missile</strong></see> <i>PvE</i> (BLU) [11405] [Spell] +/// </summary> +static partial void ModifyMissile_11405(ref IBaseAction action); +public static IBaseAction Create11406() +{ + IBaseAction action = new BaseAction(ActionID.WhiteWind_PvE); + ModifyWhiteWind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11406"><strong>White Wind</strong></see> <i>PvE</i> (BLU) [11406] [Spell] +/// </summary> +static partial void ModifyWhiteWind_11406(ref IBaseAction action); +public static IBaseAction Create11407() +{ + IBaseAction action = new BaseAction(ActionID.FinalSting_PvE); + ModifyFinalSting_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11407"><strong>Final Sting</strong></see> <i>PvE</i> (BLU) [11407] [Spell] +/// </summary> +static partial void ModifyFinalSting_11407(ref IBaseAction action); +public static IBaseAction Create11408() +{ + IBaseAction action = new BaseAction(ActionID.Selfdestruct_PvE); + ModifySelfdestruct_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11408"><strong>Self-destruct</strong></see> <i>PvE</i> (BLU) [11408] [Spell] +/// </summary> +static partial void ModifySelfdestruct_11408(ref IBaseAction action); +public static IBaseAction Create11409() +{ + IBaseAction action = new BaseAction(ActionID.Transfusion_PvE); + ModifyTransfusion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11409"><strong>Transfusion</strong></see> <i>PvE</i> (BLU) [11409] [Spell] +/// </summary> +static partial void ModifyTransfusion_11409(ref IBaseAction action); +public static IBaseAction Create11410() +{ + IBaseAction action = new BaseAction(ActionID.ToadOil_PvE); + ModifyToadOil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11410"><strong>Toad Oil</strong></see> <i>PvE</i> (BLU) [11410] [Spell] +/// </summary> +static partial void ModifyToadOil_11410(ref IBaseAction action); +public static IBaseAction Create11411() +{ + IBaseAction action = new BaseAction(ActionID.Offguard_PvE); + ModifyOffguard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11411"><strong>Off-guard</strong></see> <i>PvE</i> (BLU) [11411] [Spell] +/// </summary> +static partial void ModifyOffguard_11411(ref IBaseAction action); +public static IBaseAction Create11412() +{ + IBaseAction action = new BaseAction(ActionID.StickyTongue_PvE); + ModifyStickyTongue_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11412"><strong>Sticky Tongue</strong></see> <i>PvE</i> (BLU) [11412] [Spell] +/// </summary> +static partial void ModifyStickyTongue_11412(ref IBaseAction action); +public static IBaseAction Create11413() +{ + IBaseAction action = new BaseAction(ActionID.TailScrew_PvE); + ModifyTailScrew_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11413"><strong>Tail Screw</strong></see> <i>PvE</i> (BLU) [11413] [Spell] +/// </summary> +static partial void ModifyTailScrew_11413(ref IBaseAction action); +public static IBaseAction Create11414() +{ + IBaseAction action = new BaseAction(ActionID.Level5Petrify_PvE); + ModifyLevel5Petrify_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11414"><strong>Level 5 Petrify</strong></see> <i>PvE</i> (BLU) [11414] [Spell] +/// </summary> +static partial void ModifyLevel5Petrify_11414(ref IBaseAction action); +public static IBaseAction Create11415() +{ + IBaseAction action = new BaseAction(ActionID.MoonFlute_PvE); + ModifyMoonFlute_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11415"><strong>Moon Flute</strong></see> <i>PvE</i> (BLU) [11415] [Spell] +/// </summary> +static partial void ModifyMoonFlute_11415(ref IBaseAction action); +public static IBaseAction Create11416() +{ + IBaseAction action = new BaseAction(ActionID.Doom_PvE); + ModifyDoom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11416"><strong>Doom</strong></see> <i>PvE</i> (BLU) [11416] [Spell] +/// </summary> +static partial void ModifyDoom_11416(ref IBaseAction action); +public static IBaseAction Create11417() +{ + IBaseAction action = new BaseAction(ActionID.MightyGuard_PvE); + ModifyMightyGuard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11417"><strong>Mighty Guard</strong></see> <i>PvE</i> (BLU) [11417] [Spell] +/// </summary> +static partial void ModifyMightyGuard_11417(ref IBaseAction action); +public static IBaseAction Create11418() +{ + IBaseAction action = new BaseAction(ActionID.IceSpikes_PvE); + ModifyIceSpikes_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11418"><strong>Ice Spikes</strong></see> <i>PvE</i> (BLU) [11418] [Spell] +/// </summary> +static partial void ModifyIceSpikes_11418(ref IBaseAction action); +public static IBaseAction Create11419() +{ + IBaseAction action = new BaseAction(ActionID.TheRamsVoice_PvE); + ModifyTheRamsVoice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11419"><strong>the Ram's Voice</strong></see> <i>PvE</i> (BLU) [11419] [Spell] +/// </summary> +static partial void ModifyTheRamsVoice_11419(ref IBaseAction action); +public static IBaseAction Create11420() +{ + IBaseAction action = new BaseAction(ActionID.TheDragonsVoice_PvE); + ModifyTheDragonsVoice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11420"><strong>the Dragon's Voice</strong></see> <i>PvE</i> (BLU) [11420] [Spell] +/// </summary> +static partial void ModifyTheDragonsVoice_11420(ref IBaseAction action); +public static IBaseAction Create11421() +{ + IBaseAction action = new BaseAction(ActionID.PeculiarLight_PvE); + ModifyPeculiarLight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11421"><strong>Peculiar Light</strong></see> <i>PvE</i> (BLU) [11421] [Spell] +/// </summary> +static partial void ModifyPeculiarLight_11421(ref IBaseAction action); +public static IBaseAction Create11422() +{ + IBaseAction action = new BaseAction(ActionID.InkJet_PvE); + ModifyInkJet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11422"><strong>Ink Jet</strong></see> <i>PvE</i> (BLU) [11422] [Spell] +/// </summary> +static partial void ModifyInkJet_11422(ref IBaseAction action); +public static IBaseAction Create11423() +{ + IBaseAction action = new BaseAction(ActionID.FlyingSardine_PvE); + ModifyFlyingSardine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11423"><strong>Flying Sardine</strong></see> <i>PvE</i> (BLU) [11423] [Spell] +/// </summary> +static partial void ModifyFlyingSardine_11423(ref IBaseAction action); +public static IBaseAction Create11424() +{ + IBaseAction action = new BaseAction(ActionID.Diamondback_PvE); + ModifyDiamondback_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11424"><strong>Diamondback</strong></see> <i>PvE</i> (BLU) [11424] [Spell] +/// </summary> +static partial void ModifyDiamondback_11424(ref IBaseAction action); +public static IBaseAction Create11425() +{ + IBaseAction action = new BaseAction(ActionID.FireAngon_PvE); + ModifyFireAngon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11425"><strong>Fire Angon</strong></see> <i>PvE</i> (BLU) [11425] [Spell] +/// </summary> +static partial void ModifyFireAngon_11425(ref IBaseAction action); +public static IBaseAction Create11426() +{ + IBaseAction action = new BaseAction(ActionID.FeatherRain_PvE); + ModifyFeatherRain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11426"><strong>Feather Rain</strong></see> <i>PvE</i> (BLU) [11426] [Ability] +/// </summary> +static partial void ModifyFeatherRain_11426(ref IBaseAction action); +public static IBaseAction Create11427() +{ + IBaseAction action = new BaseAction(ActionID.Eruption_PvE); + ModifyEruption_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11427"><strong>Eruption</strong></see> <i>PvE</i> (BLU) [11427] [Ability] +/// </summary> +static partial void ModifyEruption_11427(ref IBaseAction action); +public static IBaseAction Create11428() +{ + IBaseAction action = new BaseAction(ActionID.MountainBuster_PvE); + ModifyMountainBuster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11428"><strong>Mountain Buster</strong></see> <i>PvE</i> (BLU) [11428] [Ability] +/// </summary> +static partial void ModifyMountainBuster_11428(ref IBaseAction action); +public static IBaseAction Create11429() +{ + IBaseAction action = new BaseAction(ActionID.ShockStrike_PvE); + ModifyShockStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11429"><strong>Shock Strike</strong></see> <i>PvE</i> (BLU) [11429] [Ability] +/// </summary> +static partial void ModifyShockStrike_11429(ref IBaseAction action); +public static IBaseAction Create11430() +{ + IBaseAction action = new BaseAction(ActionID.GlassDance_PvE); + ModifyGlassDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11430"><strong>Glass Dance</strong></see> <i>PvE</i> (BLU) [11430] [Ability] +/// </summary> +static partial void ModifyGlassDance_11430(ref IBaseAction action); +public static IBaseAction Create11431() +{ + IBaseAction action = new BaseAction(ActionID.VeilOfTheWhorl_PvE); + ModifyVeilOfTheWhorl_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11431"><strong>Veil of the Whorl</strong></see> <i>PvE</i> (BLU) [11431] [Ability] +/// </summary> +static partial void ModifyVeilOfTheWhorl_11431(ref IBaseAction action); +public static IBaseAction Create11482() +{ + IBaseAction action = new BaseAction(ActionID.Trishackle_PvE); + ModifyTrishackle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11482"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell] +/// </summary> +static partial void ModifyTrishackle_11482(ref IBaseAction action); +public static IBaseAction Create11499() +{ + IBaseAction action = new BaseAction(ActionID.Wasshoi_PvE); + ModifyWasshoi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11499"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event] +/// </summary> +static partial void ModifyWasshoi_11499(ref IBaseAction action); +public static IBaseAction Create11500() +{ + IBaseAction action = new BaseAction(ActionID.Wasshoi_PvE_11500); + ModifyWasshoi_PvE_11500(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/11500"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount] +/// </summary> +static partial void ModifyWasshoi_11500(ref IBaseAction action); +public static IBaseAction Create12257() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE_12257); + ModifyCannonfire_PvE_12257(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12257"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery] +/// </summary> +static partial void ModifyCannonfire_12257(ref IBaseAction action); +public static IBaseAction Create12577() +{ + IBaseAction action = new BaseAction(ActionID.MogHeaven_PvE); + ModifyMogHeaven_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12577"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special] +/// </summary> +static partial void ModifyMogHeaven_12577(ref IBaseAction action); +public static IBaseAction Create12578() +{ + IBaseAction action = new BaseAction(ActionID.BringItPom_PvE); + ModifyBringItPom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12578"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special] +/// </summary> +static partial void ModifyBringItPom_12578(ref IBaseAction action); +public static IBaseAction Create12870() +{ + IBaseAction action = new BaseAction(ActionID.LogosAction_PvE); + ModifyLogosAction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12870"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] [] +/// </summary> +static partial void ModifyLogosAction_12870(ref IBaseAction action); +public static IBaseAction Create12911() +{ + IBaseAction action = new BaseAction(ActionID.OmegaJammer_PvE); + ModifyOmegaJammer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12911"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability] +/// </summary> +static partial void ModifyOmegaJammer_12911(ref IBaseAction action); +public static IBaseAction Create12958() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheAetherweaver_PvE); + ModifyWisdomOfTheAetherweaver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12958"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheAetherweaver_12958(ref IBaseAction action); +public static IBaseAction Create12959() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheMartialist_PvE); + ModifyWisdomOfTheMartialist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12959"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheMartialist_12959(ref IBaseAction action); +public static IBaseAction Create12960() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfThePlatebearer_PvE); + ModifyWisdomOfThePlatebearer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12960"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell] +/// </summary> +static partial void ModifyWisdomOfThePlatebearer_12960(ref IBaseAction action); +public static IBaseAction Create12961() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheGuardian_PvE); + ModifyWisdomOfTheGuardian_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12961"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheGuardian_12961(ref IBaseAction action); +public static IBaseAction Create12962() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheOrdained_PvE); + ModifyWisdomOfTheOrdained_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12962"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheOrdained_12962(ref IBaseAction action); +public static IBaseAction Create12963() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheSkirmisher_PvE); + ModifyWisdomOfTheSkirmisher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12963"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheSkirmisher_12963(ref IBaseAction action); +public static IBaseAction Create12964() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheWatcher_PvE); + ModifyWisdomOfTheWatcher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12964"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheWatcher_12964(ref IBaseAction action); +public static IBaseAction Create12965() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheTemplar_PvE); + ModifyWisdomOfTheTemplar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12965"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheTemplar_12965(ref IBaseAction action); +public static IBaseAction Create12966() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheIrregular_PvE); + ModifyWisdomOfTheIrregular_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12966"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheIrregular_12966(ref IBaseAction action); +public static IBaseAction Create12967() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheBreathtaker_PvE); + ModifyWisdomOfTheBreathtaker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12967"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheBreathtaker_12967(ref IBaseAction action); +public static IBaseAction Create12968() +{ + IBaseAction action = new BaseAction(ActionID.SpiritOfTheRemembered_PvE); + ModifySpiritOfTheRemembered_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12968"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability] +/// </summary> +static partial void ModifySpiritOfTheRemembered_12968(ref IBaseAction action); +public static IBaseAction Create12969() +{ + IBaseAction action = new BaseAction(ActionID.ProtectL_PvE); + ModifyProtectL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12969"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell] +/// </summary> +static partial void ModifyProtectL_12969(ref IBaseAction action); +public static IBaseAction Create12970() +{ + IBaseAction action = new BaseAction(ActionID.ShellL_PvE); + ModifyShellL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12970"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell] +/// </summary> +static partial void ModifyShellL_12970(ref IBaseAction action); +public static IBaseAction Create12971() +{ + IBaseAction action = new BaseAction(ActionID.DeathL_PvE); + ModifyDeathL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12971"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell] +/// </summary> +static partial void ModifyDeathL_12971(ref IBaseAction action); +public static IBaseAction Create12972() +{ + IBaseAction action = new BaseAction(ActionID.FocusL_PvE); + ModifyFocusL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12972"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability] +/// </summary> +static partial void ModifyFocusL_12972(ref IBaseAction action); +public static IBaseAction Create12973() +{ + IBaseAction action = new BaseAction(ActionID.ParalyzeL_PvE); + ModifyParalyzeL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12973"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell] +/// </summary> +static partial void ModifyParalyzeL_12973(ref IBaseAction action); +public static IBaseAction Create12974() +{ + IBaseAction action = new BaseAction(ActionID.ParalyzeLIii_PvE); + ModifyParalyzeLIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12974"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell] +/// </summary> +static partial void ModifyParalyzeLIii_12974(ref IBaseAction action); +public static IBaseAction Create12975() +{ + IBaseAction action = new BaseAction(ActionID.SwiftL_PvE); + ModifySwiftL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12975"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability] +/// </summary> +static partial void ModifySwiftL_12975(ref IBaseAction action); +public static IBaseAction Create12976() +{ + IBaseAction action = new BaseAction(ActionID.FeatherfootL_PvE); + ModifyFeatherfootL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12976"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability] +/// </summary> +static partial void ModifyFeatherfootL_12976(ref IBaseAction action); +public static IBaseAction Create12977() +{ + IBaseAction action = new BaseAction(ActionID.SpiritDartL_PvE); + ModifySpiritDartL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12977"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill] +/// </summary> +static partial void ModifySpiritDartL_12977(ref IBaseAction action); +public static IBaseAction Create12978() +{ + IBaseAction action = new BaseAction(ActionID.CatastropheL_PvE); + ModifyCatastropheL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12978"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability] +/// </summary> +static partial void ModifyCatastropheL_12978(ref IBaseAction action); +public static IBaseAction Create12979() +{ + IBaseAction action = new BaseAction(ActionID.DispelL_PvE); + ModifyDispelL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12979"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell] +/// </summary> +static partial void ModifyDispelL_12979(ref IBaseAction action); +public static IBaseAction Create12980() +{ + IBaseAction action = new BaseAction(ActionID.FeintL_PvE); + ModifyFeintL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12980"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill] +/// </summary> +static partial void ModifyFeintL_12980(ref IBaseAction action); +public static IBaseAction Create12981() +{ + IBaseAction action = new BaseAction(ActionID.StealthL_PvE); + ModifyStealthL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12981"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability] +/// </summary> +static partial void ModifyStealthL_12981(ref IBaseAction action); +public static IBaseAction Create12982() +{ + IBaseAction action = new BaseAction(ActionID.AetherialManipulationL_PvE); + ModifyAetherialManipulationL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12982"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability] +/// </summary> +static partial void ModifyAetherialManipulationL_12982(ref IBaseAction action); +public static IBaseAction Create12983() +{ + IBaseAction action = new BaseAction(ActionID.BackstepL_PvE); + ModifyBackstepL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12983"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability] +/// </summary> +static partial void ModifyBackstepL_12983(ref IBaseAction action); +public static IBaseAction Create12984() +{ + IBaseAction action = new BaseAction(ActionID.TranquilizerL_PvE); + ModifyTranquilizerL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12984"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability] +/// </summary> +static partial void ModifyTranquilizerL_12984(ref IBaseAction action); +public static IBaseAction Create12985() +{ + IBaseAction action = new BaseAction(ActionID.BloodbathL_PvE); + ModifyBloodbathL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12985"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability] +/// </summary> +static partial void ModifyBloodbathL_12985(ref IBaseAction action); +public static IBaseAction Create12986() +{ + IBaseAction action = new BaseAction(ActionID.RejuvenateL_PvE); + ModifyRejuvenateL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12986"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability] +/// </summary> +static partial void ModifyRejuvenateL_12986(ref IBaseAction action); +public static IBaseAction Create12987() +{ + IBaseAction action = new BaseAction(ActionID.HaymakerL_PvE); + ModifyHaymakerL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12987"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability] +/// </summary> +static partial void ModifyHaymakerL_12987(ref IBaseAction action); +public static IBaseAction Create12988() +{ + IBaseAction action = new BaseAction(ActionID.RapidRecastL_PvE); + ModifyRapidRecastL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12988"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability] +/// </summary> +static partial void ModifyRapidRecastL_12988(ref IBaseAction action); +public static IBaseAction Create12989() +{ + IBaseAction action = new BaseAction(ActionID.CureL_PvE); + ModifyCureL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12989"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell] +/// </summary> +static partial void ModifyCureL_12989(ref IBaseAction action); +public static IBaseAction Create12990() +{ + IBaseAction action = new BaseAction(ActionID.CureLIi_PvE); + ModifyCureLIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12990"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability] +/// </summary> +static partial void ModifyCureLIi_12990(ref IBaseAction action); +public static IBaseAction Create12991() +{ + IBaseAction action = new BaseAction(ActionID.StoneskinL_PvE); + ModifyStoneskinL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12991"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell] +/// </summary> +static partial void ModifyStoneskinL_12991(ref IBaseAction action); +public static IBaseAction Create12992() +{ + IBaseAction action = new BaseAction(ActionID.CureLIii_PvE); + ModifyCureLIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12992"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell] +/// </summary> +static partial void ModifyCureLIii_12992(ref IBaseAction action); +public static IBaseAction Create12993() +{ + IBaseAction action = new BaseAction(ActionID.RegenL_PvE); + ModifyRegenL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12993"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell] +/// </summary> +static partial void ModifyRegenL_12993(ref IBaseAction action); +public static IBaseAction Create12994() +{ + IBaseAction action = new BaseAction(ActionID.EsunaL_PvE); + ModifyEsunaL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12994"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell] +/// </summary> +static partial void ModifyEsunaL_12994(ref IBaseAction action); +public static IBaseAction Create12995() +{ + IBaseAction action = new BaseAction(ActionID.IncenseL_PvE); + ModifyIncenseL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12995"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability] +/// </summary> +static partial void ModifyIncenseL_12995(ref IBaseAction action); +public static IBaseAction Create12996() +{ + IBaseAction action = new BaseAction(ActionID.RaiseL_PvE); + ModifyRaiseL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12996"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell] +/// </summary> +static partial void ModifyRaiseL_12996(ref IBaseAction action); +public static IBaseAction Create12997() +{ + IBaseAction action = new BaseAction(ActionID.BraveryL_PvE); + ModifyBraveryL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12997"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell] +/// </summary> +static partial void ModifyBraveryL_12997(ref IBaseAction action); +public static IBaseAction Create12998() +{ + IBaseAction action = new BaseAction(ActionID.SolidShieldL_PvE); + ModifySolidShieldL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12998"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability] +/// </summary> +static partial void ModifySolidShieldL_12998(ref IBaseAction action); +public static IBaseAction Create12999() +{ + IBaseAction action = new BaseAction(ActionID.SpellShieldL_PvE); + ModifySpellShieldL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/12999"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability] +/// </summary> +static partial void ModifySpellShieldL_12999(ref IBaseAction action); +public static IBaseAction Create13000() +{ + IBaseAction action = new BaseAction(ActionID.ReflectL_PvE); + ModifyReflectL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13000"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell] +/// </summary> +static partial void ModifyReflectL_13000(ref IBaseAction action); +public static IBaseAction Create13001() +{ + IBaseAction action = new BaseAction(ActionID.SmiteL_PvE); + ModifySmiteL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13001"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability] +/// </summary> +static partial void ModifySmiteL_13001(ref IBaseAction action); +public static IBaseAction Create13002() +{ + IBaseAction action = new BaseAction(ActionID.RefreshL_PvE); + ModifyRefreshL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13002"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell] +/// </summary> +static partial void ModifyRefreshL_13002(ref IBaseAction action); +public static IBaseAction Create13003() +{ + IBaseAction action = new BaseAction(ActionID.BanishL_PvE); + ModifyBanishL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13003"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell] +/// </summary> +static partial void ModifyBanishL_13003(ref IBaseAction action); +public static IBaseAction Create13004() +{ + IBaseAction action = new BaseAction(ActionID.BanishLIii_PvE); + ModifyBanishLIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13004"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell] +/// </summary> +static partial void ModifyBanishLIii_13004(ref IBaseAction action); +public static IBaseAction Create13005() +{ + IBaseAction action = new BaseAction(ActionID.MagicBurstL_PvE); + ModifyMagicBurstL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13005"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability] +/// </summary> +static partial void ModifyMagicBurstL_13005(ref IBaseAction action); +public static IBaseAction Create13006() +{ + IBaseAction action = new BaseAction(ActionID.DoubleEdgeL_PvE); + ModifyDoubleEdgeL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13006"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability] +/// </summary> +static partial void ModifyDoubleEdgeL_13006(ref IBaseAction action); +public static IBaseAction Create13007() +{ + IBaseAction action = new BaseAction(ActionID.EagleEyeShotL_PvE); + ModifyEagleEyeShotL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13007"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) [13007] [Weaponskill] +/// </summary> +static partial void ModifyEagleEyeShotL_13007(ref IBaseAction action); +public static IBaseAction Create13265() +{ + IBaseAction action = new BaseAction(ActionID.TricksomeTreat_PvE); + ModifyTricksomeTreat_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13265"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special] +/// </summary> +static partial void ModifyTricksomeTreat_13265(ref IBaseAction action); +public static IBaseAction Create13266() +{ + IBaseAction action = new BaseAction(ActionID.Unveil_PvE); + ModifyUnveil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13266"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special] +/// </summary> +static partial void ModifyUnveil_13266(ref IBaseAction action); +public static IBaseAction Create13423() +{ + IBaseAction action = new BaseAction(ActionID.StoneIvOfTheSeventhDawn_PvE); + ModifyStoneIvOfTheSeventhDawn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13423"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell] +/// </summary> +static partial void ModifyStoneIvOfTheSeventhDawn_13423(ref IBaseAction action); +public static IBaseAction Create13424() +{ + IBaseAction action = new BaseAction(ActionID.AeroIiOfTheSeventhDawn_PvE); + ModifyAeroIiOfTheSeventhDawn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13424"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell] +/// </summary> +static partial void ModifyAeroIiOfTheSeventhDawn_13424(ref IBaseAction action); +public static IBaseAction Create13425() +{ + IBaseAction action = new BaseAction(ActionID.CureIiOfTheSeventhDawn_PvE); + ModifyCureIiOfTheSeventhDawn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13425"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell] +/// </summary> +static partial void ModifyCureIiOfTheSeventhDawn_13425(ref IBaseAction action); +public static IBaseAction Create13426() +{ + IBaseAction action = new BaseAction(ActionID.Aetherwell_PvE); + ModifyAetherwell_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/13426"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability] +/// </summary> +static partial void ModifyAetherwell_13426(ref IBaseAction action); +public static IBaseAction Create14414() +{ + IBaseAction action = new BaseAction(ActionID.HeavenlySword_PvE); + ModifyHeavenlySword_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14414"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability] +/// </summary> +static partial void ModifyHeavenlySword_14414(ref IBaseAction action); +public static IBaseAction Create14415() +{ + IBaseAction action = new BaseAction(ActionID.HeavenlyShield_PvE); + ModifyHeavenlyShield_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14415"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability] +/// </summary> +static partial void ModifyHeavenlyShield_14415(ref IBaseAction action); +public static IBaseAction Create14476() +{ + IBaseAction action = new BaseAction(ActionID.PerceptionL_PvE); + ModifyPerceptionL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14476"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability] +/// </summary> +static partial void ModifyPerceptionL_14476(ref IBaseAction action); +public static IBaseAction Create14477() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheElder_PvE); + ModifyWisdomOfTheElder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14477"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [14477] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheElder_14477(ref IBaseAction action); +public static IBaseAction Create14478() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheDuelist_PvE); + ModifyWisdomOfTheDuelist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14478"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheDuelist_14478(ref IBaseAction action); +public static IBaseAction Create14479() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheFiendhunter_PvE); + ModifyWisdomOfTheFiendhunter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14479"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [14479] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheFiendhunter_14479(ref IBaseAction action); +public static IBaseAction Create14480() +{ + IBaseAction action = new BaseAction(ActionID.WisdomOfTheIndomitable_PvE); + ModifyWisdomOfTheIndomitable_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14480"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell] +/// </summary> +static partial void ModifyWisdomOfTheIndomitable_14480(ref IBaseAction action); +public static IBaseAction Create14481() +{ + IBaseAction action = new BaseAction(ActionID.SacrificeL_PvE); + ModifySacrificeL_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14481"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell] +/// </summary> +static partial void ModifySacrificeL_14481(ref IBaseAction action); +public static IBaseAction Create14597() +{ + IBaseAction action = new BaseAction(ActionID.Warpstrike_PvE); + ModifyWarpstrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14597"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability] +/// </summary> +static partial void ModifyWarpstrike_14597(ref IBaseAction action); +public static IBaseAction Create14840() +{ + IBaseAction action = new BaseAction(ActionID.Kyokufu_PvE); + ModifyKyokufu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14840"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill] +/// </summary> +static partial void ModifyKyokufu_14840(ref IBaseAction action); +public static IBaseAction Create14841() +{ + IBaseAction action = new BaseAction(ActionID.Ajisai_PvE); + ModifyAjisai_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14841"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill] +/// </summary> +static partial void ModifyAjisai_14841(ref IBaseAction action); +public static IBaseAction Create14842() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuGyoten_PvE_14842); + ModifyHissatsuGyoten_PvE_14842(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/14842"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability] +/// </summary> +static partial void ModifyHissatsuGyoten_14842(ref IBaseAction action); +public static IBaseAction Create15375() +{ + IBaseAction action = new BaseAction(ActionID.SecondWind_PvE_15375); + ModifySecondWind_PvE_15375(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15375"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability] +/// </summary> +static partial void ModifySecondWind_15375(ref IBaseAction action); +public static IBaseAction Create15537() +{ + IBaseAction action = new BaseAction(ActionID.Interject_PvE_15537); + ModifyInterject_PvE_15537(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15537"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability] +/// </summary> +static partial void ModifyInterject_15537(ref IBaseAction action); +public static IBaseAction Create15553() +{ + IBaseAction action = new BaseAction(ActionID.Present_PvE); + ModifyPresent_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15553"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special] +/// </summary> +static partial void ModifyPresent_15553(ref IBaseAction action); +public static IBaseAction Create15870() +{ + IBaseAction action = new BaseAction(ActionID.FightOrFlight_PvE_15870); + ModifyFightOrFlight_PvE_15870(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15870"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability] +/// </summary> +static partial void ModifyFightOrFlight_15870(ref IBaseAction action); +public static IBaseAction Create15989() +{ + IBaseAction action = new BaseAction(ActionID.Cascade_PvE); + ModifyCascade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15989"><strong>Cascade</strong></see> <i>PvE</i> (DNC) [15989] [Weaponskill] +/// </summary> +static partial void ModifyCascade_15989(ref IBaseAction action); +public static IBaseAction Create15990() +{ + IBaseAction action = new BaseAction(ActionID.Fountain_PvE); + ModifyFountain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15990"><strong>Fountain</strong></see> <i>PvE</i> (DNC) [15990] [Weaponskill] +/// </summary> +static partial void ModifyFountain_15990(ref IBaseAction action); +public static IBaseAction Create15991() +{ + IBaseAction action = new BaseAction(ActionID.ReverseCascade_PvE); + ModifyReverseCascade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15991"><strong>Reverse Cascade</strong></see> <i>PvE</i> (DNC) [15991] [Weaponskill] +/// </summary> +static partial void ModifyReverseCascade_15991(ref IBaseAction action); +public static IBaseAction Create15992() +{ + IBaseAction action = new BaseAction(ActionID.Fountainfall_PvE); + ModifyFountainfall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15992"><strong>Fountainfall</strong></see> <i>PvE</i> (DNC) [15992] [Weaponskill] +/// </summary> +static partial void ModifyFountainfall_15992(ref IBaseAction action); +public static IBaseAction Create15993() +{ + IBaseAction action = new BaseAction(ActionID.Windmill_PvE); + ModifyWindmill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15993"><strong>Windmill</strong></see> <i>PvE</i> (DNC) [15993] [Weaponskill] +/// </summary> +static partial void ModifyWindmill_15993(ref IBaseAction action); +public static IBaseAction Create15994() +{ + IBaseAction action = new BaseAction(ActionID.Bladeshower_PvE); + ModifyBladeshower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15994"><strong>Bladeshower</strong></see> <i>PvE</i> (DNC) [15994] [Weaponskill] +/// </summary> +static partial void ModifyBladeshower_15994(ref IBaseAction action); +public static IBaseAction Create15995() +{ + IBaseAction action = new BaseAction(ActionID.RisingWindmill_PvE); + ModifyRisingWindmill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15995"><strong>Rising Windmill</strong></see> <i>PvE</i> (DNC) [15995] [Weaponskill] +/// </summary> +static partial void ModifyRisingWindmill_15995(ref IBaseAction action); +public static IBaseAction Create15996() +{ + IBaseAction action = new BaseAction(ActionID.Bloodshower_PvE); + ModifyBloodshower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15996"><strong>Bloodshower</strong></see> <i>PvE</i> (DNC) [15996] [Weaponskill] +/// </summary> +static partial void ModifyBloodshower_15996(ref IBaseAction action); +public static IBaseAction Create15997() +{ + IBaseAction action = new BaseAction(ActionID.StandardStep_PvE); + ModifyStandardStep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15997"><strong>Standard Step</strong></see> <i>PvE</i> (DNC) [15997] [Weaponskill] +/// </summary> +static partial void ModifyStandardStep_15997(ref IBaseAction action); +public static IBaseAction Create15998() +{ + IBaseAction action = new BaseAction(ActionID.TechnicalStep_PvE); + ModifyTechnicalStep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15998"><strong>Technical Step</strong></see> <i>PvE</i> (DNC) [15998] [Weaponskill] +/// </summary> +static partial void ModifyTechnicalStep_15998(ref IBaseAction action); +public static IBaseAction Create15999() +{ + IBaseAction action = new BaseAction(ActionID.Emboite_PvE); + ModifyEmboite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/15999"><strong>Emboite</strong></see> <i>PvE</i> (DNC) [15999] [Weaponskill] +/// </summary> +static partial void ModifyEmboite_15999(ref IBaseAction action); +public static IBaseAction Create16000() +{ + IBaseAction action = new BaseAction(ActionID.Entrechat_PvE); + ModifyEntrechat_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16000"><strong>Entrechat</strong></see> <i>PvE</i> (DNC) [16000] [Weaponskill] +/// </summary> +static partial void ModifyEntrechat_16000(ref IBaseAction action); +public static IBaseAction Create16001() +{ + IBaseAction action = new BaseAction(ActionID.Jete_PvE); + ModifyJete_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16001"><strong>Jete</strong></see> <i>PvE</i> (DNC) [16001] [Weaponskill] +/// </summary> +static partial void ModifyJete_16001(ref IBaseAction action); +public static IBaseAction Create16002() +{ + IBaseAction action = new BaseAction(ActionID.Pirouette_PvE); + ModifyPirouette_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16002"><strong>Pirouette</strong></see> <i>PvE</i> (DNC) [16002] [Weaponskill] +/// </summary> +static partial void ModifyPirouette_16002(ref IBaseAction action); +public static IBaseAction Create16003() +{ + IBaseAction action = new BaseAction(ActionID.StandardFinish_PvE); + ModifyStandardFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16003"><strong>Standard Finish</strong></see> <i>PvE</i> (DNC) [16003] [Weaponskill] +/// </summary> +static partial void ModifyStandardFinish_16003(ref IBaseAction action); +public static IBaseAction Create16004() +{ + IBaseAction action = new BaseAction(ActionID.TechnicalFinish_PvE); + ModifyTechnicalFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16004"><strong>Technical Finish</strong></see> <i>PvE</i> (DNC) [16004] [Weaponskill] +/// </summary> +static partial void ModifyTechnicalFinish_16004(ref IBaseAction action); +public static IBaseAction Create16005() +{ + IBaseAction action = new BaseAction(ActionID.SaberDance_PvE); + ModifySaberDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16005"><strong>Saber Dance</strong></see> <i>PvE</i> (DNC) [16005] [Weaponskill] +/// </summary> +static partial void ModifySaberDance_16005(ref IBaseAction action); +public static IBaseAction Create16006() +{ + IBaseAction action = new BaseAction(ActionID.ClosedPosition_PvE); + ModifyClosedPosition_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16006"><strong>Closed Position</strong></see> <i>PvE</i> (DNC) [16006] [Ability] +/// </summary> +static partial void ModifyClosedPosition_16006(ref IBaseAction action); +public static IBaseAction Create16007() +{ + IBaseAction action = new BaseAction(ActionID.FanDance_PvE); + ModifyFanDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16007"><strong>Fan Dance</strong></see> <i>PvE</i> (DNC) [16007] [Ability] +/// </summary> +static partial void ModifyFanDance_16007(ref IBaseAction action); +public static IBaseAction Create16008() +{ + IBaseAction action = new BaseAction(ActionID.FanDanceIi_PvE); + ModifyFanDanceIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16008"><strong>Fan Dance II</strong></see> <i>PvE</i> (DNC) [16008] [Ability] +/// </summary> +static partial void ModifyFanDanceIi_16008(ref IBaseAction action); +public static IBaseAction Create16009() +{ + IBaseAction action = new BaseAction(ActionID.FanDanceIii_PvE); + ModifyFanDanceIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16009"><strong>Fan Dance III</strong></see> <i>PvE</i> (DNC) [16009] [Ability] +/// </summary> +static partial void ModifyFanDanceIii_16009(ref IBaseAction action); +public static IBaseAction Create16010() +{ + IBaseAction action = new BaseAction(ActionID.EnAvant_PvE); + ModifyEnAvant_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16010"><strong>En Avant</strong></see> <i>PvE</i> (DNC) [16010] [Ability] +/// </summary> +static partial void ModifyEnAvant_16010(ref IBaseAction action); +public static IBaseAction Create16011() +{ + IBaseAction action = new BaseAction(ActionID.Devilment_PvE); + ModifyDevilment_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16011"><strong>Devilment</strong></see> <i>PvE</i> (DNC) [16011] [Ability] +/// </summary> +static partial void ModifyDevilment_16011(ref IBaseAction action); +public static IBaseAction Create16012() +{ + IBaseAction action = new BaseAction(ActionID.ShieldSamba_PvE); + ModifyShieldSamba_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16012"><strong>Shield Samba</strong></see> <i>PvE</i> (DNC) [16012] [Ability] +/// </summary> +static partial void ModifyShieldSamba_16012(ref IBaseAction action); +public static IBaseAction Create16013() +{ + IBaseAction action = new BaseAction(ActionID.Flourish_PvE); + ModifyFlourish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16013"><strong>Flourish</strong></see> <i>PvE</i> (DNC) [16013] [Ability] +/// </summary> +static partial void ModifyFlourish_16013(ref IBaseAction action); +public static IBaseAction Create16014() +{ + IBaseAction action = new BaseAction(ActionID.Improvisation_PvE); + ModifyImprovisation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16014"><strong>Improvisation</strong></see> <i>PvE</i> (DNC) [16014] [Ability] +/// </summary> +static partial void ModifyImprovisation_16014(ref IBaseAction action); +public static IBaseAction Create16015() +{ + IBaseAction action = new BaseAction(ActionID.CuringWaltz_PvE); + ModifyCuringWaltz_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16015"><strong>Curing Waltz</strong></see> <i>PvE</i> (DNC) [16015] [Ability] +/// </summary> +static partial void ModifyCuringWaltz_16015(ref IBaseAction action); +public static IBaseAction Create16137() +{ + IBaseAction action = new BaseAction(ActionID.KeenEdge_PvE); + ModifyKeenEdge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16137"><strong>Keen Edge</strong></see> <i>PvE</i> (GNB) [16137] [Weaponskill] +/// </summary> +static partial void ModifyKeenEdge_16137(ref IBaseAction action); +public static IBaseAction Create16138() +{ + IBaseAction action = new BaseAction(ActionID.NoMercy_PvE); + ModifyNoMercy_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16138"><strong>No Mercy</strong></see> <i>PvE</i> (GNB) [16138] [Ability] +/// </summary> +static partial void ModifyNoMercy_16138(ref IBaseAction action); +public static IBaseAction Create16139() +{ + IBaseAction action = new BaseAction(ActionID.BrutalShell_PvE); + ModifyBrutalShell_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16139"><strong>Brutal Shell</strong></see> <i>PvE</i> (GNB) [16139] [Weaponskill] +/// </summary> +static partial void ModifyBrutalShell_16139(ref IBaseAction action); +public static IBaseAction Create16140() +{ + IBaseAction action = new BaseAction(ActionID.Camouflage_PvE); + ModifyCamouflage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16140"><strong>Camouflage</strong></see> <i>PvE</i> (GNB) [16140] [Ability] +/// </summary> +static partial void ModifyCamouflage_16140(ref IBaseAction action); +public static IBaseAction Create16141() +{ + IBaseAction action = new BaseAction(ActionID.DemonSlice_PvE); + ModifyDemonSlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16141"><strong>Demon Slice</strong></see> <i>PvE</i> (GNB) [16141] [Weaponskill] +/// </summary> +static partial void ModifyDemonSlice_16141(ref IBaseAction action); +public static IBaseAction Create16142() +{ + IBaseAction action = new BaseAction(ActionID.RoyalGuard_PvE); + ModifyRoyalGuard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16142"><strong>Royal Guard</strong></see> <i>PvE</i> (GNB) [16142] [Ability] +/// </summary> +static partial void ModifyRoyalGuard_16142(ref IBaseAction action); +public static IBaseAction Create16143() +{ + IBaseAction action = new BaseAction(ActionID.LightningShot_PvE); + ModifyLightningShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16143"><strong>Lightning Shot</strong></see> <i>PvE</i> (GNB) [16143] [Weaponskill] +/// </summary> +static partial void ModifyLightningShot_16143(ref IBaseAction action); +public static IBaseAction Create16144() +{ + IBaseAction action = new BaseAction(ActionID.DangerZone_PvE); + ModifyDangerZone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16144"><strong>Danger Zone</strong></see> <i>PvE</i> (GNB) [16144] [Ability] +/// </summary> +static partial void ModifyDangerZone_16144(ref IBaseAction action); +public static IBaseAction Create16145() +{ + IBaseAction action = new BaseAction(ActionID.SolidBarrel_PvE); + ModifySolidBarrel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16145"><strong>Solid Barrel</strong></see> <i>PvE</i> (GNB) [16145] [Weaponskill] +/// </summary> +static partial void ModifySolidBarrel_16145(ref IBaseAction action); +public static IBaseAction Create16146() +{ + IBaseAction action = new BaseAction(ActionID.GnashingFang_PvE); + ModifyGnashingFang_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16146"><strong>Gnashing Fang</strong></see> <i>PvE</i> (GNB) [16146] [Weaponskill] +/// </summary> +static partial void ModifyGnashingFang_16146(ref IBaseAction action); +public static IBaseAction Create16147() +{ + IBaseAction action = new BaseAction(ActionID.SavageClaw_PvE); + ModifySavageClaw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16147"><strong>Savage Claw</strong></see> <i>PvE</i> (GNB) [16147] [Weaponskill] +/// </summary> +static partial void ModifySavageClaw_16147(ref IBaseAction action); +public static IBaseAction Create16148() +{ + IBaseAction action = new BaseAction(ActionID.Nebula_PvE); + ModifyNebula_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16148"><strong>Nebula</strong></see> <i>PvE</i> (GNB) [16148] [Ability] +/// </summary> +static partial void ModifyNebula_16148(ref IBaseAction action); +public static IBaseAction Create16149() +{ + IBaseAction action = new BaseAction(ActionID.DemonSlaughter_PvE); + ModifyDemonSlaughter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16149"><strong>Demon Slaughter</strong></see> <i>PvE</i> (GNB) [16149] [Weaponskill] +/// </summary> +static partial void ModifyDemonSlaughter_16149(ref IBaseAction action); +public static IBaseAction Create16150() +{ + IBaseAction action = new BaseAction(ActionID.WickedTalon_PvE); + ModifyWickedTalon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16150"><strong>Wicked Talon</strong></see> <i>PvE</i> (GNB) [16150] [Weaponskill] +/// </summary> +static partial void ModifyWickedTalon_16150(ref IBaseAction action); +public static IBaseAction Create16151() +{ + IBaseAction action = new BaseAction(ActionID.Aurora_PvE); + ModifyAurora_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16151"><strong>Aurora</strong></see> <i>PvE</i> (GNB) [16151] [Ability] +/// </summary> +static partial void ModifyAurora_16151(ref IBaseAction action); +public static IBaseAction Create16152() +{ + IBaseAction action = new BaseAction(ActionID.Superbolide_PvE); + ModifySuperbolide_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16152"><strong>Superbolide</strong></see> <i>PvE</i> (GNB) [16152] [Ability] +/// </summary> +static partial void ModifySuperbolide_16152(ref IBaseAction action); +public static IBaseAction Create16153() +{ + IBaseAction action = new BaseAction(ActionID.SonicBreak_PvE); + ModifySonicBreak_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16153"><strong>Sonic Break</strong></see> <i>PvE</i> (GNB) [16153] [Weaponskill] +/// </summary> +static partial void ModifySonicBreak_16153(ref IBaseAction action); +public static IBaseAction Create16154() +{ + IBaseAction action = new BaseAction(ActionID.RoughDivide_PvE); + ModifyRoughDivide_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16154"><strong>Rough Divide</strong></see> <i>PvE</i> (GNB) [16154] [Ability] +/// </summary> +static partial void ModifyRoughDivide_16154(ref IBaseAction action); +public static IBaseAction Create16155() +{ + IBaseAction action = new BaseAction(ActionID.Continuation_PvE); + ModifyContinuation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16155"><strong>Continuation</strong></see> <i>PvE</i> (GNB) [16155] [Ability] +/// </summary> +static partial void ModifyContinuation_16155(ref IBaseAction action); +public static IBaseAction Create16156() +{ + IBaseAction action = new BaseAction(ActionID.JugularRip_PvE); + ModifyJugularRip_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16156"><strong>Jugular Rip</strong></see> <i>PvE</i> (GNB) [16156] [Ability] +/// </summary> +static partial void ModifyJugularRip_16156(ref IBaseAction action); +public static IBaseAction Create16157() +{ + IBaseAction action = new BaseAction(ActionID.AbdomenTear_PvE); + ModifyAbdomenTear_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16157"><strong>Abdomen Tear</strong></see> <i>PvE</i> (GNB) [16157] [Ability] +/// </summary> +static partial void ModifyAbdomenTear_16157(ref IBaseAction action); +public static IBaseAction Create16158() +{ + IBaseAction action = new BaseAction(ActionID.EyeGouge_PvE); + ModifyEyeGouge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16158"><strong>Eye Gouge</strong></see> <i>PvE</i> (GNB) [16158] [Ability] +/// </summary> +static partial void ModifyEyeGouge_16158(ref IBaseAction action); +public static IBaseAction Create16159() +{ + IBaseAction action = new BaseAction(ActionID.BowShock_PvE); + ModifyBowShock_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16159"><strong>Bow Shock</strong></see> <i>PvE</i> (GNB) [16159] [Ability] +/// </summary> +static partial void ModifyBowShock_16159(ref IBaseAction action); +public static IBaseAction Create16160() +{ + IBaseAction action = new BaseAction(ActionID.HeartOfLight_PvE); + ModifyHeartOfLight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16160"><strong>Heart of Light</strong></see> <i>PvE</i> (GNB) [16160] [Ability] +/// </summary> +static partial void ModifyHeartOfLight_16160(ref IBaseAction action); +public static IBaseAction Create16161() +{ + IBaseAction action = new BaseAction(ActionID.HeartOfStone_PvE); + ModifyHeartOfStone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16161"><strong>Heart of Stone</strong></see> <i>PvE</i> (GNB) [16161] [Ability] +/// </summary> +static partial void ModifyHeartOfStone_16161(ref IBaseAction action); +public static IBaseAction Create16162() +{ + IBaseAction action = new BaseAction(ActionID.BurstStrike_PvE); + ModifyBurstStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16162"><strong>Burst Strike</strong></see> <i>PvE</i> (GNB) [16162] [Weaponskill] +/// </summary> +static partial void ModifyBurstStrike_16162(ref IBaseAction action); +public static IBaseAction Create16163() +{ + IBaseAction action = new BaseAction(ActionID.FatedCircle_PvE); + ModifyFatedCircle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16163"><strong>Fated Circle</strong></see> <i>PvE</i> (GNB) [16163] [Weaponskill] +/// </summary> +static partial void ModifyFatedCircle_16163(ref IBaseAction action); +public static IBaseAction Create16164() +{ + IBaseAction action = new BaseAction(ActionID.Bloodfest_PvE); + ModifyBloodfest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16164"><strong>Bloodfest</strong></see> <i>PvE</i> (GNB) [16164] [Ability] +/// </summary> +static partial void ModifyBloodfest_16164(ref IBaseAction action); +public static IBaseAction Create16165() +{ + IBaseAction action = new BaseAction(ActionID.BlastingZone_PvE); + ModifyBlastingZone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16165"><strong>Blasting Zone</strong></see> <i>PvE</i> (GNB) [16165] [Ability] +/// </summary> +static partial void ModifyBlastingZone_16165(ref IBaseAction action); +public static IBaseAction Create16191() +{ + IBaseAction action = new BaseAction(ActionID.SingleStandardFinish_PvE); + ModifySingleStandardFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16191"><strong>Single Standard Finish</strong></see> <i>PvE</i> (DNC) [16191] [Weaponskill] +/// </summary> +static partial void ModifySingleStandardFinish_16191(ref IBaseAction action); +public static IBaseAction Create16192() +{ + IBaseAction action = new BaseAction(ActionID.DoubleStandardFinish_PvE); + ModifyDoubleStandardFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16192"><strong>Double Standard Finish</strong></see> <i>PvE</i> (DNC) [16192] [Weaponskill] +/// </summary> +static partial void ModifyDoubleStandardFinish_16192(ref IBaseAction action); +public static IBaseAction Create16193() +{ + IBaseAction action = new BaseAction(ActionID.SingleTechnicalFinish_PvE); + ModifySingleTechnicalFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16193"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [16193] [Weaponskill] +/// </summary> +static partial void ModifySingleTechnicalFinish_16193(ref IBaseAction action); +public static IBaseAction Create16194() +{ + IBaseAction action = new BaseAction(ActionID.DoubleTechnicalFinish_PvE); + ModifyDoubleTechnicalFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16194"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [16194] [Weaponskill] +/// </summary> +static partial void ModifyDoubleTechnicalFinish_16194(ref IBaseAction action); +public static IBaseAction Create16195() +{ + IBaseAction action = new BaseAction(ActionID.TripleTechnicalFinish_PvE); + ModifyTripleTechnicalFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16195"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [16195] [Weaponskill] +/// </summary> +static partial void ModifyTripleTechnicalFinish_16195(ref IBaseAction action); +public static IBaseAction Create16196() +{ + IBaseAction action = new BaseAction(ActionID.QuadrupleTechnicalFinish_PvE); + ModifyQuadrupleTechnicalFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16196"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [16196] [Weaponskill] +/// </summary> +static partial void ModifyQuadrupleTechnicalFinish_16196(ref IBaseAction action); +public static IBaseAction Create16230() +{ + IBaseAction action = new BaseAction(ActionID.Physick_PvE_16230); + ModifyPhysick_PvE_16230(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16230"><strong>Physick</strong></see> <i>PvE</i> (ACN SMN) [16230] [Spell] +/// </summary> +static partial void ModifyPhysick_16230(ref IBaseAction action); +public static IBaseAction Create16269() +{ + IBaseAction action = new BaseAction(ActionID.RightfulSword_PvE); + ModifyRightfulSword_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16269"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill] +/// </summary> +static partial void ModifyRightfulSword_16269(ref IBaseAction action); +public static IBaseAction Create16418() +{ + IBaseAction action = new BaseAction(ActionID.BrutalShell_PvE_16418); + ModifyBrutalShell_PvE_16418(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16418"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill] +/// </summary> +static partial void ModifyBrutalShell_16418(ref IBaseAction action); +public static IBaseAction Create16434() +{ + IBaseAction action = new BaseAction(ActionID.KeenEdge_PvE_16434); + ModifyKeenEdge_PvE_16434(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16434"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill] +/// </summary> +static partial void ModifyKeenEdge_16434(ref IBaseAction action); +public static IBaseAction Create16435() +{ + IBaseAction action = new BaseAction(ActionID.SolidBarrel_PvE_16435); + ModifySolidBarrel_PvE_16435(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16435"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill] +/// </summary> +static partial void ModifySolidBarrel_16435(ref IBaseAction action); +public static IBaseAction Create16436() +{ + IBaseAction action = new BaseAction(ActionID.SoothingPotion_PvE); + ModifySoothingPotion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16436"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability] +/// </summary> +static partial void ModifySoothingPotion_16436(ref IBaseAction action); +public static IBaseAction Create16437() +{ + IBaseAction action = new BaseAction(ActionID.ShiningBlade_PvE); + ModifyShiningBlade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16437"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill] +/// </summary> +static partial void ModifyShiningBlade_16437(ref IBaseAction action); +public static IBaseAction Create16438() +{ + IBaseAction action = new BaseAction(ActionID.PerfectDeception_PvE); + ModifyPerfectDeception_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16438"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability] +/// </summary> +static partial void ModifyPerfectDeception_16438(ref IBaseAction action); +public static IBaseAction Create16439() +{ + IBaseAction action = new BaseAction(ActionID.LeapOfFaith_PvE); + ModifyLeapOfFaith_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16439"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill] +/// </summary> +static partial void ModifyLeapOfFaith_16439(ref IBaseAction action); +public static IBaseAction Create16457() +{ + IBaseAction action = new BaseAction(ActionID.Prominence_PvE); + ModifyProminence_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16457"><strong>Prominence</strong></see> <i>PvE</i> (PLD) [16457] [Weaponskill] +/// </summary> +static partial void ModifyProminence_16457(ref IBaseAction action); +public static IBaseAction Create16458() +{ + IBaseAction action = new BaseAction(ActionID.HolyCircle_PvE); + ModifyHolyCircle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16458"><strong>Holy Circle</strong></see> <i>PvE</i> (PLD) [16458] [Spell] +/// </summary> +static partial void ModifyHolyCircle_16458(ref IBaseAction action); +public static IBaseAction Create16459() +{ + IBaseAction action = new BaseAction(ActionID.Confiteor_PvE); + ModifyConfiteor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16459"><strong>Confiteor</strong></see> <i>PvE</i> (PLD) [16459] [Spell] +/// </summary> +static partial void ModifyConfiteor_16459(ref IBaseAction action); +public static IBaseAction Create16460() +{ + IBaseAction action = new BaseAction(ActionID.Atonement_PvE); + ModifyAtonement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16460"><strong>Atonement</strong></see> <i>PvE</i> (PLD) [16460] [Weaponskill] +/// </summary> +static partial void ModifyAtonement_16460(ref IBaseAction action); +public static IBaseAction Create16461() +{ + IBaseAction action = new BaseAction(ActionID.Intervene_PvE); + ModifyIntervene_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16461"><strong>Intervene</strong></see> <i>PvE</i> (PLD) [16461] [Ability] +/// </summary> +static partial void ModifyIntervene_16461(ref IBaseAction action); +public static IBaseAction Create16462() +{ + IBaseAction action = new BaseAction(ActionID.MythrilTempest_PvE); + ModifyMythrilTempest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16462"><strong>Mythril Tempest</strong></see> <i>PvE</i> (WAR) [16462] [Weaponskill] +/// </summary> +static partial void ModifyMythrilTempest_16462(ref IBaseAction action); +public static IBaseAction Create16463() +{ + IBaseAction action = new BaseAction(ActionID.ChaoticCyclone_PvE); + ModifyChaoticCyclone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16463"><strong>Chaotic Cyclone</strong></see> <i>PvE</i> (WAR) [16463] [Weaponskill] +/// </summary> +static partial void ModifyChaoticCyclone_16463(ref IBaseAction action); +public static IBaseAction Create16464() +{ + IBaseAction action = new BaseAction(ActionID.NascentFlash_PvE); + ModifyNascentFlash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16464"><strong>Nascent Flash</strong></see> <i>PvE</i> (WAR) [16464] [Ability] +/// </summary> +static partial void ModifyNascentFlash_16464(ref IBaseAction action); +public static IBaseAction Create16465() +{ + IBaseAction action = new BaseAction(ActionID.InnerChaos_PvE); + ModifyInnerChaos_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16465"><strong>Inner Chaos</strong></see> <i>PvE</i> (WAR) [16465] [Weaponskill] +/// </summary> +static partial void ModifyInnerChaos_16465(ref IBaseAction action); +public static IBaseAction Create16466() +{ + IBaseAction action = new BaseAction(ActionID.FloodOfDarkness_PvE); + ModifyFloodOfDarkness_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16466"><strong>Flood of Darkness</strong></see> <i>PvE</i> (DRK) [16466] [Ability] +/// </summary> +static partial void ModifyFloodOfDarkness_16466(ref IBaseAction action); +public static IBaseAction Create16467() +{ + IBaseAction action = new BaseAction(ActionID.EdgeOfDarkness_PvE); + ModifyEdgeOfDarkness_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16467"><strong>Edge of Darkness</strong></see> <i>PvE</i> (DRK) [16467] [Ability] +/// </summary> +static partial void ModifyEdgeOfDarkness_16467(ref IBaseAction action); +public static IBaseAction Create16468() +{ + IBaseAction action = new BaseAction(ActionID.StalwartSoul_PvE); + ModifyStalwartSoul_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16468"><strong>Stalwart Soul</strong></see> <i>PvE</i> (DRK) [16468] [Spell] +/// </summary> +static partial void ModifyStalwartSoul_16468(ref IBaseAction action); +public static IBaseAction Create16469() +{ + IBaseAction action = new BaseAction(ActionID.FloodOfShadow_PvE); + ModifyFloodOfShadow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16469"><strong>Flood of Shadow</strong></see> <i>PvE</i> (DRK) [16469] [Ability] +/// </summary> +static partial void ModifyFloodOfShadow_16469(ref IBaseAction action); +public static IBaseAction Create16470() +{ + IBaseAction action = new BaseAction(ActionID.EdgeOfShadow_PvE); + ModifyEdgeOfShadow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16470"><strong>Edge of Shadow</strong></see> <i>PvE</i> (DRK) [16470] [Ability] +/// </summary> +static partial void ModifyEdgeOfShadow_16470(ref IBaseAction action); +public static IBaseAction Create16471() +{ + IBaseAction action = new BaseAction(ActionID.DarkMissionary_PvE); + ModifyDarkMissionary_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16471"><strong>Dark Missionary</strong></see> <i>PvE</i> (DRK) [16471] [Ability] +/// </summary> +static partial void ModifyDarkMissionary_16471(ref IBaseAction action); +public static IBaseAction Create16472() +{ + IBaseAction action = new BaseAction(ActionID.LivingShadow_PvE); + ModifyLivingShadow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16472"><strong>Living Shadow</strong></see> <i>PvE</i> (DRK) [16472] [Ability] +/// </summary> +static partial void ModifyLivingShadow_16472(ref IBaseAction action); +public static IBaseAction Create16473() +{ + IBaseAction action = new BaseAction(ActionID.FourpointFury_PvE); + ModifyFourpointFury_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16473"><strong>Four-point Fury</strong></see> <i>PvE</i> (MNK) [16473] [Weaponskill] +/// </summary> +static partial void ModifyFourpointFury_16473(ref IBaseAction action); +public static IBaseAction Create16474() +{ + IBaseAction action = new BaseAction(ActionID.Enlightenment_PvE); + ModifyEnlightenment_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16474"><strong>Enlightenment</strong></see> <i>PvE</i> (MNK) [16474] [Ability] +/// </summary> +static partial void ModifyEnlightenment_16474(ref IBaseAction action); +public static IBaseAction Create16475() +{ + IBaseAction action = new BaseAction(ActionID.Anatman_PvE); + ModifyAnatman_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16475"><strong>Anatman</strong></see> <i>PvE</i> (MNK) [16475] [Ability] +/// </summary> +static partial void ModifyAnatman_16475(ref IBaseAction action); +public static IBaseAction Create16476() +{ + IBaseAction action = new BaseAction(ActionID.SixsidedStar_PvE); + ModifySixsidedStar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16476"><strong>Six-sided Star</strong></see> <i>PvE</i> (MNK) [16476] [Weaponskill] +/// </summary> +static partial void ModifySixsidedStar_16476(ref IBaseAction action); +public static IBaseAction Create16477() +{ + IBaseAction action = new BaseAction(ActionID.CoerthanTorment_PvE); + ModifyCoerthanTorment_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16477"><strong>Coerthan Torment</strong></see> <i>PvE</i> (DRG) [16477] [Weaponskill] +/// </summary> +static partial void ModifyCoerthanTorment_16477(ref IBaseAction action); +public static IBaseAction Create16478() +{ + IBaseAction action = new BaseAction(ActionID.HighJump_PvE); + ModifyHighJump_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16478"><strong>High Jump</strong></see> <i>PvE</i> (DRG) [16478] [Ability] +/// </summary> +static partial void ModifyHighJump_16478(ref IBaseAction action); +public static IBaseAction Create16479() +{ + IBaseAction action = new BaseAction(ActionID.RaidenThrust_PvE); + ModifyRaidenThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16479"><strong>Raiden Thrust</strong></see> <i>PvE</i> (DRG) [16479] [Weaponskill] +/// </summary> +static partial void ModifyRaidenThrust_16479(ref IBaseAction action); +public static IBaseAction Create16480() +{ + IBaseAction action = new BaseAction(ActionID.Stardiver_PvE); + ModifyStardiver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16480"><strong>Stardiver</strong></see> <i>PvE</i> (DRG) [16480] [Ability] +/// </summary> +static partial void ModifyStardiver_16480(ref IBaseAction action); +public static IBaseAction Create16481() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuSenei_PvE); + ModifyHissatsuSenei_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16481"><strong>Hissatsu: Senei</strong></see> <i>PvE</i> (SAM) [16481] [Ability] +/// </summary> +static partial void ModifyHissatsuSenei_16481(ref IBaseAction action); +public static IBaseAction Create16482() +{ + IBaseAction action = new BaseAction(ActionID.Ikishoten_PvE); + ModifyIkishoten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16482"><strong>Ikishoten</strong></see> <i>PvE</i> (SAM) [16482] [Ability] +/// </summary> +static partial void ModifyIkishoten_16482(ref IBaseAction action); +public static IBaseAction Create16483() +{ + IBaseAction action = new BaseAction(ActionID.Tsubamegaeshi_PvE); + ModifyTsubamegaeshi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16483"><strong>Tsubame-gaeshi</strong></see> <i>PvE</i> (SAM) [16483] [Ability] +/// </summary> +static partial void ModifyTsubamegaeshi_16483(ref IBaseAction action); +public static IBaseAction Create16484() +{ + IBaseAction action = new BaseAction(ActionID.KaeshiHiganbana_PvE); + ModifyKaeshiHiganbana_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16484"><strong>Kaeshi: Higanbana</strong></see> <i>PvE</i> (SAM) [16484] [Ability] +/// </summary> +static partial void ModifyKaeshiHiganbana_16484(ref IBaseAction action); +public static IBaseAction Create16485() +{ + IBaseAction action = new BaseAction(ActionID.KaeshiGoken_PvE); + ModifyKaeshiGoken_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16485"><strong>Kaeshi: Goken</strong></see> <i>PvE</i> (SAM) [16485] [Ability] +/// </summary> +static partial void ModifyKaeshiGoken_16485(ref IBaseAction action); +public static IBaseAction Create16486() +{ + IBaseAction action = new BaseAction(ActionID.KaeshiSetsugekka_PvE); + ModifyKaeshiSetsugekka_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16486"><strong>Kaeshi: Setsugekka</strong></see> <i>PvE</i> (SAM) [16486] [Ability] +/// </summary> +static partial void ModifyKaeshiSetsugekka_16486(ref IBaseAction action); +public static IBaseAction Create16487() +{ + IBaseAction action = new BaseAction(ActionID.Shoha_PvE); + ModifyShoha_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16487"><strong>Shoha</strong></see> <i>PvE</i> (SAM) [16487] [Ability] +/// </summary> +static partial void ModifyShoha_16487(ref IBaseAction action); +public static IBaseAction Create16488() +{ + IBaseAction action = new BaseAction(ActionID.HakkeMujinsatsu_PvE); + ModifyHakkeMujinsatsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16488"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [16488] [Weaponskill] +/// </summary> +static partial void ModifyHakkeMujinsatsu_16488(ref IBaseAction action); +public static IBaseAction Create16489() +{ + IBaseAction action = new BaseAction(ActionID.Meisui_PvE); + ModifyMeisui_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16489"><strong>Meisui</strong></see> <i>PvE</i> (NIN) [16489] [Ability] +/// </summary> +static partial void ModifyMeisui_16489(ref IBaseAction action); +public static IBaseAction Create16491() +{ + IBaseAction action = new BaseAction(ActionID.GokaMekkyaku_PvE); + ModifyGokaMekkyaku_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16491"><strong>Goka Mekkyaku</strong></see> <i>PvE</i> (NIN) [16491] [Ability] +/// </summary> +static partial void ModifyGokaMekkyaku_16491(ref IBaseAction action); +public static IBaseAction Create16492() +{ + IBaseAction action = new BaseAction(ActionID.HyoshoRanryu_PvE); + ModifyHyoshoRanryu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16492"><strong>Hyosho Ranryu</strong></see> <i>PvE</i> (NIN) [16492] [Ability] +/// </summary> +static partial void ModifyHyoshoRanryu_16492(ref IBaseAction action); +public static IBaseAction Create16493() +{ + IBaseAction action = new BaseAction(ActionID.Bunshin_PvE); + ModifyBunshin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16493"><strong>Bunshin</strong></see> <i>PvE</i> (NIN) [16493] [Ability] +/// </summary> +static partial void ModifyBunshin_16493(ref IBaseAction action); +public static IBaseAction Create16494() +{ + IBaseAction action = new BaseAction(ActionID.Shadowbite_PvE); + ModifyShadowbite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16494"><strong>Shadowbite</strong></see> <i>PvE</i> (BRD) [16494] [Weaponskill] +/// </summary> +static partial void ModifyShadowbite_16494(ref IBaseAction action); +public static IBaseAction Create16495() +{ + IBaseAction action = new BaseAction(ActionID.BurstShot_PvE); + ModifyBurstShot_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16495"><strong>Burst Shot</strong></see> <i>PvE</i> (BRD) [16495] [Weaponskill] +/// </summary> +static partial void ModifyBurstShot_16495(ref IBaseAction action); +public static IBaseAction Create16496() +{ + IBaseAction action = new BaseAction(ActionID.ApexArrow_PvE); + ModifyApexArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16496"><strong>Apex Arrow</strong></see> <i>PvE</i> (BRD) [16496] [Weaponskill] +/// </summary> +static partial void ModifyApexArrow_16496(ref IBaseAction action); +public static IBaseAction Create16497() +{ + IBaseAction action = new BaseAction(ActionID.AutoCrossbow_PvE); + ModifyAutoCrossbow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16497"><strong>Auto Crossbow</strong></see> <i>PvE</i> (MCH) [16497] [Weaponskill] +/// </summary> +static partial void ModifyAutoCrossbow_16497(ref IBaseAction action); +public static IBaseAction Create16498() +{ + IBaseAction action = new BaseAction(ActionID.Drill_PvE); + ModifyDrill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16498"><strong>Drill</strong></see> <i>PvE</i> (MCH) [16498] [Weaponskill] +/// </summary> +static partial void ModifyDrill_16498(ref IBaseAction action); +public static IBaseAction Create16499() +{ + IBaseAction action = new BaseAction(ActionID.Bioblaster_PvE); + ModifyBioblaster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16499"><strong>Bioblaster</strong></see> <i>PvE</i> (MCH) [16499] [Weaponskill] +/// </summary> +static partial void ModifyBioblaster_16499(ref IBaseAction action); +public static IBaseAction Create16500() +{ + IBaseAction action = new BaseAction(ActionID.AirAnchor_PvE); + ModifyAirAnchor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16500"><strong>Air Anchor</strong></see> <i>PvE</i> (MCH) [16500] [Weaponskill] +/// </summary> +static partial void ModifyAirAnchor_16500(ref IBaseAction action); +public static IBaseAction Create16501() +{ + IBaseAction action = new BaseAction(ActionID.AutomatonQueen_PvE); + ModifyAutomatonQueen_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16501"><strong>Automaton Queen</strong></see> <i>PvE</i> (MCH) [16501] [Ability] +/// </summary> +static partial void ModifyAutomatonQueen_16501(ref IBaseAction action); +public static IBaseAction Create16502() +{ + IBaseAction action = new BaseAction(ActionID.QueenOverdrive_PvE); + ModifyQueenOverdrive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16502"><strong>Queen Overdrive</strong></see> <i>PvE</i> (MCH) [16502] [Ability] +/// </summary> +static partial void ModifyQueenOverdrive_16502(ref IBaseAction action); +public static IBaseAction Create16503() +{ + IBaseAction action = new BaseAction(ActionID.PileBunker_PvE); + ModifyPileBunker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16503"><strong>Pile Bunker</strong></see> <i>PvE</i> (MCH) [16503] [Ability] +/// </summary> +static partial void ModifyPileBunker_16503(ref IBaseAction action); +public static IBaseAction Create16504() +{ + IBaseAction action = new BaseAction(ActionID.ArmPunch_PvE); + ModifyArmPunch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16504"><strong>Arm Punch</strong></see> <i>PvE</i> (MCH) [16504] [Weaponskill] +/// </summary> +static partial void ModifyArmPunch_16504(ref IBaseAction action); +public static IBaseAction Create16505() +{ + IBaseAction action = new BaseAction(ActionID.Despair_PvE); + ModifyDespair_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16505"><strong>Despair</strong></see> <i>PvE</i> (BLM) [16505] [Spell] +/// </summary> +static partial void ModifyDespair_16505(ref IBaseAction action); +public static IBaseAction Create16506() +{ + IBaseAction action = new BaseAction(ActionID.UmbralSoul_PvE); + ModifyUmbralSoul_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16506"><strong>Umbral Soul</strong></see> <i>PvE</i> (BLM) [16506] [Spell] +/// </summary> +static partial void ModifyUmbralSoul_16506(ref IBaseAction action); +public static IBaseAction Create16507() +{ + IBaseAction action = new BaseAction(ActionID.Xenoglossy_PvE); + ModifyXenoglossy_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16507"><strong>Xenoglossy</strong></see> <i>PvE</i> (BLM) [16507] [Spell] +/// </summary> +static partial void ModifyXenoglossy_16507(ref IBaseAction action); +public static IBaseAction Create16508() +{ + IBaseAction action = new BaseAction(ActionID.EnergyDrain_PvE_16508); + ModifyEnergyDrain_PvE_16508(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16508"><strong>Energy Drain</strong></see> <i>PvE</i> (ACN SMN) [16508] [Ability] +/// </summary> +static partial void ModifyEnergyDrain_16508(ref IBaseAction action); +public static IBaseAction Create16510() +{ + IBaseAction action = new BaseAction(ActionID.EnergySiphon_PvE); + ModifyEnergySiphon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16510"><strong>Energy Siphon</strong></see> <i>PvE</i> (SMN) [16510] [Ability] +/// </summary> +static partial void ModifyEnergySiphon_16510(ref IBaseAction action); +public static IBaseAction Create16511() +{ + IBaseAction action = new BaseAction(ActionID.Outburst_PvE); + ModifyOutburst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16511"><strong>Outburst</strong></see> <i>PvE</i> (ACN SMN) [16511] [Spell] +/// </summary> +static partial void ModifyOutburst_16511(ref IBaseAction action); +public static IBaseAction Create16514() +{ + IBaseAction action = new BaseAction(ActionID.FountainOfFire_PvE); + ModifyFountainOfFire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16514"><strong>Fountain of Fire</strong></see> <i>PvE</i> (SMN) [16514] [Spell] +/// </summary> +static partial void ModifyFountainOfFire_16514(ref IBaseAction action); +public static IBaseAction Create16515() +{ + IBaseAction action = new BaseAction(ActionID.BrandOfPurgatory_PvE); + ModifyBrandOfPurgatory_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16515"><strong>Brand of Purgatory</strong></see> <i>PvE</i> (SMN) [16515] [Spell] +/// </summary> +static partial void ModifyBrandOfPurgatory_16515(ref IBaseAction action); +public static IBaseAction Create16516() +{ + IBaseAction action = new BaseAction(ActionID.EnkindlePhoenix_PvE); + ModifyEnkindlePhoenix_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16516"><strong>Enkindle Phoenix</strong></see> <i>PvE</i> (SMN) [16516] [Ability] +/// </summary> +static partial void ModifyEnkindlePhoenix_16516(ref IBaseAction action); +public static IBaseAction Create16517() +{ + IBaseAction action = new BaseAction(ActionID.EverlastingFlight_PvE); + ModifyEverlastingFlight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16517"><strong>Everlasting Flight</strong></see> <i>PvE</i> (SMN) [16517] [Ability] +/// </summary> +static partial void ModifyEverlastingFlight_16517(ref IBaseAction action); +public static IBaseAction Create16518() +{ + IBaseAction action = new BaseAction(ActionID.Revelation_PvE); + ModifyRevelation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16518"><strong>Revelation</strong></see> <i>PvE</i> (SMN) [16518] [Ability] +/// </summary> +static partial void ModifyRevelation_16518(ref IBaseAction action); +public static IBaseAction Create16519() +{ + IBaseAction action = new BaseAction(ActionID.ScarletFlame_PvE); + ModifyScarletFlame_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16519"><strong>Scarlet Flame</strong></see> <i>PvE</i> (SMN) [16519] [Spell] +/// </summary> +static partial void ModifyScarletFlame_16519(ref IBaseAction action); +public static IBaseAction Create16524() +{ + IBaseAction action = new BaseAction(ActionID.VerthunderIi_PvE); + ModifyVerthunderIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16524"><strong>Verthunder II</strong></see> <i>PvE</i> (RDM) [16524] [Spell] +/// </summary> +static partial void ModifyVerthunderIi_16524(ref IBaseAction action); +public static IBaseAction Create16525() +{ + IBaseAction action = new BaseAction(ActionID.VeraeroIi_PvE); + ModifyVeraeroIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16525"><strong>Veraero II</strong></see> <i>PvE</i> (RDM) [16525] [Spell] +/// </summary> +static partial void ModifyVeraeroIi_16525(ref IBaseAction action); +public static IBaseAction Create16526() +{ + IBaseAction action = new BaseAction(ActionID.Impact_PvE); + ModifyImpact_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16526"><strong>Impact</strong></see> <i>PvE</i> (RDM) [16526] [Spell] +/// </summary> +static partial void ModifyImpact_16526(ref IBaseAction action); +public static IBaseAction Create16527() +{ + IBaseAction action = new BaseAction(ActionID.Engagement_PvE); + ModifyEngagement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16527"><strong>Engagement</strong></see> <i>PvE</i> (RDM) [16527] [Ability] +/// </summary> +static partial void ModifyEngagement_16527(ref IBaseAction action); +public static IBaseAction Create16528() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedReprise_PvE); + ModifyEnchantedReprise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16528"><strong>Enchanted Reprise</strong></see> <i>PvE</i> (RDM) [16528] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedReprise_16528(ref IBaseAction action); +public static IBaseAction Create16529() +{ + IBaseAction action = new BaseAction(ActionID.Reprise_PvE); + ModifyReprise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16529"><strong>Reprise</strong></see> <i>PvE</i> (RDM) [16529] [Weaponskill] +/// </summary> +static partial void ModifyReprise_16529(ref IBaseAction action); +public static IBaseAction Create16530() +{ + IBaseAction action = new BaseAction(ActionID.Scorch_PvE); + ModifyScorch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16530"><strong>Scorch</strong></see> <i>PvE</i> (RDM) [16530] [Spell] +/// </summary> +static partial void ModifyScorch_16530(ref IBaseAction action); +public static IBaseAction Create16531() +{ + IBaseAction action = new BaseAction(ActionID.AfflatusSolace_PvE); + ModifyAfflatusSolace_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16531"><strong>Afflatus Solace</strong></see> <i>PvE</i> (WHM) [16531] [Spell] +/// </summary> +static partial void ModifyAfflatusSolace_16531(ref IBaseAction action); +public static IBaseAction Create16532() +{ + IBaseAction action = new BaseAction(ActionID.Dia_PvE); + ModifyDia_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16532"><strong>Dia</strong></see> <i>PvE</i> (WHM) [16532] [Spell] +/// </summary> +static partial void ModifyDia_16532(ref IBaseAction action); +public static IBaseAction Create16533() +{ + IBaseAction action = new BaseAction(ActionID.Glare_PvE); + ModifyGlare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16533"><strong>Glare</strong></see> <i>PvE</i> (WHM) [16533] [Spell] +/// </summary> +static partial void ModifyGlare_16533(ref IBaseAction action); +public static IBaseAction Create16534() +{ + IBaseAction action = new BaseAction(ActionID.AfflatusRapture_PvE); + ModifyAfflatusRapture_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16534"><strong>Afflatus Rapture</strong></see> <i>PvE</i> (WHM) [16534] [Spell] +/// </summary> +static partial void ModifyAfflatusRapture_16534(ref IBaseAction action); +public static IBaseAction Create16535() +{ + IBaseAction action = new BaseAction(ActionID.AfflatusMisery_PvE); + ModifyAfflatusMisery_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16535"><strong>Afflatus Misery</strong></see> <i>PvE</i> (WHM) [16535] [Spell] +/// </summary> +static partial void ModifyAfflatusMisery_16535(ref IBaseAction action); +public static IBaseAction Create16536() +{ + IBaseAction action = new BaseAction(ActionID.Temperance_PvE); + ModifyTemperance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16536"><strong>Temperance</strong></see> <i>PvE</i> (WHM) [16536] [Ability] +/// </summary> +static partial void ModifyTemperance_16536(ref IBaseAction action); +public static IBaseAction Create16537() +{ + IBaseAction action = new BaseAction(ActionID.WhisperingDawn_PvE_16537); + ModifyWhisperingDawn_PvE_16537(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16537"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [16537] [Ability] +/// </summary> +static partial void ModifyWhisperingDawn_16537(ref IBaseAction action); +public static IBaseAction Create16538() +{ + IBaseAction action = new BaseAction(ActionID.FeyIllumination_PvE_16538); + ModifyFeyIllumination_PvE_16538(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16538"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [16538] [Ability] +/// </summary> +static partial void ModifyFeyIllumination_16538(ref IBaseAction action); +public static IBaseAction Create16539() +{ + IBaseAction action = new BaseAction(ActionID.ArtOfWar_PvE); + ModifyArtOfWar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16539"><strong>Art of War</strong></see> <i>PvE</i> (SCH) [16539] [Spell] +/// </summary> +static partial void ModifyArtOfWar_16539(ref IBaseAction action); +public static IBaseAction Create16540() +{ + IBaseAction action = new BaseAction(ActionID.Biolysis_PvE); + ModifyBiolysis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16540"><strong>Biolysis</strong></see> <i>PvE</i> (SCH) [16540] [Spell] +/// </summary> +static partial void ModifyBiolysis_16540(ref IBaseAction action); +public static IBaseAction Create16541() +{ + IBaseAction action = new BaseAction(ActionID.BroilIii_PvE); + ModifyBroilIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16541"><strong>Broil III</strong></see> <i>PvE</i> (SCH) [16541] [Spell] +/// </summary> +static partial void ModifyBroilIii_16541(ref IBaseAction action); +public static IBaseAction Create16542() +{ + IBaseAction action = new BaseAction(ActionID.Recitation_PvE); + ModifyRecitation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16542"><strong>Recitation</strong></see> <i>PvE</i> (SCH) [16542] [Ability] +/// </summary> +static partial void ModifyRecitation_16542(ref IBaseAction action); +public static IBaseAction Create16543() +{ + IBaseAction action = new BaseAction(ActionID.FeyBlessing_PvE); + ModifyFeyBlessing_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16543"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16543] [Ability] +/// </summary> +static partial void ModifyFeyBlessing_16543(ref IBaseAction action); +public static IBaseAction Create16544() +{ + IBaseAction action = new BaseAction(ActionID.FeyBlessing_PvE_16544); + ModifyFeyBlessing_PvE_16544(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16544"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16544] [Ability] +/// </summary> +static partial void ModifyFeyBlessing_16544(ref IBaseAction action); +public static IBaseAction Create16545() +{ + IBaseAction action = new BaseAction(ActionID.SummonSeraph_PvE); + ModifySummonSeraph_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16545"><strong>Summon Seraph</strong></see> <i>PvE</i> (SCH) [16545] [Ability] +/// </summary> +static partial void ModifySummonSeraph_16545(ref IBaseAction action); +public static IBaseAction Create16546() +{ + IBaseAction action = new BaseAction(ActionID.Consolation_PvE); + ModifyConsolation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16546"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16546] [Ability] +/// </summary> +static partial void ModifyConsolation_16546(ref IBaseAction action); +public static IBaseAction Create16547() +{ + IBaseAction action = new BaseAction(ActionID.Consolation_PvE_16547); + ModifyConsolation_PvE_16547(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16547"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16547] [Ability] +/// </summary> +static partial void ModifyConsolation_16547(ref IBaseAction action); +public static IBaseAction Create16548() +{ + IBaseAction action = new BaseAction(ActionID.SeraphicVeil_PvE); + ModifySeraphicVeil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16548"><strong>Seraphic Veil</strong></see> <i>PvE</i> (SCH) [16548] [Spell] +/// </summary> +static partial void ModifySeraphicVeil_16548(ref IBaseAction action); +public static IBaseAction Create16550() +{ + IBaseAction action = new BaseAction(ActionID.AngelsWhisper_PvE); + ModifyAngelsWhisper_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16550"><strong>Angel's Whisper</strong></see> <i>PvE</i> (SCH) [16550] [Ability] +/// </summary> +static partial void ModifyAngelsWhisper_16550(ref IBaseAction action); +public static IBaseAction Create16551() +{ + IBaseAction action = new BaseAction(ActionID.SeraphicIllumination_PvE); + ModifySeraphicIllumination_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16551"><strong>Seraphic Illumination</strong></see> <i>PvE</i> (SCH) [16551] [Ability] +/// </summary> +static partial void ModifySeraphicIllumination_16551(ref IBaseAction action); +public static IBaseAction Create16552() +{ + IBaseAction action = new BaseAction(ActionID.Divination_PvE); + ModifyDivination_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16552"><strong>Divination</strong></see> <i>PvE</i> (AST) [16552] [Ability] +/// </summary> +static partial void ModifyDivination_16552(ref IBaseAction action); +public static IBaseAction Create16553() +{ + IBaseAction action = new BaseAction(ActionID.CelestialOpposition_PvE); + ModifyCelestialOpposition_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16553"><strong>Celestial Opposition</strong></see> <i>PvE</i> (AST) [16553] [Ability] +/// </summary> +static partial void ModifyCelestialOpposition_16553(ref IBaseAction action); +public static IBaseAction Create16554() +{ + IBaseAction action = new BaseAction(ActionID.CombustIii_PvE); + ModifyCombustIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16554"><strong>Combust III</strong></see> <i>PvE</i> (AST) [16554] [Spell] +/// </summary> +static partial void ModifyCombustIii_16554(ref IBaseAction action); +public static IBaseAction Create16555() +{ + IBaseAction action = new BaseAction(ActionID.MaleficIv_PvE); + ModifyMaleficIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16555"><strong>Malefic IV</strong></see> <i>PvE</i> (AST) [16555] [Spell] +/// </summary> +static partial void ModifyMaleficIv_16555(ref IBaseAction action); +public static IBaseAction Create16556() +{ + IBaseAction action = new BaseAction(ActionID.CelestialIntersection_PvE); + ModifyCelestialIntersection_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16556"><strong>Celestial Intersection</strong></see> <i>PvE</i> (AST) [16556] [Ability] +/// </summary> +static partial void ModifyCelestialIntersection_16556(ref IBaseAction action); +public static IBaseAction Create16557() +{ + IBaseAction action = new BaseAction(ActionID.Horoscope_PvE); + ModifyHoroscope_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16557"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16557] [Ability] +/// </summary> +static partial void ModifyHoroscope_16557(ref IBaseAction action); +public static IBaseAction Create16558() +{ + IBaseAction action = new BaseAction(ActionID.Horoscope_PvE_16558); + ModifyHoroscope_PvE_16558(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16558"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16558] [Ability] +/// </summary> +static partial void ModifyHoroscope_16558(ref IBaseAction action); +public static IBaseAction Create16559() +{ + IBaseAction action = new BaseAction(ActionID.NeutralSect_PvE); + ModifyNeutralSect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16559"><strong>Neutral Sect</strong></see> <i>PvE</i> (AST) [16559] [Ability] +/// </summary> +static partial void ModifyNeutralSect_16559(ref IBaseAction action); +public static IBaseAction Create16560() +{ + IBaseAction action = new BaseAction(ActionID.Repose_PvE); + ModifyRepose_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16560"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell] +/// </summary> +static partial void ModifyRepose_16560(ref IBaseAction action); +public static IBaseAction Create16574() +{ + IBaseAction action = new BaseAction(ActionID.RonkanFireIii_PvE); + ModifyRonkanFireIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16574"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell] +/// </summary> +static partial void ModifyRonkanFireIii_16574(ref IBaseAction action); +public static IBaseAction Create16575() +{ + IBaseAction action = new BaseAction(ActionID.RonkanBlizzardIii_PvE); + ModifyRonkanBlizzardIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16575"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell] +/// </summary> +static partial void ModifyRonkanBlizzardIii_16575(ref IBaseAction action); +public static IBaseAction Create16576() +{ + IBaseAction action = new BaseAction(ActionID.RonkanThunderIii_PvE); + ModifyRonkanThunderIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16576"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell] +/// </summary> +static partial void ModifyRonkanThunderIii_16576(ref IBaseAction action); +public static IBaseAction Create16577() +{ + IBaseAction action = new BaseAction(ActionID.RonkanFlare_PvE); + ModifyRonkanFlare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16577"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell] +/// </summary> +static partial void ModifyRonkanFlare_16577(ref IBaseAction action); +public static IBaseAction Create16578() +{ + IBaseAction action = new BaseAction(ActionID.FallingStar_PvE); + ModifyFallingStar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16578"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break] +/// </summary> +static partial void ModifyFallingStar_16578(ref IBaseAction action); +public static IBaseAction Create16766() +{ + IBaseAction action = new BaseAction(ActionID.Detonator_PvE); + ModifyDetonator_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16766"><strong>Detonator</strong></see> <i>PvE</i> (MCH) [16766] [Ability] +/// </summary> +static partial void ModifyDetonator_16766(ref IBaseAction action); +public static IBaseAction Create16788() +{ + IBaseAction action = new BaseAction(ActionID.FastBlade_PvE_16788); + ModifyFastBlade_PvE_16788(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16788"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill] +/// </summary> +static partial void ModifyFastBlade_16788(ref IBaseAction action); +public static IBaseAction Create16789() +{ + IBaseAction action = new BaseAction(ActionID.Sunshadow_PvE); + ModifySunshadow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16789"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill] +/// </summary> +static partial void ModifySunshadow_16789(ref IBaseAction action); +public static IBaseAction Create16804() +{ + IBaseAction action = new BaseAction(ActionID.RoughDivide_PvE_16804); + ModifyRoughDivide_PvE_16804(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16804"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability] +/// </summary> +static partial void ModifyRoughDivide_16804(ref IBaseAction action); +public static IBaseAction Create16889() +{ + IBaseAction action = new BaseAction(ActionID.Tactician_PvE); + ModifyTactician_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16889"><strong>Tactician</strong></see> <i>PvE</i> (MCH) [16889] [Ability] +/// </summary> +static partial void ModifyTactician_16889(ref IBaseAction action); +public static IBaseAction Create16984() +{ + IBaseAction action = new BaseAction(ActionID.Swashbuckler_PvE); + ModifySwashbuckler_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16984"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill] +/// </summary> +static partial void ModifySwashbuckler_16984(ref IBaseAction action); +public static IBaseAction Create16985() +{ + IBaseAction action = new BaseAction(ActionID.GreatestEclipse_PvE); + ModifyGreatestEclipse_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/16985"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill] +/// </summary> +static partial void ModifyGreatestEclipse_16985(ref IBaseAction action); +public static IBaseAction Create17000() +{ + IBaseAction action = new BaseAction(ActionID.RonkanCureIi_PvE); + ModifyRonkanCureIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17000"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell] +/// </summary> +static partial void ModifyRonkanCureIi_17000(ref IBaseAction action); +public static IBaseAction Create17001() +{ + IBaseAction action = new BaseAction(ActionID.RonkanMedica_PvE); + ModifyRonkanMedica_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17001"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell] +/// </summary> +static partial void ModifyRonkanMedica_17001(ref IBaseAction action); +public static IBaseAction Create17002() +{ + IBaseAction action = new BaseAction(ActionID.RonkanEsuna_PvE); + ModifyRonkanEsuna_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17002"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell] +/// </summary> +static partial void ModifyRonkanEsuna_17002(ref IBaseAction action); +public static IBaseAction Create17003() +{ + IBaseAction action = new BaseAction(ActionID.RonkanStoneIi_PvE); + ModifyRonkanStoneIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17003"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell] +/// </summary> +static partial void ModifyRonkanStoneIi_17003(ref IBaseAction action); +public static IBaseAction Create17004() +{ + IBaseAction action = new BaseAction(ActionID.RonkanRenew_PvE); + ModifyRonkanRenew_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17004"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability] +/// </summary> +static partial void ModifyRonkanRenew_17004(ref IBaseAction action); +public static IBaseAction Create17055() +{ + IBaseAction action = new BaseAction(ActionID.Play_PvE); + ModifyPlay_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17055"><strong>Play</strong></see> <i>PvE</i> (AST) [17055] [Ability] +/// </summary> +static partial void ModifyPlay_17055(ref IBaseAction action); +public static IBaseAction Create17105() +{ + IBaseAction action = new BaseAction(ActionID.GunmetalSoul_PvE); + ModifyGunmetalSoul_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17105"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break] +/// </summary> +static partial void ModifyGunmetalSoul_17105(ref IBaseAction action); +public static IBaseAction Create17106() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonLotus_PvE); + ModifyCrimsonLotus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17106"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break] +/// </summary> +static partial void ModifyCrimsonLotus_17106(ref IBaseAction action); +public static IBaseAction Create17122() +{ + IBaseAction action = new BaseAction(ActionID.AcidicBite_PvE); + ModifyAcidicBite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17122"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill] +/// </summary> +static partial void ModifyAcidicBite_17122(ref IBaseAction action); +public static IBaseAction Create17123() +{ + IBaseAction action = new BaseAction(ActionID.HeavyShot_PvE_17123); + ModifyHeavyShot_PvE_17123(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17123"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill] +/// </summary> +static partial void ModifyHeavyShot_17123(ref IBaseAction action); +public static IBaseAction Create17124() +{ + IBaseAction action = new BaseAction(ActionID.RadiantArrow_PvE); + ModifyRadiantArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17124"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability] +/// </summary> +static partial void ModifyRadiantArrow_17124(ref IBaseAction action); +public static IBaseAction Create17125() +{ + IBaseAction action = new BaseAction(ActionID.DullingArrow_PvE); + ModifyDullingArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17125"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill] +/// </summary> +static partial void ModifyDullingArrow_17125(ref IBaseAction action); +public static IBaseAction Create17206() +{ + IBaseAction action = new BaseAction(ActionID.RollerDash_PvE); + ModifyRollerDash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17206"><strong>Roller Dash</strong></see> <i>PvE</i> (MCH) [17206] [Weaponskill] +/// </summary> +static partial void ModifyRollerDash_17206(ref IBaseAction action); +public static IBaseAction Create17209() +{ + IBaseAction action = new BaseAction(ActionID.Hypercharge_PvE); + ModifyHypercharge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17209"><strong>Hypercharge</strong></see> <i>PvE</i> (MCH) [17209] [Ability] +/// </summary> +static partial void ModifyHypercharge_17209(ref IBaseAction action); +public static IBaseAction Create17215() +{ + IBaseAction action = new BaseAction(ActionID.SummonEos_PvE); + ModifySummonEos_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17215"><strong>Summon Eos</strong></see> <i>PvE</i> (SCH) [17215] [Spell] +/// </summary> +static partial void ModifySummonEos_17215(ref IBaseAction action); +public static IBaseAction Create17236() +{ + IBaseAction action = new BaseAction(ActionID.ChivalrousSpirit_PvE); + ModifyChivalrousSpirit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17236"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell] +/// </summary> +static partial void ModifyChivalrousSpirit_17236(ref IBaseAction action); +public static IBaseAction Create17291() +{ + IBaseAction action = new BaseAction(ActionID.SouldeepInvisibility_PvE); + ModifySouldeepInvisibility_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17291"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability] +/// </summary> +static partial void ModifySouldeepInvisibility_17291(ref IBaseAction action); +public static IBaseAction Create17390() +{ + IBaseAction action = new BaseAction(ActionID.SortofDreadGaze_PvE); + ModifySortofDreadGaze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17390"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event] +/// </summary> +static partial void ModifySortofDreadGaze_17390(ref IBaseAction action); +public static IBaseAction Create17391() +{ + IBaseAction action = new BaseAction(ActionID.SortofDreadGaze_PvE_17391); + ModifySortofDreadGaze_PvE_17391(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17391"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount] +/// </summary> +static partial void ModifySortofDreadGaze_17391(ref IBaseAction action); +public static IBaseAction Create17413() +{ + IBaseAction action = new BaseAction(ActionID.SpinningEdge_PvE_17413); + ModifySpinningEdge_PvE_17413(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17413"><strong>Spinning Edge</strong></see> <i>PvE</i> (NIN) [17413] [Weaponskill] +/// </summary> +static partial void ModifySpinningEdge_17413(ref IBaseAction action); +public static IBaseAction Create17414() +{ + IBaseAction action = new BaseAction(ActionID.GustSlash_PvE_17414); + ModifyGustSlash_PvE_17414(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17414"><strong>Gust Slash</strong></see> <i>PvE</i> (NIN) [17414] [Weaponskill] +/// </summary> +static partial void ModifyGustSlash_17414(ref IBaseAction action); +public static IBaseAction Create17415() +{ + IBaseAction action = new BaseAction(ActionID.AeolianEdge_PvE_17415); + ModifyAeolianEdge_PvE_17415(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17415"><strong>Aeolian Edge</strong></see> <i>PvE</i> (NIN) [17415] [Weaponskill] +/// </summary> +static partial void ModifyAeolianEdge_17415(ref IBaseAction action); +public static IBaseAction Create17417() +{ + IBaseAction action = new BaseAction(ActionID.ArmorCrush_PvE_17417); + ModifyArmorCrush_PvE_17417(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17417"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [17417] [Weaponskill] +/// </summary> +static partial void ModifyArmorCrush_17417(ref IBaseAction action); +public static IBaseAction Create17418() +{ + IBaseAction action = new BaseAction(ActionID.ThrowingDagger_PvE_17418); + ModifyThrowingDagger_PvE_17418(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17418"><strong>Throwing Dagger</strong></see> <i>PvE</i> (NIN) [17418] [Weaponskill] +/// </summary> +static partial void ModifyThrowingDagger_17418(ref IBaseAction action); +public static IBaseAction Create17419() +{ + IBaseAction action = new BaseAction(ActionID.DeathBlossom_PvE_17419); + ModifyDeathBlossom_PvE_17419(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17419"><strong>Death Blossom</strong></see> <i>PvE</i> (NIN) [17419] [Weaponskill] +/// </summary> +static partial void ModifyDeathBlossom_17419(ref IBaseAction action); +public static IBaseAction Create17420() +{ + IBaseAction action = new BaseAction(ActionID.HakkeMujinsatsu_PvE_17420); + ModifyHakkeMujinsatsu_PvE_17420(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17420"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [17420] [Weaponskill] +/// </summary> +static partial void ModifyHakkeMujinsatsu_17420(ref IBaseAction action); +public static IBaseAction Create17596() +{ + IBaseAction action = new BaseAction(ActionID.HuntersPrudence_PvE); + ModifyHuntersPrudence_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17596"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability] +/// </summary> +static partial void ModifyHuntersPrudence_17596(ref IBaseAction action); +public static IBaseAction Create17839() +{ + IBaseAction action = new BaseAction(ActionID.Nebula_PvE_17839); + ModifyNebula_PvE_17839(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17839"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability] +/// </summary> +static partial void ModifyNebula_17839(ref IBaseAction action); +public static IBaseAction Create17864() +{ + IBaseAction action = new BaseAction(ActionID.Bio_PvE); + ModifyBio_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17864"><strong>Bio</strong></see> <i>PvE</i> (SCH) [17864] [Spell] +/// </summary> +static partial void ModifyBio_17864(ref IBaseAction action); +public static IBaseAction Create17865() +{ + IBaseAction action = new BaseAction(ActionID.BioIi_PvE); + ModifyBioIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17865"><strong>Bio II</strong></see> <i>PvE</i> (SCH) [17865] [Spell] +/// </summary> +static partial void ModifyBioIi_17865(ref IBaseAction action); +public static IBaseAction Create17869() +{ + IBaseAction action = new BaseAction(ActionID.Ruin_PvE_17869); + ModifyRuin_PvE_17869(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17869"><strong>Ruin</strong></see> <i>PvE</i> (SCH) [17869] [Spell] +/// </summary> +static partial void ModifyRuin_17869(ref IBaseAction action); +public static IBaseAction Create17870() +{ + IBaseAction action = new BaseAction(ActionID.RuinIi_PvE_17870); + ModifyRuinIi_PvE_17870(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17870"><strong>Ruin II</strong></see> <i>PvE</i> (SCH) [17870] [Spell] +/// </summary> +static partial void ModifyRuinIi_17870(ref IBaseAction action); +public static IBaseAction Create17901() +{ + IBaseAction action = new BaseAction(ActionID.Smackdown_PvE); + ModifySmackdown_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/17901"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability] +/// </summary> +static partial void ModifySmackdown_17901(ref IBaseAction action); +public static IBaseAction Create18073() +{ + IBaseAction action = new BaseAction(ActionID.Ending_PvE); + ModifyEnding_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18073"><strong>Ending</strong></see> <i>PvE</i> (DNC) [18073] [Ability] +/// </summary> +static partial void ModifyEnding_18073(ref IBaseAction action); +public static IBaseAction Create18187() +{ + IBaseAction action = new BaseAction(ActionID.SiphonSnout_PvE); + ModifySiphonSnout_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18187"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event] +/// </summary> +static partial void ModifySiphonSnout_18187(ref IBaseAction action); +public static IBaseAction Create18188() +{ + IBaseAction action = new BaseAction(ActionID.SiphonSnout_PvE_18188); + ModifySiphonSnout_PvE_18188(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18188"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount] +/// </summary> +static partial void ModifySiphonSnout_18188(ref IBaseAction action); +public static IBaseAction Create18295() +{ + IBaseAction action = new BaseAction(ActionID.AlpineDraft_PvE); + ModifyAlpineDraft_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18295"><strong>Alpine Draft</strong></see> <i>PvE</i> (BLU) [18295] [Spell] +/// </summary> +static partial void ModifyAlpineDraft_18295(ref IBaseAction action); +public static IBaseAction Create18296() +{ + IBaseAction action = new BaseAction(ActionID.ProteanWave_PvE); + ModifyProteanWave_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18296"><strong>Protean Wave</strong></see> <i>PvE</i> (BLU) [18296] [Spell] +/// </summary> +static partial void ModifyProteanWave_18296(ref IBaseAction action); +public static IBaseAction Create18297() +{ + IBaseAction action = new BaseAction(ActionID.Northerlies_PvE); + ModifyNortherlies_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18297"><strong>Northerlies</strong></see> <i>PvE</i> (BLU) [18297] [Spell] +/// </summary> +static partial void ModifyNortherlies_18297(ref IBaseAction action); +public static IBaseAction Create18298() +{ + IBaseAction action = new BaseAction(ActionID.Electrogenesis_PvE); + ModifyElectrogenesis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18298"><strong>Electrogenesis</strong></see> <i>PvE</i> (BLU) [18298] [Spell] +/// </summary> +static partial void ModifyElectrogenesis_18298(ref IBaseAction action); +public static IBaseAction Create18299() +{ + IBaseAction action = new BaseAction(ActionID.Kaltstrahl_PvE); + ModifyKaltstrahl_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18299"><strong>Kaltstrahl</strong></see> <i>PvE</i> (BLU) [18299] [Spell] +/// </summary> +static partial void ModifyKaltstrahl_18299(ref IBaseAction action); +public static IBaseAction Create18300() +{ + IBaseAction action = new BaseAction(ActionID.AbyssalTransfixion_PvE); + ModifyAbyssalTransfixion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18300"><strong>Abyssal Transfixion</strong></see> <i>PvE</i> (BLU) [18300] [Spell] +/// </summary> +static partial void ModifyAbyssalTransfixion_18300(ref IBaseAction action); +public static IBaseAction Create18301() +{ + IBaseAction action = new BaseAction(ActionID.Chirp_PvE); + ModifyChirp_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18301"><strong>Chirp</strong></see> <i>PvE</i> (BLU) [18301] [Spell] +/// </summary> +static partial void ModifyChirp_18301(ref IBaseAction action); +public static IBaseAction Create18302() +{ + IBaseAction action = new BaseAction(ActionID.EerieSoundwave_PvE); + ModifyEerieSoundwave_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18302"><strong>Eerie Soundwave</strong></see> <i>PvE</i> (BLU) [18302] [Spell] +/// </summary> +static partial void ModifyEerieSoundwave_18302(ref IBaseAction action); +public static IBaseAction Create18303() +{ + IBaseAction action = new BaseAction(ActionID.PomCure_PvE); + ModifyPomCure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18303"><strong>Pom Cure</strong></see> <i>PvE</i> (BLU) [18303] [Spell] +/// </summary> +static partial void ModifyPomCure_18303(ref IBaseAction action); +public static IBaseAction Create18304() +{ + IBaseAction action = new BaseAction(ActionID.Gobskin_PvE); + ModifyGobskin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18304"><strong>Gobskin</strong></see> <i>PvE</i> (BLU) [18304] [Spell] +/// </summary> +static partial void ModifyGobskin_18304(ref IBaseAction action); +public static IBaseAction Create18305() +{ + IBaseAction action = new BaseAction(ActionID.MagicHammer_PvE); + ModifyMagicHammer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18305"><strong>Magic Hammer</strong></see> <i>PvE</i> (BLU) [18305] [Spell] +/// </summary> +static partial void ModifyMagicHammer_18305(ref IBaseAction action); +public static IBaseAction Create18306() +{ + IBaseAction action = new BaseAction(ActionID.Avail_PvE); + ModifyAvail_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18306"><strong>Avail</strong></see> <i>PvE</i> (BLU) [18306] [Spell] +/// </summary> +static partial void ModifyAvail_18306(ref IBaseAction action); +public static IBaseAction Create18307() +{ + IBaseAction action = new BaseAction(ActionID.FrogLegs_PvE); + ModifyFrogLegs_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18307"><strong>Frog Legs</strong></see> <i>PvE</i> (BLU) [18307] [Spell] +/// </summary> +static partial void ModifyFrogLegs_18307(ref IBaseAction action); +public static IBaseAction Create18308() +{ + IBaseAction action = new BaseAction(ActionID.SonicBoom_PvE); + ModifySonicBoom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18308"><strong>Sonic Boom</strong></see> <i>PvE</i> (BLU) [18308] [Spell] +/// </summary> +static partial void ModifySonicBoom_18308(ref IBaseAction action); +public static IBaseAction Create18309() +{ + IBaseAction action = new BaseAction(ActionID.Whistle_PvE); + ModifyWhistle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18309"><strong>Whistle</strong></see> <i>PvE</i> (BLU) [18309] [Spell] +/// </summary> +static partial void ModifyWhistle_18309(ref IBaseAction action); +public static IBaseAction Create18310() +{ + IBaseAction action = new BaseAction(ActionID.WhiteKnightsTour_PvE); + ModifyWhiteKnightsTour_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18310"><strong>White Knight's Tour</strong></see> <i>PvE</i> (BLU) [18310] [Spell] +/// </summary> +static partial void ModifyWhiteKnightsTour_18310(ref IBaseAction action); +public static IBaseAction Create18311() +{ + IBaseAction action = new BaseAction(ActionID.BlackKnightsTour_PvE); + ModifyBlackKnightsTour_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18311"><strong>Black Knight's Tour</strong></see> <i>PvE</i> (BLU) [18311] [Spell] +/// </summary> +static partial void ModifyBlackKnightsTour_18311(ref IBaseAction action); +public static IBaseAction Create18312() +{ + IBaseAction action = new BaseAction(ActionID.Level5Death_PvE); + ModifyLevel5Death_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18312"><strong>Level 5 Death</strong></see> <i>PvE</i> (BLU) [18312] [Spell] +/// </summary> +static partial void ModifyLevel5Death_18312(ref IBaseAction action); +public static IBaseAction Create18313() +{ + IBaseAction action = new BaseAction(ActionID.Launcher_PvE); + ModifyLauncher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18313"><strong>Launcher</strong></see> <i>PvE</i> (BLU) [18313] [Spell] +/// </summary> +static partial void ModifyLauncher_18313(ref IBaseAction action); +public static IBaseAction Create18314() +{ + IBaseAction action = new BaseAction(ActionID.PerpetualRay_PvE); + ModifyPerpetualRay_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18314"><strong>Perpetual Ray</strong></see> <i>PvE</i> (BLU) [18314] [Spell] +/// </summary> +static partial void ModifyPerpetualRay_18314(ref IBaseAction action); +public static IBaseAction Create18315() +{ + IBaseAction action = new BaseAction(ActionID.Cactguard_PvE); + ModifyCactguard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18315"><strong>Cactguard</strong></see> <i>PvE</i> (BLU) [18315] [Spell] +/// </summary> +static partial void ModifyCactguard_18315(ref IBaseAction action); +public static IBaseAction Create18316() +{ + IBaseAction action = new BaseAction(ActionID.RevengeBlast_PvE); + ModifyRevengeBlast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18316"><strong>Revenge Blast</strong></see> <i>PvE</i> (BLU) [18316] [Spell] +/// </summary> +static partial void ModifyRevengeBlast_18316(ref IBaseAction action); +public static IBaseAction Create18317() +{ + IBaseAction action = new BaseAction(ActionID.AngelWhisper_PvE); + ModifyAngelWhisper_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18317"><strong>Angel Whisper</strong></see> <i>PvE</i> (BLU) [18317] [Spell] +/// </summary> +static partial void ModifyAngelWhisper_18317(ref IBaseAction action); +public static IBaseAction Create18318() +{ + IBaseAction action = new BaseAction(ActionID.Exuviation_PvE); + ModifyExuviation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18318"><strong>Exuviation</strong></see> <i>PvE</i> (BLU) [18318] [Spell] +/// </summary> +static partial void ModifyExuviation_18318(ref IBaseAction action); +public static IBaseAction Create18319() +{ + IBaseAction action = new BaseAction(ActionID.Reflux_PvE); + ModifyReflux_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18319"><strong>Reflux</strong></see> <i>PvE</i> (BLU) [18319] [Spell] +/// </summary> +static partial void ModifyReflux_18319(ref IBaseAction action); +public static IBaseAction Create18320() +{ + IBaseAction action = new BaseAction(ActionID.Devour_PvE); + ModifyDevour_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18320"><strong>Devour</strong></see> <i>PvE</i> (BLU) [18320] [Spell] +/// </summary> +static partial void ModifyDevour_18320(ref IBaseAction action); +public static IBaseAction Create18321() +{ + IBaseAction action = new BaseAction(ActionID.CondensedLibra_PvE); + ModifyCondensedLibra_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18321"><strong>Condensed Libra</strong></see> <i>PvE</i> (BLU) [18321] [Spell] +/// </summary> +static partial void ModifyCondensedLibra_18321(ref IBaseAction action); +public static IBaseAction Create18322() +{ + IBaseAction action = new BaseAction(ActionID.AethericMimicry_PvE); + ModifyAethericMimicry_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18322"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [18322] [Spell] +/// </summary> +static partial void ModifyAethericMimicry_18322(ref IBaseAction action); +public static IBaseAction Create18323() +{ + IBaseAction action = new BaseAction(ActionID.Surpanakha_PvE); + ModifySurpanakha_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18323"><strong>Surpanakha</strong></see> <i>PvE</i> (BLU) [18323] [Ability] +/// </summary> +static partial void ModifySurpanakha_18323(ref IBaseAction action); +public static IBaseAction Create18324() +{ + IBaseAction action = new BaseAction(ActionID.Quasar_PvE); + ModifyQuasar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18324"><strong>Quasar</strong></see> <i>PvE</i> (BLU) [18324] [Ability] +/// </summary> +static partial void ModifyQuasar_18324(ref IBaseAction action); +public static IBaseAction Create18325() +{ + IBaseAction action = new BaseAction(ActionID.JKick_PvE); + ModifyJKick_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18325"><strong>J Kick</strong></see> <i>PvE</i> (BLU) [18325] [Ability] +/// </summary> +static partial void ModifyJKick_18325(ref IBaseAction action); +public static IBaseAction Create18772() +{ + IBaseAction action = new BaseAction(ActionID.DoomSpike_PvE_18772); + ModifyDoomSpike_PvE_18772(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18772"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill] +/// </summary> +static partial void ModifyDoomSpike_18772(ref IBaseAction action); +public static IBaseAction Create18773() +{ + IBaseAction action = new BaseAction(ActionID.SonicThrust_PvE_18773); + ModifySonicThrust_PvE_18773(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18773"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill] +/// </summary> +static partial void ModifySonicThrust_18773(ref IBaseAction action); +public static IBaseAction Create18774() +{ + IBaseAction action = new BaseAction(ActionID.CoerthanTorment_PvE_18774); + ModifyCoerthanTorment_PvE_18774(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18774"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill] +/// </summary> +static partial void ModifyCoerthanTorment_18774(ref IBaseAction action); +public static IBaseAction Create18775() +{ + IBaseAction action = new BaseAction(ActionID.SkydragonDive_PvE); + ModifySkydragonDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18775"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability] +/// </summary> +static partial void ModifySkydragonDive_18775(ref IBaseAction action); +public static IBaseAction Create18776() +{ + IBaseAction action = new BaseAction(ActionID.AlaMorn_PvE); + ModifyAlaMorn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18776"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill] +/// </summary> +static partial void ModifyAlaMorn_18776(ref IBaseAction action); +public static IBaseAction Create18777() +{ + IBaseAction action = new BaseAction(ActionID.Drachenlance_PvE); + ModifyDrachenlance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18777"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill] +/// </summary> +static partial void ModifyDrachenlance_18777(ref IBaseAction action); +public static IBaseAction Create18778() +{ + IBaseAction action = new BaseAction(ActionID.HorridRoar_PvE); + ModifyHorridRoar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18778"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill] +/// </summary> +static partial void ModifyHorridRoar_18778(ref IBaseAction action); +public static IBaseAction Create18780() +{ + IBaseAction action = new BaseAction(ActionID.Stardiver_PvE_18780); + ModifyStardiver_PvE_18780(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18780"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability] +/// </summary> +static partial void ModifyStardiver_18780(ref IBaseAction action); +public static IBaseAction Create18781() +{ + IBaseAction action = new BaseAction(ActionID.DragonshadowDive_PvE); + ModifyDragonshadowDive_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18781"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break] +/// </summary> +static partial void ModifyDragonshadowDive_18781(ref IBaseAction action); +public static IBaseAction Create18782() +{ + IBaseAction action = new BaseAction(ActionID.DragonshadowDive_PvE_18782); + ModifyDragonshadowDive_PvE_18782(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18782"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break] +/// </summary> +static partial void ModifyDragonshadowDive_18782(ref IBaseAction action); +public static IBaseAction Create18805() +{ + IBaseAction action = new BaseAction(ActionID.Ten_PvE_18805); + ModifyTen_PvE_18805(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18805"><strong>Ten</strong></see> <i>PvE</i> (NIN) [18805] [Ability] +/// </summary> +static partial void ModifyTen_18805(ref IBaseAction action); +public static IBaseAction Create18806() +{ + IBaseAction action = new BaseAction(ActionID.Chi_PvE_18806); + ModifyChi_PvE_18806(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18806"><strong>Chi</strong></see> <i>PvE</i> (NIN) [18806] [Ability] +/// </summary> +static partial void ModifyChi_18806(ref IBaseAction action); +public static IBaseAction Create18807() +{ + IBaseAction action = new BaseAction(ActionID.Jin_PvE_18807); + ModifyJin_PvE_18807(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18807"><strong>Jin</strong></see> <i>PvE</i> (NIN) [18807] [Ability] +/// </summary> +static partial void ModifyJin_18807(ref IBaseAction action); +public static IBaseAction Create18813() +{ + IBaseAction action = new BaseAction(ActionID.SolicitSiphonSnout_PvE); + ModifySolicitSiphonSnout_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18813"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability] +/// </summary> +static partial void ModifySolicitSiphonSnout_18813(ref IBaseAction action); +public static IBaseAction Create18863() +{ + IBaseAction action = new BaseAction(ActionID.Deflect_PvE_18863); + ModifyDeflect_PvE_18863(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18863"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability] +/// </summary> +static partial void ModifyDeflect_18863(ref IBaseAction action); +public static IBaseAction Create18873() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvE_18873); + ModifyFumaShuriken_PvE_18873(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18873"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18873] [Ability] +/// </summary> +static partial void ModifyFumaShuriken_18873(ref IBaseAction action); +public static IBaseAction Create18874() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvE_18874); + ModifyFumaShuriken_PvE_18874(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18874"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18874] [Ability] +/// </summary> +static partial void ModifyFumaShuriken_18874(ref IBaseAction action); +public static IBaseAction Create18875() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvE_18875); + ModifyFumaShuriken_PvE_18875(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18875"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18875] [Ability] +/// </summary> +static partial void ModifyFumaShuriken_18875(ref IBaseAction action); +public static IBaseAction Create18876() +{ + IBaseAction action = new BaseAction(ActionID.Katon_PvE_18876); + ModifyKaton_PvE_18876(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18876"><strong>Katon</strong></see> <i>PvE</i> (NIN) [18876] [Ability] +/// </summary> +static partial void ModifyKaton_18876(ref IBaseAction action); +public static IBaseAction Create18877() +{ + IBaseAction action = new BaseAction(ActionID.Raiton_PvE_18877); + ModifyRaiton_PvE_18877(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18877"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [18877] [Ability] +/// </summary> +static partial void ModifyRaiton_18877(ref IBaseAction action); +public static IBaseAction Create18878() +{ + IBaseAction action = new BaseAction(ActionID.Hyoton_PvE_18878); + ModifyHyoton_PvE_18878(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18878"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [18878] [Ability] +/// </summary> +static partial void ModifyHyoton_18878(ref IBaseAction action); +public static IBaseAction Create18879() +{ + IBaseAction action = new BaseAction(ActionID.Huton_PvE_18879); + ModifyHuton_PvE_18879(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18879"><strong>Huton</strong></see> <i>PvE</i> (NIN) [18879] [Ability] +/// </summary> +static partial void ModifyHuton_18879(ref IBaseAction action); +public static IBaseAction Create18880() +{ + IBaseAction action = new BaseAction(ActionID.Doton_PvE_18880); + ModifyDoton_PvE_18880(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18880"><strong>Doton</strong></see> <i>PvE</i> (NIN) [18880] [Ability] +/// </summary> +static partial void ModifyDoton_18880(ref IBaseAction action); +public static IBaseAction Create18881() +{ + IBaseAction action = new BaseAction(ActionID.Suiton_PvE_18881); + ModifySuiton_PvE_18881(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18881"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [18881] [Ability] +/// </summary> +static partial void ModifySuiton_18881(ref IBaseAction action); +public static IBaseAction Create18923() +{ + IBaseAction action = new BaseAction(ActionID.ThrowingDagger_PvP); + ModifyThrowingDagger_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18923"><strong>Throwing Dagger</strong></see> <i>PvP</i> (NIN) [18923] [Weaponskill] +/// </summary> +static partial void ModifyThrowingDagger_18923(ref IBaseAction action); +public static IBaseAction Create18924() +{ + IBaseAction action = new BaseAction(ActionID.DeathBlossom_PvP); + ModifyDeathBlossom_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18924"><strong>Death Blossom</strong></see> <i>PvP</i> (NIN) [18924] [Weaponskill] +/// </summary> +static partial void ModifyDeathBlossom_18924(ref IBaseAction action); +public static IBaseAction Create18925() +{ + IBaseAction action = new BaseAction(ActionID.HakkeMujinsatsu_PvP); + ModifyHakkeMujinsatsu_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/18925"><strong>Hakke Mujinsatsu</strong></see> <i>PvP</i> (NIN) [18925] [Weaponskill] +/// </summary> +static partial void ModifyHakkeMujinsatsu_18925(ref IBaseAction action); +public static IBaseAction Create19002() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_19002); + ModifyWasteNotIi_PvE_19002(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19002"><strong>Waste Not II</strong></see> <i>PvE</i> (ALC) [19002] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_19002(ref IBaseAction action); +public static IBaseAction Create19003() +{ + IBaseAction action = new BaseAction(ActionID.WasteNotIi_PvE_19003); + ModifyWasteNotIi_PvE_19003(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19003"><strong>Waste Not II</strong></see> <i>PvE</i> (CUL) [19003] [DoH Ability] +/// </summary> +static partial void ModifyWasteNotIi_19003(ref IBaseAction action); +public static IBaseAction Create19004() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE); + ModifyInnovation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19004"><strong>Innovation</strong></see> <i>PvE</i> (CRP) [19004] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19004(ref IBaseAction action); +public static IBaseAction Create19005() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19005); + ModifyInnovation_PvE_19005(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19005"><strong>Innovation</strong></see> <i>PvE</i> (BSM) [19005] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19005(ref IBaseAction action); +public static IBaseAction Create19006() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19006); + ModifyInnovation_PvE_19006(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19006"><strong>Innovation</strong></see> <i>PvE</i> (ARM) [19006] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19006(ref IBaseAction action); +public static IBaseAction Create19007() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19007); + ModifyInnovation_PvE_19007(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19007"><strong>Innovation</strong></see> <i>PvE</i> (GSM) [19007] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19007(ref IBaseAction action); +public static IBaseAction Create19008() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19008); + ModifyInnovation_PvE_19008(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19008"><strong>Innovation</strong></see> <i>PvE</i> (LTW) [19008] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19008(ref IBaseAction action); +public static IBaseAction Create19009() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19009); + ModifyInnovation_PvE_19009(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19009"><strong>Innovation</strong></see> <i>PvE</i> (WVR) [19009] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19009(ref IBaseAction action); +public static IBaseAction Create19010() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19010); + ModifyInnovation_PvE_19010(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19010"><strong>Innovation</strong></see> <i>PvE</i> (ALC) [19010] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19010(ref IBaseAction action); +public static IBaseAction Create19011() +{ + IBaseAction action = new BaseAction(ActionID.Innovation_PvE_19011); + ModifyInnovation_PvE_19011(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19011"><strong>Innovation</strong></see> <i>PvE</i> (CUL) [19011] [DoH Ability] +/// </summary> +static partial void ModifyInnovation_19011(ref IBaseAction action); +public static IBaseAction Create19012() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE); + ModifyFinalAppraisal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19012"><strong>Final Appraisal</strong></see> <i>PvE</i> (CRP) [19012] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19012(ref IBaseAction action); +public static IBaseAction Create19013() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19013); + ModifyFinalAppraisal_PvE_19013(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19013"><strong>Final Appraisal</strong></see> <i>PvE</i> (BSM) [19013] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19013(ref IBaseAction action); +public static IBaseAction Create19014() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19014); + ModifyFinalAppraisal_PvE_19014(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19014"><strong>Final Appraisal</strong></see> <i>PvE</i> (ARM) [19014] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19014(ref IBaseAction action); +public static IBaseAction Create19015() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19015); + ModifyFinalAppraisal_PvE_19015(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19015"><strong>Final Appraisal</strong></see> <i>PvE</i> (GSM) [19015] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19015(ref IBaseAction action); +public static IBaseAction Create19016() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19016); + ModifyFinalAppraisal_PvE_19016(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19016"><strong>Final Appraisal</strong></see> <i>PvE</i> (LTW) [19016] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19016(ref IBaseAction action); +public static IBaseAction Create19017() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19017); + ModifyFinalAppraisal_PvE_19017(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19017"><strong>Final Appraisal</strong></see> <i>PvE</i> (WVR) [19017] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19017(ref IBaseAction action); +public static IBaseAction Create19018() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19018); + ModifyFinalAppraisal_PvE_19018(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19018"><strong>Final Appraisal</strong></see> <i>PvE</i> (ALC) [19018] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19018(ref IBaseAction action); +public static IBaseAction Create19019() +{ + IBaseAction action = new BaseAction(ActionID.FinalAppraisal_PvE_19019); + ModifyFinalAppraisal_PvE_19019(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19019"><strong>Final Appraisal</strong></see> <i>PvE</i> (CUL) [19019] [DoH Ability] +/// </summary> +static partial void ModifyFinalAppraisal_19019(ref IBaseAction action); +public static IBaseAction Create19046() +{ + IBaseAction action = new BaseAction(ActionID.Gofu_PvE); + ModifyGofu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19046"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill] +/// </summary> +static partial void ModifyGofu_19046(ref IBaseAction action); +public static IBaseAction Create19047() +{ + IBaseAction action = new BaseAction(ActionID.Yagetsu_PvE); + ModifyYagetsu_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19047"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill] +/// </summary> +static partial void ModifyYagetsu_19047(ref IBaseAction action); +public static IBaseAction Create19218() +{ + IBaseAction action = new BaseAction(ActionID.AquaVitae_PvE); + ModifyAquaVitae_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19218"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability] +/// </summary> +static partial void ModifyAquaVitae_19218(ref IBaseAction action); +public static IBaseAction Create19238() +{ + IBaseAction action = new BaseAction(ActionID.AethericMimicry_PvE_19238); + ModifyAethericMimicry_PvE_19238(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19238"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19238] [Spell] +/// </summary> +static partial void ModifyAethericMimicry_19238(ref IBaseAction action); +public static IBaseAction Create19239() +{ + IBaseAction action = new BaseAction(ActionID.AethericMimicry_PvE_19239); + ModifyAethericMimicry_PvE_19239(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19239"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19239] [Spell] +/// </summary> +static partial void ModifyAethericMimicry_19239(ref IBaseAction action); +public static IBaseAction Create19240() +{ + IBaseAction action = new BaseAction(ActionID.AethericMimicry_PvE_19240); + ModifyAethericMimicry_PvE_19240(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19240"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19240] [Spell] +/// </summary> +static partial void ModifyAethericMimicry_19240(ref IBaseAction action); +public static IBaseAction Create19264() +{ + IBaseAction action = new BaseAction(ActionID.ReleaseList_PvE); + ModifyReleaseList_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19264"><strong>Release List</strong></see> <i>PvE</i> (FSH) [19264] [DoL Ability] +/// </summary> +static partial void ModifyReleaseList_19264(ref IBaseAction action); +public static IBaseAction Create19275() +{ + IBaseAction action = new BaseAction(ActionID.CouldbeworseBreath_PvE); + ModifyCouldbeworseBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19275"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount] +/// </summary> +static partial void ModifyCouldbeworseBreath_19275(ref IBaseAction action); +public static IBaseAction Create19297() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE); + ModifyVeneration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19297"><strong>Veneration</strong></see> <i>PvE</i> (CRP) [19297] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19297(ref IBaseAction action); +public static IBaseAction Create19298() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19298); + ModifyVeneration_PvE_19298(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19298"><strong>Veneration</strong></see> <i>PvE</i> (BSM) [19298] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19298(ref IBaseAction action); +public static IBaseAction Create19299() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19299); + ModifyVeneration_PvE_19299(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19299"><strong>Veneration</strong></see> <i>PvE</i> (ARM) [19299] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19299(ref IBaseAction action); +public static IBaseAction Create19300() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19300); + ModifyVeneration_PvE_19300(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19300"><strong>Veneration</strong></see> <i>PvE</i> (GSM) [19300] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19300(ref IBaseAction action); +public static IBaseAction Create19301() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19301); + ModifyVeneration_PvE_19301(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19301"><strong>Veneration</strong></see> <i>PvE</i> (LTW) [19301] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19301(ref IBaseAction action); +public static IBaseAction Create19302() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19302); + ModifyVeneration_PvE_19302(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19302"><strong>Veneration</strong></see> <i>PvE</i> (WVR) [19302] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19302(ref IBaseAction action); +public static IBaseAction Create19303() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19303); + ModifyVeneration_PvE_19303(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19303"><strong>Veneration</strong></see> <i>PvE</i> (ALC) [19303] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19303(ref IBaseAction action); +public static IBaseAction Create19304() +{ + IBaseAction action = new BaseAction(ActionID.Veneration_PvE_19304); + ModifyVeneration_PvE_19304(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19304"><strong>Veneration</strong></see> <i>PvE</i> (CUL) [19304] [DoH Ability] +/// </summary> +static partial void ModifyVeneration_19304(ref IBaseAction action); +public static IBaseAction Create19700() +{ + IBaseAction action = new BaseAction(ActionID.AetheromaticAuger_PvE); + ModifyAetheromaticAuger_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19700"><strong>Aetheromatic Auger</strong></see> <i>PvE</i> (MIN, BTN) [19700] [Weaponskill] +/// </summary> +static partial void ModifyAetheromaticAuger_19700(ref IBaseAction action); +public static IBaseAction Create19731() +{ + IBaseAction action = new BaseAction(ActionID.RemoveCostume_PvE); + ModifyRemoveCostume_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19731"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special] +/// </summary> +static partial void ModifyRemoveCostume_19731(ref IBaseAction action); +public static IBaseAction Create19994() +{ + IBaseAction action = new BaseAction(ActionID.StandFirm_PvE); + ModifyStandFirm_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19994"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability] +/// </summary> +static partial void ModifyStandFirm_19994(ref IBaseAction action); +public static IBaseAction Create19997() +{ + IBaseAction action = new BaseAction(ActionID.Seize_PvE); + ModifySeize_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19997"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special] +/// </summary> +static partial void ModifySeize_19997(ref IBaseAction action); +public static IBaseAction Create19998() +{ + IBaseAction action = new BaseAction(ActionID.Birdlime_PvE); + ModifyBirdlime_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/19998"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special] +/// </summary> +static partial void ModifyBirdlime_19998(ref IBaseAction action); +public static IBaseAction Create20030() +{ + IBaseAction action = new BaseAction(ActionID.PeculiarLight_PvE_20030); + ModifyPeculiarLight_PvE_20030(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20030"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event] +/// </summary> +static partial void ModifyPeculiarLight_20030(ref IBaseAction action); +public static IBaseAction Create20031() +{ + IBaseAction action = new BaseAction(ActionID.PeculiarLight_PvE_20031); + ModifyPeculiarLight_PvE_20031(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20031"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount] +/// </summary> +static partial void ModifyPeculiarLight_20031(ref IBaseAction action); +public static IBaseAction Create20061() +{ + IBaseAction action = new BaseAction(ActionID.Accessorize_PvE); + ModifyAccessorize_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20061"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item] +/// </summary> +static partial void ModifyAccessorize_20061(ref IBaseAction action); +public static IBaseAction Create20064() +{ + IBaseAction action = new BaseAction(ActionID.DazzlingDisplay_PvE); + ModifyDazzlingDisplay_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20064"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount] +/// </summary> +static partial void ModifyDazzlingDisplay_20064(ref IBaseAction action); +public static IBaseAction Create20121() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE_20121); + ModifyCannonfire_PvE_20121(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20121"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event] +/// </summary> +static partial void ModifyCannonfire_20121(ref IBaseAction action); +public static IBaseAction Create20122() +{ + IBaseAction action = new BaseAction(ActionID.Cannonfire_PvE_20122); + ModifyCannonfire_PvE_20122(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20122"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount] +/// </summary> +static partial void ModifyCannonfire_20122(ref IBaseAction action); +public static IBaseAction Create20304() +{ + IBaseAction action = new BaseAction(ActionID.BlackPaint_PvE_20304); + ModifyBlackPaint_PvE_20304(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20304"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability] +/// </summary> +static partial void ModifyBlackPaint_20304(ref IBaseAction action); +public static IBaseAction Create20489() +{ + IBaseAction action = new BaseAction(ActionID.AetherCannon_PvE); + ModifyAetherCannon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20489"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill] +/// </summary> +static partial void ModifyAetherCannon_20489(ref IBaseAction action); +public static IBaseAction Create20490() +{ + IBaseAction action = new BaseAction(ActionID.Aethersaber_PvE); + ModifyAethersaber_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20490"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill] +/// </summary> +static partial void ModifyAethersaber_20490(ref IBaseAction action); +public static IBaseAction Create20491() +{ + IBaseAction action = new BaseAction(ActionID.Aethercut_PvE); + ModifyAethercut_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20491"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill] +/// </summary> +static partial void ModifyAethercut_20491(ref IBaseAction action); +public static IBaseAction Create20492() +{ + IBaseAction action = new BaseAction(ActionID.FinalFlourish_PvE); + ModifyFinalFlourish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20492"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill] +/// </summary> +static partial void ModifyFinalFlourish_20492(ref IBaseAction action); +public static IBaseAction Create20493() +{ + IBaseAction action = new BaseAction(ActionID.UltimaBuster_PvE); + ModifyUltimaBuster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20493"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill] +/// </summary> +static partial void ModifyUltimaBuster_20493(ref IBaseAction action); +public static IBaseAction Create20494() +{ + IBaseAction action = new BaseAction(ActionID.PyreticBooster_PvE); + ModifyPyreticBooster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20494"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability] +/// </summary> +static partial void ModifyPyreticBooster_20494(ref IBaseAction action); +public static IBaseAction Create20495() +{ + IBaseAction action = new BaseAction(ActionID.AetherialAegis_PvE); + ModifyAetherialAegis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20495"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability] +/// </summary> +static partial void ModifyAetherialAegis_20495(ref IBaseAction action); +public static IBaseAction Create20496() +{ + IBaseAction action = new BaseAction(ActionID.AetherMine_PvE); + ModifyAetherMine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20496"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill] +/// </summary> +static partial void ModifyAetherMine_20496(ref IBaseAction action); +public static IBaseAction Create20529() +{ + IBaseAction action = new BaseAction(ActionID.Verfire_PvE_20529); + ModifyVerfire_PvE_20529(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20529"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell] +/// </summary> +static partial void ModifyVerfire_20529(ref IBaseAction action); +public static IBaseAction Create20530() +{ + IBaseAction action = new BaseAction(ActionID.Veraero_PvE_20530); + ModifyVeraero_PvE_20530(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20530"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell] +/// </summary> +static partial void ModifyVeraero_20530(ref IBaseAction action); +public static IBaseAction Create20531() +{ + IBaseAction action = new BaseAction(ActionID.Verstone_PvE_20531); + ModifyVerstone_PvE_20531(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20531"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell] +/// </summary> +static partial void ModifyVerstone_20531(ref IBaseAction action); +public static IBaseAction Create20532() +{ + IBaseAction action = new BaseAction(ActionID.Verflare_PvE_20532); + ModifyVerflare_PvE_20532(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20532"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell] +/// </summary> +static partial void ModifyVerflare_20532(ref IBaseAction action); +public static IBaseAction Create20533() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonSavior_PvE); + ModifyCrimsonSavior_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20533"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill] +/// </summary> +static partial void ModifyCrimsonSavior_20533(ref IBaseAction action); +public static IBaseAction Create20692() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE); + ModifyDynamisDice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20692"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item] +/// </summary> +static partial void ModifyDynamisDice_20692(ref IBaseAction action); +public static IBaseAction Create20693() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20693); + ModifyDynamisDice_PvE_20693(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20693"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item] +/// </summary> +static partial void ModifyDynamisDice_20693(ref IBaseAction action); +public static IBaseAction Create20694() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20694); + ModifyDynamisDice_PvE_20694(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20694"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item] +/// </summary> +static partial void ModifyDynamisDice_20694(ref IBaseAction action); +public static IBaseAction Create20695() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20695); + ModifyDynamisDice_PvE_20695(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20695"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item] +/// </summary> +static partial void ModifyDynamisDice_20695(ref IBaseAction action); +public static IBaseAction Create20696() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20696); + ModifyDynamisDice_PvE_20696(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20696"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item] +/// </summary> +static partial void ModifyDynamisDice_20696(ref IBaseAction action); +public static IBaseAction Create20697() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20697); + ModifyDynamisDice_PvE_20697(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20697"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item] +/// </summary> +static partial void ModifyDynamisDice_20697(ref IBaseAction action); +public static IBaseAction Create20698() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20698); + ModifyDynamisDice_PvE_20698(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20698"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item] +/// </summary> +static partial void ModifyDynamisDice_20698(ref IBaseAction action); +public static IBaseAction Create20699() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20699); + ModifyDynamisDice_PvE_20699(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20699"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item] +/// </summary> +static partial void ModifyDynamisDice_20699(ref IBaseAction action); +public static IBaseAction Create20700() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20700); + ModifyDynamisDice_PvE_20700(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20700"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item] +/// </summary> +static partial void ModifyDynamisDice_20700(ref IBaseAction action); +public static IBaseAction Create20701() +{ + IBaseAction action = new BaseAction(ActionID.LostParalyzeIii_PvE); + ModifyLostParalyzeIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20701"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell] +/// </summary> +static partial void ModifyLostParalyzeIii_20701(ref IBaseAction action); +public static IBaseAction Create20702() +{ + IBaseAction action = new BaseAction(ActionID.LostBanishIii_PvE); + ModifyLostBanishIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20702"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell] +/// </summary> +static partial void ModifyLostBanishIii_20702(ref IBaseAction action); +public static IBaseAction Create20703() +{ + IBaseAction action = new BaseAction(ActionID.LostManawall_PvE); + ModifyLostManawall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20703"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability] +/// </summary> +static partial void ModifyLostManawall_20703(ref IBaseAction action); +public static IBaseAction Create20704() +{ + IBaseAction action = new BaseAction(ActionID.LostDispel_PvE); + ModifyLostDispel_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20704"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell] +/// </summary> +static partial void ModifyLostDispel_20704(ref IBaseAction action); +public static IBaseAction Create20705() +{ + IBaseAction action = new BaseAction(ActionID.LostStealth_PvE); + ModifyLostStealth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20705"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability] +/// </summary> +static partial void ModifyLostStealth_20705(ref IBaseAction action); +public static IBaseAction Create20706() +{ + IBaseAction action = new BaseAction(ActionID.LostSpellforge_PvE); + ModifyLostSpellforge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20706"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell] +/// </summary> +static partial void ModifyLostSpellforge_20706(ref IBaseAction action); +public static IBaseAction Create20707() +{ + IBaseAction action = new BaseAction(ActionID.LostSteelsting_PvE); + ModifyLostSteelsting_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20707"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell] +/// </summary> +static partial void ModifyLostSteelsting_20707(ref IBaseAction action); +public static IBaseAction Create20708() +{ + IBaseAction action = new BaseAction(ActionID.LostSwift_PvE); + ModifyLostSwift_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20708"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability] +/// </summary> +static partial void ModifyLostSwift_20708(ref IBaseAction action); +public static IBaseAction Create20709() +{ + IBaseAction action = new BaseAction(ActionID.LostProtect_PvE); + ModifyLostProtect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20709"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell] +/// </summary> +static partial void ModifyLostProtect_20709(ref IBaseAction action); +public static IBaseAction Create20710() +{ + IBaseAction action = new BaseAction(ActionID.LostShell_PvE); + ModifyLostShell_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20710"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell] +/// </summary> +static partial void ModifyLostShell_20710(ref IBaseAction action); +public static IBaseAction Create20711() +{ + IBaseAction action = new BaseAction(ActionID.LostReflect_PvE); + ModifyLostReflect_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20711"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell] +/// </summary> +static partial void ModifyLostReflect_20711(ref IBaseAction action); +public static IBaseAction Create20712() +{ + IBaseAction action = new BaseAction(ActionID.LostStoneskin_PvE); + ModifyLostStoneskin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20712"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell] +/// </summary> +static partial void ModifyLostStoneskin_20712(ref IBaseAction action); +public static IBaseAction Create20713() +{ + IBaseAction action = new BaseAction(ActionID.LostBravery_PvE); + ModifyLostBravery_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20713"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell] +/// </summary> +static partial void ModifyLostBravery_20713(ref IBaseAction action); +public static IBaseAction Create20714() +{ + IBaseAction action = new BaseAction(ActionID.LostFocus_PvE); + ModifyLostFocus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20714"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability] +/// </summary> +static partial void ModifyLostFocus_20714(ref IBaseAction action); +public static IBaseAction Create20715() +{ + IBaseAction action = new BaseAction(ActionID.LostFontOfMagic_PvE); + ModifyLostFontOfMagic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20715"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability] +/// </summary> +static partial void ModifyLostFontOfMagic_20715(ref IBaseAction action); +public static IBaseAction Create20716() +{ + IBaseAction action = new BaseAction(ActionID.LostFontOfSkill_PvE); + ModifyLostFontOfSkill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20716"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability] +/// </summary> +static partial void ModifyLostFontOfSkill_20716(ref IBaseAction action); +public static IBaseAction Create20717() +{ + IBaseAction action = new BaseAction(ActionID.LostFontOfPower_PvE); + ModifyLostFontOfPower_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20717"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability] +/// </summary> +static partial void ModifyLostFontOfPower_20717(ref IBaseAction action); +public static IBaseAction Create20718() +{ + IBaseAction action = new BaseAction(ActionID.LostSlash_PvE); + ModifyLostSlash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20718"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill] +/// </summary> +static partial void ModifyLostSlash_20718(ref IBaseAction action); +public static IBaseAction Create20719() +{ + IBaseAction action = new BaseAction(ActionID.LostDeath_PvE); + ModifyLostDeath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20719"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell] +/// </summary> +static partial void ModifyLostDeath_20719(ref IBaseAction action); +public static IBaseAction Create20720() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfNobleEnds_PvE); + ModifyBannerOfNobleEnds_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20720"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability] +/// </summary> +static partial void ModifyBannerOfNobleEnds_20720(ref IBaseAction action); +public static IBaseAction Create20721() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfHonoredSacrifice_PvE); + ModifyBannerOfHonoredSacrifice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20721"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability] +/// </summary> +static partial void ModifyBannerOfHonoredSacrifice_20721(ref IBaseAction action); +public static IBaseAction Create20722() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfTirelessConviction_PvE); + ModifyBannerOfTirelessConviction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20722"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability] +/// </summary> +static partial void ModifyBannerOfTirelessConviction_20722(ref IBaseAction action); +public static IBaseAction Create20723() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfFirmResolve_PvE); + ModifyBannerOfFirmResolve_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20723"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability] +/// </summary> +static partial void ModifyBannerOfFirmResolve_20723(ref IBaseAction action); +public static IBaseAction Create20724() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfSolemnClarity_PvE); + ModifyBannerOfSolemnClarity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20724"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability] +/// </summary> +static partial void ModifyBannerOfSolemnClarity_20724(ref IBaseAction action); +public static IBaseAction Create20725() +{ + IBaseAction action = new BaseAction(ActionID.BannerOfHonedAcuity_PvE); + ModifyBannerOfHonedAcuity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20725"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability] +/// </summary> +static partial void ModifyBannerOfHonedAcuity_20725(ref IBaseAction action); +public static IBaseAction Create20726() +{ + IBaseAction action = new BaseAction(ActionID.LostCure_PvE); + ModifyLostCure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20726"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell] +/// </summary> +static partial void ModifyLostCure_20726(ref IBaseAction action); +public static IBaseAction Create20727() +{ + IBaseAction action = new BaseAction(ActionID.LostCureIi_PvE); + ModifyLostCureIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20727"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability] +/// </summary> +static partial void ModifyLostCureIi_20727(ref IBaseAction action); +public static IBaseAction Create20728() +{ + IBaseAction action = new BaseAction(ActionID.LostCureIii_PvE); + ModifyLostCureIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20728"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell] +/// </summary> +static partial void ModifyLostCureIii_20728(ref IBaseAction action); +public static IBaseAction Create20729() +{ + IBaseAction action = new BaseAction(ActionID.LostCureIv_PvE); + ModifyLostCureIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20729"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability] +/// </summary> +static partial void ModifyLostCureIv_20729(ref IBaseAction action); +public static IBaseAction Create20730() +{ + IBaseAction action = new BaseAction(ActionID.LostArise_PvE); + ModifyLostArise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20730"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell] +/// </summary> +static partial void ModifyLostArise_20730(ref IBaseAction action); +public static IBaseAction Create20731() +{ + IBaseAction action = new BaseAction(ActionID.LostIncense_PvE); + ModifyLostIncense_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20731"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability] +/// </summary> +static partial void ModifyLostIncense_20731(ref IBaseAction action); +public static IBaseAction Create20732() +{ + IBaseAction action = new BaseAction(ActionID.LostFairTrade_PvE); + ModifyLostFairTrade_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20732"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill] +/// </summary> +static partial void ModifyLostFairTrade_20732(ref IBaseAction action); +public static IBaseAction Create20733() +{ + IBaseAction action = new BaseAction(ActionID.Mimic_PvE); + ModifyMimic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20733"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability] +/// </summary> +static partial void ModifyMimic_20733(ref IBaseAction action); +public static IBaseAction Create20734() +{ + IBaseAction action = new BaseAction(ActionID.DynamisDice_PvE_20734); + ModifyDynamisDice_PvE_20734(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20734"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item] +/// </summary> +static partial void ModifyDynamisDice_20734(ref IBaseAction action); +public static IBaseAction Create20735() +{ + IBaseAction action = new BaseAction(ActionID.ResistancePhoenix_PvE); + ModifyResistancePhoenix_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20735"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item] +/// </summary> +static partial void ModifyResistancePhoenix_20735(ref IBaseAction action); +public static IBaseAction Create20736() +{ + IBaseAction action = new BaseAction(ActionID.ResistanceReraiser_PvE); + ModifyResistanceReraiser_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20736"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item] +/// </summary> +static partial void ModifyResistanceReraiser_20736(ref IBaseAction action); +public static IBaseAction Create20737() +{ + IBaseAction action = new BaseAction(ActionID.ResistancePotionKit_PvE); + ModifyResistancePotionKit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20737"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item] +/// </summary> +static partial void ModifyResistancePotionKit_20737(ref IBaseAction action); +public static IBaseAction Create20738() +{ + IBaseAction action = new BaseAction(ActionID.ResistanceEtherKit_PvE); + ModifyResistanceEtherKit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20738"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item] +/// </summary> +static partial void ModifyResistanceEtherKit_20738(ref IBaseAction action); +public static IBaseAction Create20739() +{ + IBaseAction action = new BaseAction(ActionID.ResistanceMedikit_PvE); + ModifyResistanceMedikit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20739"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item] +/// </summary> +static partial void ModifyResistanceMedikit_20739(ref IBaseAction action); +public static IBaseAction Create20740() +{ + IBaseAction action = new BaseAction(ActionID.ResistancePotion_PvE); + ModifyResistancePotion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20740"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item] +/// </summary> +static partial void ModifyResistancePotion_20740(ref IBaseAction action); +public static IBaseAction Create20741() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheAetherweaver_PvE); + ModifyEssenceOfTheAetherweaver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20741"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item] +/// </summary> +static partial void ModifyEssenceOfTheAetherweaver_20741(ref IBaseAction action); +public static IBaseAction Create20742() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheMartialist_PvE); + ModifyEssenceOfTheMartialist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20742"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item] +/// </summary> +static partial void ModifyEssenceOfTheMartialist_20742(ref IBaseAction action); +public static IBaseAction Create20743() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheSavior_PvE); + ModifyEssenceOfTheSavior_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20743"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item] +/// </summary> +static partial void ModifyEssenceOfTheSavior_20743(ref IBaseAction action); +public static IBaseAction Create20744() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheVeteran_PvE); + ModifyEssenceOfTheVeteran_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20744"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item] +/// </summary> +static partial void ModifyEssenceOfTheVeteran_20744(ref IBaseAction action); +public static IBaseAction Create20745() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfThePlatebearer_PvE); + ModifyEssenceOfThePlatebearer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20745"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item] +/// </summary> +static partial void ModifyEssenceOfThePlatebearer_20745(ref IBaseAction action); +public static IBaseAction Create20746() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheGuardian_PvE); + ModifyEssenceOfTheGuardian_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20746"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item] +/// </summary> +static partial void ModifyEssenceOfTheGuardian_20746(ref IBaseAction action); +public static IBaseAction Create20747() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheOrdained_PvE); + ModifyEssenceOfTheOrdained_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20747"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item] +/// </summary> +static partial void ModifyEssenceOfTheOrdained_20747(ref IBaseAction action); +public static IBaseAction Create20748() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheSkirmisher_PvE); + ModifyEssenceOfTheSkirmisher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20748"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item] +/// </summary> +static partial void ModifyEssenceOfTheSkirmisher_20748(ref IBaseAction action); +public static IBaseAction Create20749() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheWatcher_PvE); + ModifyEssenceOfTheWatcher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20749"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item] +/// </summary> +static partial void ModifyEssenceOfTheWatcher_20749(ref IBaseAction action); +public static IBaseAction Create20750() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheProfane_PvE); + ModifyEssenceOfTheProfane_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20750"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item] +/// </summary> +static partial void ModifyEssenceOfTheProfane_20750(ref IBaseAction action); +public static IBaseAction Create20751() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheIrregular_PvE); + ModifyEssenceOfTheIrregular_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20751"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item] +/// </summary> +static partial void ModifyEssenceOfTheIrregular_20751(ref IBaseAction action); +public static IBaseAction Create20752() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheBreathtaker_PvE); + ModifyEssenceOfTheBreathtaker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20752"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item] +/// </summary> +static partial void ModifyEssenceOfTheBreathtaker_20752(ref IBaseAction action); +public static IBaseAction Create20753() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheBloodsucker_PvE); + ModifyEssenceOfTheBloodsucker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20753"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item] +/// </summary> +static partial void ModifyEssenceOfTheBloodsucker_20753(ref IBaseAction action); +public static IBaseAction Create20754() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheBeast_PvE); + ModifyEssenceOfTheBeast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20754"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item] +/// </summary> +static partial void ModifyEssenceOfTheBeast_20754(ref IBaseAction action); +public static IBaseAction Create20755() +{ + IBaseAction action = new BaseAction(ActionID.EssenceOfTheTemplar_PvE); + ModifyEssenceOfTheTemplar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20755"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item] +/// </summary> +static partial void ModifyEssenceOfTheTemplar_20755(ref IBaseAction action); +public static IBaseAction Create20756() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheAetherweaver_PvE); + ModifyDeepEssenceOfTheAetherweaver_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20756"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheAetherweaver_20756(ref IBaseAction action); +public static IBaseAction Create20757() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheMartialist_PvE); + ModifyDeepEssenceOfTheMartialist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20757"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheMartialist_20757(ref IBaseAction action); +public static IBaseAction Create20758() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheSavior_PvE); + ModifyDeepEssenceOfTheSavior_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20758"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheSavior_20758(ref IBaseAction action); +public static IBaseAction Create20759() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheVeteran_PvE); + ModifyDeepEssenceOfTheVeteran_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20759"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheVeteran_20759(ref IBaseAction action); +public static IBaseAction Create20760() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfThePlatebearer_PvE); + ModifyDeepEssenceOfThePlatebearer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20760"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfThePlatebearer_20760(ref IBaseAction action); +public static IBaseAction Create20761() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheGuardian_PvE); + ModifyDeepEssenceOfTheGuardian_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20761"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheGuardian_20761(ref IBaseAction action); +public static IBaseAction Create20762() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheOrdained_PvE); + ModifyDeepEssenceOfTheOrdained_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20762"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheOrdained_20762(ref IBaseAction action); +public static IBaseAction Create20763() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheSkirmisher_PvE); + ModifyDeepEssenceOfTheSkirmisher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20763"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheSkirmisher_20763(ref IBaseAction action); +public static IBaseAction Create20764() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheWatcher_PvE); + ModifyDeepEssenceOfTheWatcher_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20764"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheWatcher_20764(ref IBaseAction action); +public static IBaseAction Create20765() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheProfane_PvE); + ModifyDeepEssenceOfTheProfane_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20765"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheProfane_20765(ref IBaseAction action); +public static IBaseAction Create20766() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheIrregular_PvE); + ModifyDeepEssenceOfTheIrregular_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20766"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheIrregular_20766(ref IBaseAction action); +public static IBaseAction Create20767() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheBreathtaker_PvE); + ModifyDeepEssenceOfTheBreathtaker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20767"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheBreathtaker_20767(ref IBaseAction action); +public static IBaseAction Create20768() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheBloodsucker_PvE); + ModifyDeepEssenceOfTheBloodsucker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20768"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheBloodsucker_20768(ref IBaseAction action); +public static IBaseAction Create20769() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheBeast_PvE); + ModifyDeepEssenceOfTheBeast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20769"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheBeast_20769(ref IBaseAction action); +public static IBaseAction Create20770() +{ + IBaseAction action = new BaseAction(ActionID.DeepEssenceOfTheTemplar_PvE); + ModifyDeepEssenceOfTheTemplar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20770"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item] +/// </summary> +static partial void ModifyDeepEssenceOfTheTemplar_20770(ref IBaseAction action); +public static IBaseAction Create20940() +{ + IBaseAction action = new BaseAction(ActionID.AutoRestoration_PvE); + ModifyAutoRestoration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/20940"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability] +/// </summary> +static partial void ModifyAutoRestoration_20940(ref IBaseAction action); +public static IBaseAction Create21023() +{ + IBaseAction action = new BaseAction(ActionID.LostAction_PvE); + ModifyLostAction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21023"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] [] +/// </summary> +static partial void ModifyLostAction_21023(ref IBaseAction action); +public static IBaseAction Create21177() +{ + IBaseAction action = new BaseAction(ActionID.MountaineersGiftI_PvE); + ModifyMountaineersGiftI_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21177"><strong>Mountaineer's Gift I</strong></see> <i>PvE</i> (MIN) [21177] [DoL Ability] +/// </summary> +static partial void ModifyMountaineersGiftI_21177(ref IBaseAction action); +public static IBaseAction Create21178() +{ + IBaseAction action = new BaseAction(ActionID.PioneersGiftI_PvE); + ModifyPioneersGiftI_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21178"><strong>Pioneer's Gift I</strong></see> <i>PvE</i> (BTN) [21178] [DoL Ability] +/// </summary> +static partial void ModifyPioneersGiftI_21178(ref IBaseAction action); +public static IBaseAction Create21203() +{ + IBaseAction action = new BaseAction(ActionID.NaldthalsTidings_PvE); + ModifyNaldthalsTidings_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21203"><strong>Nald'thal's Tidings</strong></see> <i>PvE</i> (MIN) [21203] [DoL Ability] +/// </summary> +static partial void ModifyNaldthalsTidings_21203(ref IBaseAction action); +public static IBaseAction Create21204() +{ + IBaseAction action = new BaseAction(ActionID.NophicasTidings_PvE); + ModifyNophicasTidings_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21204"><strong>Nophica's Tidings</strong></see> <i>PvE</i> (BTN) [21204] [DoL Ability] +/// </summary> +static partial void ModifyNophicasTidings_21204(ref IBaseAction action); +public static IBaseAction Create21205() +{ + IBaseAction action = new BaseAction(ActionID.CollectorsFocus_PvE); + ModifyCollectorsFocus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21205"><strong>Collector's Focus</strong></see> <i>PvE</i> (MIN) [21205] [DoL Ability] +/// </summary> +static partial void ModifyCollectorsFocus_21205(ref IBaseAction action); +public static IBaseAction Create21206() +{ + IBaseAction action = new BaseAction(ActionID.CollectorsFocus_PvE_21206); + ModifyCollectorsFocus_PvE_21206(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21206"><strong>Collector's Focus</strong></see> <i>PvE</i> (BTN) [21206] [DoL Ability] +/// </summary> +static partial void ModifyCollectorsFocus_21206(ref IBaseAction action); +public static IBaseAction Create21324() +{ + IBaseAction action = new BaseAction(ActionID.EnkindlingFlameDance_PvE); + ModifyEnkindlingFlameDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21324"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special] +/// </summary> +static partial void ModifyEnkindlingFlameDance_21324(ref IBaseAction action); +public static IBaseAction Create21325() +{ + IBaseAction action = new BaseAction(ActionID.InvigoratingFlameDance_PvE); + ModifyInvigoratingFlameDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21325"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special] +/// </summary> +static partial void ModifyInvigoratingFlameDance_21325(ref IBaseAction action); +public static IBaseAction Create21494() +{ + IBaseAction action = new BaseAction(ActionID.Fleche_PvE_21494); + ModifyFleche_PvE_21494(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21494"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability] +/// </summary> +static partial void ModifyFleche_21494(ref IBaseAction action); +public static IBaseAction Create21495() +{ + IBaseAction action = new BaseAction(ActionID.ContreSixte_PvE_21495); + ModifyContreSixte_PvE_21495(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21495"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability] +/// </summary> +static partial void ModifyContreSixte_21495(ref IBaseAction action); +public static IBaseAction Create21496() +{ + IBaseAction action = new BaseAction(ActionID.Displacement_PvE_21496); + ModifyDisplacement_PvE_21496(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21496"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability] +/// </summary> +static partial void ModifyDisplacement_21496(ref IBaseAction action); +public static IBaseAction Create21497() +{ + IBaseAction action = new BaseAction(ActionID.Vercure_PvE_21497); + ModifyVercure_PvE_21497(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21497"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell] +/// </summary> +static partial void ModifyVercure_21497(ref IBaseAction action); +public static IBaseAction Create21498() +{ + IBaseAction action = new BaseAction(ActionID.MaleficIii_PvE_21498); + ModifyMaleficIii_PvE_21498(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21498"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell] +/// </summary> +static partial void ModifyMaleficIii_21498(ref IBaseAction action); +public static IBaseAction Create21499() +{ + IBaseAction action = new BaseAction(ActionID.DestinyDrawn_PvE); + ModifyDestinyDrawn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21499"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability] +/// </summary> +static partial void ModifyDestinyDrawn_21499(ref IBaseAction action); +public static IBaseAction Create21607() +{ + IBaseAction action = new BaseAction(ActionID.LordOfCrowns_PvE_21607); + ModifyLordOfCrowns_PvE_21607(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21607"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability] +/// </summary> +static partial void ModifyLordOfCrowns_21607(ref IBaseAction action); +public static IBaseAction Create21608() +{ + IBaseAction action = new BaseAction(ActionID.Benefic_PvE_21608); + ModifyBenefic_PvE_21608(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21608"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell] +/// </summary> +static partial void ModifyBenefic_21608(ref IBaseAction action); +public static IBaseAction Create21609() +{ + IBaseAction action = new BaseAction(ActionID.AspectedHelios_PvE_21609); + ModifyAspectedHelios_PvE_21609(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21609"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell] +/// </summary> +static partial void ModifyAspectedHelios_21609(ref IBaseAction action); +public static IBaseAction Create21610() +{ + IBaseAction action = new BaseAction(ActionID.TheScroll_PvE); + ModifyTheScroll_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21610"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability] +/// </summary> +static partial void ModifyTheScroll_21610(ref IBaseAction action); +public static IBaseAction Create21611() +{ + IBaseAction action = new BaseAction(ActionID.FixedSign_PvE); + ModifyFixedSign_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21611"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability] +/// </summary> +static partial void ModifyFixedSign_21611(ref IBaseAction action); +public static IBaseAction Create21612() +{ + IBaseAction action = new BaseAction(ActionID.FireIv_PvE_21612); + ModifyFireIv_PvE_21612(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21612"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell] +/// </summary> +static partial void ModifyFireIv_21612(ref IBaseAction action); +public static IBaseAction Create21613() +{ + IBaseAction action = new BaseAction(ActionID.Foul_PvE_21613); + ModifyFoul_PvE_21613(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21613"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell] +/// </summary> +static partial void ModifyFoul_21613(ref IBaseAction action); +public static IBaseAction Create21852() +{ + IBaseAction action = new BaseAction(ActionID.AllaganBlizzardIv_PvE); + ModifyAllaganBlizzardIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21852"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell] +/// </summary> +static partial void ModifyAllaganBlizzardIv_21852(ref IBaseAction action); +public static IBaseAction Create21884() +{ + IBaseAction action = new BaseAction(ActionID.ThunderIv_PvE_21884); + ModifyThunderIv_PvE_21884(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21884"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell] +/// </summary> +static partial void ModifyThunderIv_21884(ref IBaseAction action); +public static IBaseAction Create21886() +{ + IBaseAction action = new BaseAction(ActionID.CureIi_PvE_21886); + ModifyCureIi_PvE_21886(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21886"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell] +/// </summary> +static partial void ModifyCureIi_21886(ref IBaseAction action); +public static IBaseAction Create21888() +{ + IBaseAction action = new BaseAction(ActionID.MedicaIi_PvE_21888); + ModifyMedicaIi_PvE_21888(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21888"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell] +/// </summary> +static partial void ModifyMedicaIi_21888(ref IBaseAction action); +public static IBaseAction Create21921() +{ + IBaseAction action = new BaseAction(ActionID.Break_PvE); + ModifyBreak_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21921"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell] +/// </summary> +static partial void ModifyBreak_21921(ref IBaseAction action); +public static IBaseAction Create21923() +{ + IBaseAction action = new BaseAction(ActionID.Verholy_PvE_21923); + ModifyVerholy_PvE_21923(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/21923"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell] +/// </summary> +static partial void ModifyVerholy_21923(ref IBaseAction action); +public static IBaseAction Create22182() +{ + IBaseAction action = new BaseAction(ActionID.Scour_PvE); + ModifyScour_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22182"><strong>Scour</strong></see> <i>PvE</i> (MIN) [22182] [DoL Ability] +/// </summary> +static partial void ModifyScour_22182(ref IBaseAction action); +public static IBaseAction Create22183() +{ + IBaseAction action = new BaseAction(ActionID.BrazenProspector_PvE); + ModifyBrazenProspector_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22183"><strong>Brazen Prospector</strong></see> <i>PvE</i> (MIN) [22183] [DoL Ability] +/// </summary> +static partial void ModifyBrazenProspector_22183(ref IBaseAction action); +public static IBaseAction Create22184() +{ + IBaseAction action = new BaseAction(ActionID.MeticulousProspector_PvE); + ModifyMeticulousProspector_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22184"><strong>Meticulous Prospector</strong></see> <i>PvE</i> (MIN) [22184] [DoL Ability] +/// </summary> +static partial void ModifyMeticulousProspector_22184(ref IBaseAction action); +public static IBaseAction Create22185() +{ + IBaseAction action = new BaseAction(ActionID.Scrutiny_PvE); + ModifyScrutiny_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22185"><strong>Scrutiny</strong></see> <i>PvE</i> (MIN) [22185] [DoL Ability] +/// </summary> +static partial void ModifyScrutiny_22185(ref IBaseAction action); +public static IBaseAction Create22186() +{ + IBaseAction action = new BaseAction(ActionID.Scour_PvE_22186); + ModifyScour_PvE_22186(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22186"><strong>Scour</strong></see> <i>PvE</i> (BTN) [22186] [DoL Ability] +/// </summary> +static partial void ModifyScour_22186(ref IBaseAction action); +public static IBaseAction Create22187() +{ + IBaseAction action = new BaseAction(ActionID.BrazenWoodsman_PvE); + ModifyBrazenWoodsman_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22187"><strong>Brazen Woodsman</strong></see> <i>PvE</i> (BTN) [22187] [DoL Ability] +/// </summary> +static partial void ModifyBrazenWoodsman_22187(ref IBaseAction action); +public static IBaseAction Create22188() +{ + IBaseAction action = new BaseAction(ActionID.MeticulousWoodsman_PvE); + ModifyMeticulousWoodsman_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22188"><strong>Meticulous Woodsman</strong></see> <i>PvE</i> (BTN) [22188] [DoL Ability] +/// </summary> +static partial void ModifyMeticulousWoodsman_22188(ref IBaseAction action); +public static IBaseAction Create22189() +{ + IBaseAction action = new BaseAction(ActionID.Scrutiny_PvE_22189); + ModifyScrutiny_PvE_22189(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22189"><strong>Scrutiny</strong></see> <i>PvE</i> (BTN) [22189] [DoL Ability] +/// </summary> +static partial void ModifyScrutiny_22189(ref IBaseAction action); +public static IBaseAction Create22344() +{ + IBaseAction action = new BaseAction(ActionID.LostPerception_PvE); + ModifyLostPerception_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22344"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability] +/// </summary> +static partial void ModifyLostPerception_22344(ref IBaseAction action); +public static IBaseAction Create22345() +{ + IBaseAction action = new BaseAction(ActionID.LostSacrifice_PvE); + ModifyLostSacrifice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22345"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell] +/// </summary> +static partial void ModifyLostSacrifice_22345(ref IBaseAction action); +public static IBaseAction Create22346() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheGambler_PvE); + ModifyPureEssenceOfTheGambler_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22346"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheGambler_22346(ref IBaseAction action); +public static IBaseAction Create22347() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheElder_PvE); + ModifyPureEssenceOfTheElder_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22347"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [22347] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheElder_22347(ref IBaseAction action); +public static IBaseAction Create22348() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheDuelist_PvE); + ModifyPureEssenceOfTheDuelist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22348"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheDuelist_22348(ref IBaseAction action); +public static IBaseAction Create22349() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheFiendhunter_PvE); + ModifyPureEssenceOfTheFiendhunter_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22349"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [22349] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheFiendhunter_22349(ref IBaseAction action); +public static IBaseAction Create22350() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheIndomitable_PvE); + ModifyPureEssenceOfTheIndomitable_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22350"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheIndomitable_22350(ref IBaseAction action); +public static IBaseAction Create22351() +{ + IBaseAction action = new BaseAction(ActionID.PureEssenceOfTheDivine_PvE); + ModifyPureEssenceOfTheDivine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22351"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item] +/// </summary> +static partial void ModifyPureEssenceOfTheDivine_22351(ref IBaseAction action); +public static IBaseAction Create22352() +{ + IBaseAction action = new BaseAction(ActionID.LostFlareStar_PvE); + ModifyLostFlareStar_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22352"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) [22352] [Spell] +/// </summary> +static partial void ModifyLostFlareStar_22352(ref IBaseAction action); +public static IBaseAction Create22353() +{ + IBaseAction action = new BaseAction(ActionID.LostRendArmor_PvE); + ModifyLostRendArmor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22353"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability] +/// </summary> +static partial void ModifyLostRendArmor_22353(ref IBaseAction action); +public static IBaseAction Create22354() +{ + IBaseAction action = new BaseAction(ActionID.LostSeraphStrike_PvE); + ModifyLostSeraphStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22354"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability] +/// </summary> +static partial void ModifyLostSeraphStrike_22354(ref IBaseAction action); +public static IBaseAction Create22355() +{ + IBaseAction action = new BaseAction(ActionID.LostAethershield_PvE); + ModifyLostAethershield_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22355"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability] +/// </summary> +static partial void ModifyLostAethershield_22355(ref IBaseAction action); +public static IBaseAction Create22356() +{ + IBaseAction action = new BaseAction(ActionID.LostDervish_PvE); + ModifyLostDervish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22356"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) [22356] [Ability] +/// </summary> +static partial void ModifyLostDervish_22356(ref IBaseAction action); +public static IBaseAction Create22502() +{ + IBaseAction action = new BaseAction(ActionID.FireIv_PvE_22502); + ModifyFireIv_PvE_22502(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22502"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell] +/// </summary> +static partial void ModifyFireIv_22502(ref IBaseAction action); +public static IBaseAction Create22817() +{ + IBaseAction action = new BaseAction(ActionID.FireIv_PvE_22817); + ModifyFireIv_PvE_22817(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/22817"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell] +/// </summary> +static partial void ModifyFireIv_22817(ref IBaseAction action); +public static IBaseAction Create23264() +{ + IBaseAction action = new BaseAction(ActionID.TripleTrident_PvE); + ModifyTripleTrident_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23264"><strong>Triple Trident</strong></see> <i>PvE</i> (BLU) [23264] [Spell] +/// </summary> +static partial void ModifyTripleTrident_23264(ref IBaseAction action); +public static IBaseAction Create23265() +{ + IBaseAction action = new BaseAction(ActionID.Tingle_PvE); + ModifyTingle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23265"><strong>Tingle</strong></see> <i>PvE</i> (BLU) [23265] [Spell] +/// </summary> +static partial void ModifyTingle_23265(ref IBaseAction action); +public static IBaseAction Create23266() +{ + IBaseAction action = new BaseAction(ActionID.Tatamigaeshi_PvE); + ModifyTatamigaeshi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23266"><strong>Tatami-gaeshi</strong></see> <i>PvE</i> (BLU) [23266] [Spell] +/// </summary> +static partial void ModifyTatamigaeshi_23266(ref IBaseAction action); +public static IBaseAction Create23267() +{ + IBaseAction action = new BaseAction(ActionID.ColdFog_PvE); + ModifyColdFog_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23267"><strong>Cold Fog</strong></see> <i>PvE</i> (BLU) [23267] [Spell] +/// </summary> +static partial void ModifyColdFog_23267(ref IBaseAction action); +public static IBaseAction Create23268() +{ + IBaseAction action = new BaseAction(ActionID.WhiteDeath_PvE); + ModifyWhiteDeath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23268"><strong>White Death</strong></see> <i>PvE</i> (BLU) [23268] [Spell] +/// </summary> +static partial void ModifyWhiteDeath_23268(ref IBaseAction action); +public static IBaseAction Create23269() +{ + IBaseAction action = new BaseAction(ActionID.Stotram_PvE); + ModifyStotram_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23269"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23269] [Spell] +/// </summary> +static partial void ModifyStotram_23269(ref IBaseAction action); +public static IBaseAction Create23270() +{ + IBaseAction action = new BaseAction(ActionID.SaintlyBeam_PvE); + ModifySaintlyBeam_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23270"><strong>Saintly Beam</strong></see> <i>PvE</i> (BLU) [23270] [Spell] +/// </summary> +static partial void ModifySaintlyBeam_23270(ref IBaseAction action); +public static IBaseAction Create23271() +{ + IBaseAction action = new BaseAction(ActionID.FeculentFlood_PvE); + ModifyFeculentFlood_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23271"><strong>Feculent Flood</strong></see> <i>PvE</i> (BLU) [23271] [Spell] +/// </summary> +static partial void ModifyFeculentFlood_23271(ref IBaseAction action); +public static IBaseAction Create23272() +{ + IBaseAction action = new BaseAction(ActionID.AngelsSnack_PvE); + ModifyAngelsSnack_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23272"><strong>Angel's Snack</strong></see> <i>PvE</i> (BLU) [23272] [Spell] +/// </summary> +static partial void ModifyAngelsSnack_23272(ref IBaseAction action); +public static IBaseAction Create23273() +{ + IBaseAction action = new BaseAction(ActionID.ChelonianGate_PvE); + ModifyChelonianGate_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23273"><strong>Chelonian Gate</strong></see> <i>PvE</i> (BLU) [23273] [Spell] +/// </summary> +static partial void ModifyChelonianGate_23273(ref IBaseAction action); +public static IBaseAction Create23274() +{ + IBaseAction action = new BaseAction(ActionID.DivineCataract_PvE); + ModifyDivineCataract_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23274"><strong>Divine Cataract</strong></see> <i>PvE</i> (BLU) [23274] [Spell] +/// </summary> +static partial void ModifyDivineCataract_23274(ref IBaseAction action); +public static IBaseAction Create23275() +{ + IBaseAction action = new BaseAction(ActionID.TheRoseOfDestruction_PvE); + ModifyTheRoseOfDestruction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23275"><strong>The Rose of Destruction</strong></see> <i>PvE</i> (BLU) [23275] [Spell] +/// </summary> +static partial void ModifyTheRoseOfDestruction_23275(ref IBaseAction action); +public static IBaseAction Create23276() +{ + IBaseAction action = new BaseAction(ActionID.BasicInstinct_PvE); + ModifyBasicInstinct_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23276"><strong>Basic Instinct</strong></see> <i>PvE</i> (BLU) [23276] [Spell] +/// </summary> +static partial void ModifyBasicInstinct_23276(ref IBaseAction action); +public static IBaseAction Create23277() +{ + IBaseAction action = new BaseAction(ActionID.Ultravibration_PvE); + ModifyUltravibration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23277"><strong>Ultravibration</strong></see> <i>PvE</i> (BLU) [23277] [Spell] +/// </summary> +static partial void ModifyUltravibration_23277(ref IBaseAction action); +public static IBaseAction Create23278() +{ + IBaseAction action = new BaseAction(ActionID.Blaze_PvE); + ModifyBlaze_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23278"><strong>Blaze</strong></see> <i>PvE</i> (BLU) [23278] [Spell] +/// </summary> +static partial void ModifyBlaze_23278(ref IBaseAction action); +public static IBaseAction Create23279() +{ + IBaseAction action = new BaseAction(ActionID.MustardBomb_PvE); + ModifyMustardBomb_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23279"><strong>Mustard Bomb</strong></see> <i>PvE</i> (BLU) [23279] [Spell] +/// </summary> +static partial void ModifyMustardBomb_23279(ref IBaseAction action); +public static IBaseAction Create23280() +{ + IBaseAction action = new BaseAction(ActionID.DragonForce_PvE); + ModifyDragonForce_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23280"><strong>Dragon Force</strong></see> <i>PvE</i> (BLU) [23280] [Spell] +/// </summary> +static partial void ModifyDragonForce_23280(ref IBaseAction action); +public static IBaseAction Create23281() +{ + IBaseAction action = new BaseAction(ActionID.AetherialSpark_PvE); + ModifyAetherialSpark_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23281"><strong>Aetherial Spark</strong></see> <i>PvE</i> (BLU) [23281] [Spell] +/// </summary> +static partial void ModifyAetherialSpark_23281(ref IBaseAction action); +public static IBaseAction Create23282() +{ + IBaseAction action = new BaseAction(ActionID.HydroPull_PvE); + ModifyHydroPull_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23282"><strong>Hydro Pull</strong></see> <i>PvE</i> (BLU) [23282] [Spell] +/// </summary> +static partial void ModifyHydroPull_23282(ref IBaseAction action); +public static IBaseAction Create23283() +{ + IBaseAction action = new BaseAction(ActionID.MaledictionOfWater_PvE); + ModifyMaledictionOfWater_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23283"><strong>Malediction of Water</strong></see> <i>PvE</i> (BLU) [23283] [Spell] +/// </summary> +static partial void ModifyMaledictionOfWater_23283(ref IBaseAction action); +public static IBaseAction Create23284() +{ + IBaseAction action = new BaseAction(ActionID.ChocoMeteor_PvE); + ModifyChocoMeteor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23284"><strong>Choco Meteor</strong></see> <i>PvE</i> (BLU) [23284] [Spell] +/// </summary> +static partial void ModifyChocoMeteor_23284(ref IBaseAction action); +public static IBaseAction Create23285() +{ + IBaseAction action = new BaseAction(ActionID.MatraMagic_PvE); + ModifyMatraMagic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23285"><strong>Matra Magic</strong></see> <i>PvE</i> (BLU) [23285] [Spell] +/// </summary> +static partial void ModifyMatraMagic_23285(ref IBaseAction action); +public static IBaseAction Create23286() +{ + IBaseAction action = new BaseAction(ActionID.PeripheralSynthesis_PvE); + ModifyPeripheralSynthesis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23286"><strong>Peripheral Synthesis</strong></see> <i>PvE</i> (BLU) [23286] [Spell] +/// </summary> +static partial void ModifyPeripheralSynthesis_23286(ref IBaseAction action); +public static IBaseAction Create23287() +{ + IBaseAction action = new BaseAction(ActionID.BothEnds_PvE); + ModifyBothEnds_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23287"><strong>Both Ends</strong></see> <i>PvE</i> (BLU) [23287] [Ability] +/// </summary> +static partial void ModifyBothEnds_23287(ref IBaseAction action); +public static IBaseAction Create23288() +{ + IBaseAction action = new BaseAction(ActionID.PhantomFlurry_PvE); + ModifyPhantomFlurry_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23288"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23288] [Ability] +/// </summary> +static partial void ModifyPhantomFlurry_23288(ref IBaseAction action); +public static IBaseAction Create23289() +{ + IBaseAction action = new BaseAction(ActionID.PhantomFlurry_PvE_23289); + ModifyPhantomFlurry_PvE_23289(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23289"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23289] [Ability] +/// </summary> +static partial void ModifyPhantomFlurry_23289(ref IBaseAction action); +public static IBaseAction Create23290() +{ + IBaseAction action = new BaseAction(ActionID.Nightbloom_PvE); + ModifyNightbloom_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23290"><strong>Nightbloom</strong></see> <i>PvE</i> (BLU) [23290] [Ability] +/// </summary> +static partial void ModifyNightbloom_23290(ref IBaseAction action); +public static IBaseAction Create23345() +{ + IBaseAction action = new BaseAction(ActionID.SemieternalBreath_PvE); + ModifySemieternalBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23345"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount] +/// </summary> +static partial void ModifySemieternalBreath_23345(ref IBaseAction action); +public static IBaseAction Create23416() +{ + IBaseAction action = new BaseAction(ActionID.Stotram_PvE_23416); + ModifyStotram_PvE_23416(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23416"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23416] [Spell] +/// </summary> +static partial void ModifyStotram_23416(ref IBaseAction action); +public static IBaseAction Create23907() +{ + IBaseAction action = new BaseAction(ActionID.Lodestone_PvE); + ModifyLodestone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23907"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item] +/// </summary> +static partial void ModifyLodestone_23907(ref IBaseAction action); +public static IBaseAction Create23908() +{ + IBaseAction action = new BaseAction(ActionID.LostStoneskinIi_PvE); + ModifyLostStoneskinIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23908"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell] +/// </summary> +static partial void ModifyLostStoneskinIi_23908(ref IBaseAction action); +public static IBaseAction Create23909() +{ + IBaseAction action = new BaseAction(ActionID.LostBurst_PvE); + ModifyLostBurst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23909"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell] +/// </summary> +static partial void ModifyLostBurst_23909(ref IBaseAction action); +public static IBaseAction Create23910() +{ + IBaseAction action = new BaseAction(ActionID.LostRampage_PvE); + ModifyLostRampage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23910"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill] +/// </summary> +static partial void ModifyLostRampage_23910(ref IBaseAction action); +public static IBaseAction Create23911() +{ + IBaseAction action = new BaseAction(ActionID.LightCurtain_PvE); + ModifyLightCurtain_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23911"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item] +/// </summary> +static partial void ModifyLightCurtain_23911(ref IBaseAction action); +public static IBaseAction Create23912() +{ + IBaseAction action = new BaseAction(ActionID.LostReraise_PvE); + ModifyLostReraise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23912"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell] +/// </summary> +static partial void ModifyLostReraise_23912(ref IBaseAction action); +public static IBaseAction Create23913() +{ + IBaseAction action = new BaseAction(ActionID.LostChainspell_PvE); + ModifyLostChainspell_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23913"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability] +/// </summary> +static partial void ModifyLostChainspell_23913(ref IBaseAction action); +public static IBaseAction Create23914() +{ + IBaseAction action = new BaseAction(ActionID.LostAssassination_PvE); + ModifyLostAssassination_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23914"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill] +/// </summary> +static partial void ModifyLostAssassination_23914(ref IBaseAction action); +public static IBaseAction Create23915() +{ + IBaseAction action = new BaseAction(ActionID.LostProtectIi_PvE); + ModifyLostProtectIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23915"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell] +/// </summary> +static partial void ModifyLostProtectIi_23915(ref IBaseAction action); +public static IBaseAction Create23916() +{ + IBaseAction action = new BaseAction(ActionID.LostShellIi_PvE); + ModifyLostShellIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23916"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell] +/// </summary> +static partial void ModifyLostShellIi_23916(ref IBaseAction action); +public static IBaseAction Create23917() +{ + IBaseAction action = new BaseAction(ActionID.LostBubble_PvE); + ModifyLostBubble_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23917"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell] +/// </summary> +static partial void ModifyLostBubble_23917(ref IBaseAction action); +public static IBaseAction Create23918() +{ + IBaseAction action = new BaseAction(ActionID.LostImpetus_PvE); + ModifyLostImpetus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23918"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability] +/// </summary> +static partial void ModifyLostImpetus_23918(ref IBaseAction action); +public static IBaseAction Create23919() +{ + IBaseAction action = new BaseAction(ActionID.LostExcellence_PvE); + ModifyLostExcellence_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23919"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability] +/// </summary> +static partial void ModifyLostExcellence_23919(ref IBaseAction action); +public static IBaseAction Create23920() +{ + IBaseAction action = new BaseAction(ActionID.LostFullCure_PvE); + ModifyLostFullCure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23920"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability] +/// </summary> +static partial void ModifyLostFullCure_23920(ref IBaseAction action); +public static IBaseAction Create23921() +{ + IBaseAction action = new BaseAction(ActionID.LostBloodRage_PvE); + ModifyLostBloodRage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23921"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability] +/// </summary> +static partial void ModifyLostBloodRage_23921(ref IBaseAction action); +public static IBaseAction Create23922() +{ + IBaseAction action = new BaseAction(ActionID.ResistanceElixir_PvE); + ModifyResistanceElixir_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/23922"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item] +/// </summary> +static partial void ModifyResistanceElixir_23922(ref IBaseAction action); +public static IBaseAction Create24066() +{ + IBaseAction action = new BaseAction(ActionID.DestinysSleeve_PvE); + ModifyDestinysSleeve_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24066"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability] +/// </summary> +static partial void ModifyDestinysSleeve_24066(ref IBaseAction action); +public static IBaseAction Create24276() +{ + IBaseAction action = new BaseAction(ActionID.CrystalIce_PvE); + ModifyCrystalIce_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24276"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount] +/// </summary> +static partial void ModifyCrystalIce_24276(ref IBaseAction action); +public static IBaseAction Create24277() +{ + IBaseAction action = new BaseAction(ActionID.MightyMaximizer_PvE); + ModifyMightyMaximizer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24277"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special] +/// </summary> +static partial void ModifyMightyMaximizer_24277(ref IBaseAction action); +public static IBaseAction Create24278() +{ + IBaseAction action = new BaseAction(ActionID.ChirpyChecker_PvE); + ModifyChirpyChecker_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24278"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special] +/// </summary> +static partial void ModifyChirpyChecker_24278(ref IBaseAction action); +public static IBaseAction Create24279() +{ + IBaseAction action = new BaseAction(ActionID.PerkyPeeler_PvE); + ModifyPerkyPeeler_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24279"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special] +/// </summary> +static partial void ModifyPerkyPeeler_24279(ref IBaseAction action); +public static IBaseAction Create24280() +{ + IBaseAction action = new BaseAction(ActionID.AetheromaticClipper_PvE); + ModifyAetheromaticClipper_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24280"><strong>Aetheromatic Clipper</strong></see> <i>PvE</i> (Disciples of the Land or Hand) [24280] [Special] +/// </summary> +static partial void ModifyAetheromaticClipper_24280(ref IBaseAction action); +public static IBaseAction Create24283() +{ + IBaseAction action = new BaseAction(ActionID.Dosis_PvE); + ModifyDosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24283"><strong>Dosis</strong></see> <i>PvE</i> (SGE) [24283] [Spell] +/// </summary> +static partial void ModifyDosis_24283(ref IBaseAction action); +public static IBaseAction Create24284() +{ + IBaseAction action = new BaseAction(ActionID.Diagnosis_PvE); + ModifyDiagnosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24284"><strong>Diagnosis</strong></see> <i>PvE</i> (SGE) [24284] [Spell] +/// </summary> +static partial void ModifyDiagnosis_24284(ref IBaseAction action); +public static IBaseAction Create24285() +{ + IBaseAction action = new BaseAction(ActionID.Kardia_PvE); + ModifyKardia_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24285"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [24285] [Ability] +/// </summary> +static partial void ModifyKardia_24285(ref IBaseAction action); +public static IBaseAction Create24286() +{ + IBaseAction action = new BaseAction(ActionID.Prognosis_PvE); + ModifyPrognosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24286"><strong>Prognosis</strong></see> <i>PvE</i> (SGE) [24286] [Spell] +/// </summary> +static partial void ModifyPrognosis_24286(ref IBaseAction action); +public static IBaseAction Create24287() +{ + IBaseAction action = new BaseAction(ActionID.Egeiro_PvE); + ModifyEgeiro_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24287"><strong>Egeiro</strong></see> <i>PvE</i> (SGE) [24287] [Spell] +/// </summary> +static partial void ModifyEgeiro_24287(ref IBaseAction action); +public static IBaseAction Create24288() +{ + IBaseAction action = new BaseAction(ActionID.Physis_PvE); + ModifyPhysis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24288"><strong>Physis</strong></see> <i>PvE</i> (SGE) [24288] [Ability] +/// </summary> +static partial void ModifyPhysis_24288(ref IBaseAction action); +public static IBaseAction Create24289() +{ + IBaseAction action = new BaseAction(ActionID.Phlegma_PvE); + ModifyPhlegma_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24289"><strong>Phlegma</strong></see> <i>PvE</i> (SGE) [24289] [Spell] +/// </summary> +static partial void ModifyPhlegma_24289(ref IBaseAction action); +public static IBaseAction Create24290() +{ + IBaseAction action = new BaseAction(ActionID.Eukrasia_PvE); + ModifyEukrasia_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24290"><strong>Eukrasia</strong></see> <i>PvE</i> (SGE) [24290] [Spell] +/// </summary> +static partial void ModifyEukrasia_24290(ref IBaseAction action); +public static IBaseAction Create24291() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianDiagnosis_PvE); + ModifyEukrasianDiagnosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24291"><strong>Eukrasian Diagnosis</strong></see> <i>PvE</i> (SGE) [24291] [Spell] +/// </summary> +static partial void ModifyEukrasianDiagnosis_24291(ref IBaseAction action); +public static IBaseAction Create24292() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianPrognosis_PvE); + ModifyEukrasianPrognosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24292"><strong>Eukrasian Prognosis</strong></see> <i>PvE</i> (SGE) [24292] [Spell] +/// </summary> +static partial void ModifyEukrasianPrognosis_24292(ref IBaseAction action); +public static IBaseAction Create24293() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianDosis_PvE); + ModifyEukrasianDosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24293"><strong>Eukrasian Dosis</strong></see> <i>PvE</i> (SGE) [24293] [Spell] +/// </summary> +static partial void ModifyEukrasianDosis_24293(ref IBaseAction action); +public static IBaseAction Create24294() +{ + IBaseAction action = new BaseAction(ActionID.Soteria_PvE); + ModifySoteria_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24294"><strong>Soteria</strong></see> <i>PvE</i> (SGE) [24294] [Ability] +/// </summary> +static partial void ModifySoteria_24294(ref IBaseAction action); +public static IBaseAction Create24295() +{ + IBaseAction action = new BaseAction(ActionID.Icarus_PvE); + ModifyIcarus_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24295"><strong>Icarus</strong></see> <i>PvE</i> (SGE) [24295] [Ability] +/// </summary> +static partial void ModifyIcarus_24295(ref IBaseAction action); +public static IBaseAction Create24296() +{ + IBaseAction action = new BaseAction(ActionID.Druochole_PvE); + ModifyDruochole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24296"><strong>Druochole</strong></see> <i>PvE</i> (SGE) [24296] [Ability] +/// </summary> +static partial void ModifyDruochole_24296(ref IBaseAction action); +public static IBaseAction Create24297() +{ + IBaseAction action = new BaseAction(ActionID.Dyskrasia_PvE); + ModifyDyskrasia_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24297"><strong>Dyskrasia</strong></see> <i>PvE</i> (SGE) [24297] [Spell] +/// </summary> +static partial void ModifyDyskrasia_24297(ref IBaseAction action); +public static IBaseAction Create24298() +{ + IBaseAction action = new BaseAction(ActionID.Kerachole_PvE); + ModifyKerachole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24298"><strong>Kerachole</strong></see> <i>PvE</i> (SGE) [24298] [Ability] +/// </summary> +static partial void ModifyKerachole_24298(ref IBaseAction action); +public static IBaseAction Create24299() +{ + IBaseAction action = new BaseAction(ActionID.Ixochole_PvE); + ModifyIxochole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24299"><strong>Ixochole</strong></see> <i>PvE</i> (SGE) [24299] [Ability] +/// </summary> +static partial void ModifyIxochole_24299(ref IBaseAction action); +public static IBaseAction Create24300() +{ + IBaseAction action = new BaseAction(ActionID.Zoe_PvE); + ModifyZoe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24300"><strong>Zoe</strong></see> <i>PvE</i> (SGE) [24300] [Ability] +/// </summary> +static partial void ModifyZoe_24300(ref IBaseAction action); +public static IBaseAction Create24301() +{ + IBaseAction action = new BaseAction(ActionID.Pepsis_PvE); + ModifyPepsis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24301"><strong>Pepsis</strong></see> <i>PvE</i> (SGE) [24301] [Ability] +/// </summary> +static partial void ModifyPepsis_24301(ref IBaseAction action); +public static IBaseAction Create24302() +{ + IBaseAction action = new BaseAction(ActionID.PhysisIi_PvE); + ModifyPhysisIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24302"><strong>Physis II</strong></see> <i>PvE</i> (SGE) [24302] [Ability] +/// </summary> +static partial void ModifyPhysisIi_24302(ref IBaseAction action); +public static IBaseAction Create24303() +{ + IBaseAction action = new BaseAction(ActionID.Taurochole_PvE); + ModifyTaurochole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24303"><strong>Taurochole</strong></see> <i>PvE</i> (SGE) [24303] [Ability] +/// </summary> +static partial void ModifyTaurochole_24303(ref IBaseAction action); +public static IBaseAction Create24304() +{ + IBaseAction action = new BaseAction(ActionID.Toxikon_PvE); + ModifyToxikon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24304"><strong>Toxikon</strong></see> <i>PvE</i> (SGE) [24304] [Spell] +/// </summary> +static partial void ModifyToxikon_24304(ref IBaseAction action); +public static IBaseAction Create24305() +{ + IBaseAction action = new BaseAction(ActionID.Haima_PvE); + ModifyHaima_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24305"><strong>Haima</strong></see> <i>PvE</i> (SGE) [24305] [Ability] +/// </summary> +static partial void ModifyHaima_24305(ref IBaseAction action); +public static IBaseAction Create24306() +{ + IBaseAction action = new BaseAction(ActionID.DosisIi_PvE); + ModifyDosisIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24306"><strong>Dosis II</strong></see> <i>PvE</i> (SGE) [24306] [Spell] +/// </summary> +static partial void ModifyDosisIi_24306(ref IBaseAction action); +public static IBaseAction Create24307() +{ + IBaseAction action = new BaseAction(ActionID.PhlegmaIi_PvE); + ModifyPhlegmaIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24307"><strong>Phlegma II</strong></see> <i>PvE</i> (SGE) [24307] [Spell] +/// </summary> +static partial void ModifyPhlegmaIi_24307(ref IBaseAction action); +public static IBaseAction Create24308() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianDosisIi_PvE); + ModifyEukrasianDosisIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24308"><strong>Eukrasian Dosis II</strong></see> <i>PvE</i> (SGE) [24308] [Spell] +/// </summary> +static partial void ModifyEukrasianDosisIi_24308(ref IBaseAction action); +public static IBaseAction Create24309() +{ + IBaseAction action = new BaseAction(ActionID.Rhizomata_PvE); + ModifyRhizomata_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24309"><strong>Rhizomata</strong></see> <i>PvE</i> (SGE) [24309] [Ability] +/// </summary> +static partial void ModifyRhizomata_24309(ref IBaseAction action); +public static IBaseAction Create24310() +{ + IBaseAction action = new BaseAction(ActionID.Holos_PvE); + ModifyHolos_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24310"><strong>Holos</strong></see> <i>PvE</i> (SGE) [24310] [Ability] +/// </summary> +static partial void ModifyHolos_24310(ref IBaseAction action); +public static IBaseAction Create24311() +{ + IBaseAction action = new BaseAction(ActionID.Panhaima_PvE); + ModifyPanhaima_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24311"><strong>Panhaima</strong></see> <i>PvE</i> (SGE) [24311] [Ability] +/// </summary> +static partial void ModifyPanhaima_24311(ref IBaseAction action); +public static IBaseAction Create24312() +{ + IBaseAction action = new BaseAction(ActionID.DosisIii_PvE); + ModifyDosisIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24312"><strong>Dosis III</strong></see> <i>PvE</i> (SGE) [24312] [Spell] +/// </summary> +static partial void ModifyDosisIii_24312(ref IBaseAction action); +public static IBaseAction Create24313() +{ + IBaseAction action = new BaseAction(ActionID.PhlegmaIii_PvE); + ModifyPhlegmaIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24313"><strong>Phlegma III</strong></see> <i>PvE</i> (SGE) [24313] [Spell] +/// </summary> +static partial void ModifyPhlegmaIii_24313(ref IBaseAction action); +public static IBaseAction Create24314() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianDosisIii_PvE); + ModifyEukrasianDosisIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24314"><strong>Eukrasian Dosis III</strong></see> <i>PvE</i> (SGE) [24314] [Spell] +/// </summary> +static partial void ModifyEukrasianDosisIii_24314(ref IBaseAction action); +public static IBaseAction Create24315() +{ + IBaseAction action = new BaseAction(ActionID.DyskrasiaIi_PvE); + ModifyDyskrasiaIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24315"><strong>Dyskrasia II</strong></see> <i>PvE</i> (SGE) [24315] [Spell] +/// </summary> +static partial void ModifyDyskrasiaIi_24315(ref IBaseAction action); +public static IBaseAction Create24316() +{ + IBaseAction action = new BaseAction(ActionID.ToxikonIi_PvE); + ModifyToxikonIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24316"><strong>Toxikon II</strong></see> <i>PvE</i> (SGE) [24316] [Spell] +/// </summary> +static partial void ModifyToxikonIi_24316(ref IBaseAction action); +public static IBaseAction Create24317() +{ + IBaseAction action = new BaseAction(ActionID.Krasis_PvE); + ModifyKrasis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24317"><strong>Krasis</strong></see> <i>PvE</i> (SGE) [24317] [Ability] +/// </summary> +static partial void ModifyKrasis_24317(ref IBaseAction action); +public static IBaseAction Create24318() +{ + IBaseAction action = new BaseAction(ActionID.Pneuma_PvE); + ModifyPneuma_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24318"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [24318] [Spell] +/// </summary> +static partial void ModifyPneuma_24318(ref IBaseAction action); +public static IBaseAction Create24373() +{ + IBaseAction action = new BaseAction(ActionID.Slice_PvE); + ModifySlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24373"><strong>Slice</strong></see> <i>PvE</i> (RPR) [24373] [Weaponskill] +/// </summary> +static partial void ModifySlice_24373(ref IBaseAction action); +public static IBaseAction Create24374() +{ + IBaseAction action = new BaseAction(ActionID.WaxingSlice_PvE); + ModifyWaxingSlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24374"><strong>Waxing Slice</strong></see> <i>PvE</i> (RPR) [24374] [Weaponskill] +/// </summary> +static partial void ModifyWaxingSlice_24374(ref IBaseAction action); +public static IBaseAction Create24375() +{ + IBaseAction action = new BaseAction(ActionID.InfernalSlice_PvE); + ModifyInfernalSlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24375"><strong>Infernal Slice</strong></see> <i>PvE</i> (RPR) [24375] [Weaponskill] +/// </summary> +static partial void ModifyInfernalSlice_24375(ref IBaseAction action); +public static IBaseAction Create24376() +{ + IBaseAction action = new BaseAction(ActionID.SpinningScythe_PvE); + ModifySpinningScythe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24376"><strong>Spinning Scythe</strong></see> <i>PvE</i> (RPR) [24376] [Weaponskill] +/// </summary> +static partial void ModifySpinningScythe_24376(ref IBaseAction action); +public static IBaseAction Create24377() +{ + IBaseAction action = new BaseAction(ActionID.NightmareScythe_PvE); + ModifyNightmareScythe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24377"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (RPR) [24377] [Weaponskill] +/// </summary> +static partial void ModifyNightmareScythe_24377(ref IBaseAction action); +public static IBaseAction Create24378() +{ + IBaseAction action = new BaseAction(ActionID.ShadowOfDeath_PvE); + ModifyShadowOfDeath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24378"><strong>Shadow of Death</strong></see> <i>PvE</i> (RPR) [24378] [Weaponskill] +/// </summary> +static partial void ModifyShadowOfDeath_24378(ref IBaseAction action); +public static IBaseAction Create24379() +{ + IBaseAction action = new BaseAction(ActionID.WhorlOfDeath_PvE); + ModifyWhorlOfDeath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24379"><strong>Whorl of Death</strong></see> <i>PvE</i> (RPR) [24379] [Weaponskill] +/// </summary> +static partial void ModifyWhorlOfDeath_24379(ref IBaseAction action); +public static IBaseAction Create24380() +{ + IBaseAction action = new BaseAction(ActionID.SoulSlice_PvE); + ModifySoulSlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24380"><strong>Soul Slice</strong></see> <i>PvE</i> (RPR) [24380] [Weaponskill] +/// </summary> +static partial void ModifySoulSlice_24380(ref IBaseAction action); +public static IBaseAction Create24381() +{ + IBaseAction action = new BaseAction(ActionID.SoulScythe_PvE); + ModifySoulScythe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24381"><strong>Soul Scythe</strong></see> <i>PvE</i> (RPR) [24381] [Weaponskill] +/// </summary> +static partial void ModifySoulScythe_24381(ref IBaseAction action); +public static IBaseAction Create24382() +{ + IBaseAction action = new BaseAction(ActionID.Gibbet_PvE); + ModifyGibbet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24382"><strong>Gibbet</strong></see> <i>PvE</i> (RPR) [24382] [Weaponskill] +/// </summary> +static partial void ModifyGibbet_24382(ref IBaseAction action); +public static IBaseAction Create24383() +{ + IBaseAction action = new BaseAction(ActionID.Gallows_PvE); + ModifyGallows_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24383"><strong>Gallows</strong></see> <i>PvE</i> (RPR) [24383] [Weaponskill] +/// </summary> +static partial void ModifyGallows_24383(ref IBaseAction action); +public static IBaseAction Create24384() +{ + IBaseAction action = new BaseAction(ActionID.Guillotine_PvE); + ModifyGuillotine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24384"><strong>Guillotine</strong></see> <i>PvE</i> (RPR) [24384] [Weaponskill] +/// </summary> +static partial void ModifyGuillotine_24384(ref IBaseAction action); +public static IBaseAction Create24385() +{ + IBaseAction action = new BaseAction(ActionID.PlentifulHarvest_PvE); + ModifyPlentifulHarvest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24385"><strong>Plentiful Harvest</strong></see> <i>PvE</i> (RPR) [24385] [Weaponskill] +/// </summary> +static partial void ModifyPlentifulHarvest_24385(ref IBaseAction action); +public static IBaseAction Create24386() +{ + IBaseAction action = new BaseAction(ActionID.Harpe_PvE); + ModifyHarpe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24386"><strong>Harpe</strong></see> <i>PvE</i> (RPR) [24386] [Spell] +/// </summary> +static partial void ModifyHarpe_24386(ref IBaseAction action); +public static IBaseAction Create24387() +{ + IBaseAction action = new BaseAction(ActionID.Soulsow_PvE); + ModifySoulsow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24387"><strong>Soulsow</strong></see> <i>PvE</i> (RPR) [24387] [Spell] +/// </summary> +static partial void ModifySoulsow_24387(ref IBaseAction action); +public static IBaseAction Create24388() +{ + IBaseAction action = new BaseAction(ActionID.HarvestMoon_PvE); + ModifyHarvestMoon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24388"><strong>Harvest Moon</strong></see> <i>PvE</i> (RPR) [24388] [Spell] +/// </summary> +static partial void ModifyHarvestMoon_24388(ref IBaseAction action); +public static IBaseAction Create24389() +{ + IBaseAction action = new BaseAction(ActionID.BloodStalk_PvE); + ModifyBloodStalk_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24389"><strong>Blood Stalk</strong></see> <i>PvE</i> (RPR) [24389] [Ability] +/// </summary> +static partial void ModifyBloodStalk_24389(ref IBaseAction action); +public static IBaseAction Create24390() +{ + IBaseAction action = new BaseAction(ActionID.UnveiledGibbet_PvE); + ModifyUnveiledGibbet_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24390"><strong>Unveiled Gibbet</strong></see> <i>PvE</i> (RPR) [24390] [Ability] +/// </summary> +static partial void ModifyUnveiledGibbet_24390(ref IBaseAction action); +public static IBaseAction Create24391() +{ + IBaseAction action = new BaseAction(ActionID.UnveiledGallows_PvE); + ModifyUnveiledGallows_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24391"><strong>Unveiled Gallows</strong></see> <i>PvE</i> (RPR) [24391] [Ability] +/// </summary> +static partial void ModifyUnveiledGallows_24391(ref IBaseAction action); +public static IBaseAction Create24392() +{ + IBaseAction action = new BaseAction(ActionID.GrimSwathe_PvE); + ModifyGrimSwathe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24392"><strong>Grim Swathe</strong></see> <i>PvE</i> (RPR) [24392] [Ability] +/// </summary> +static partial void ModifyGrimSwathe_24392(ref IBaseAction action); +public static IBaseAction Create24393() +{ + IBaseAction action = new BaseAction(ActionID.Gluttony_PvE); + ModifyGluttony_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24393"><strong>Gluttony</strong></see> <i>PvE</i> (RPR) [24393] [Ability] +/// </summary> +static partial void ModifyGluttony_24393(ref IBaseAction action); +public static IBaseAction Create24394() +{ + IBaseAction action = new BaseAction(ActionID.Enshroud_PvE); + ModifyEnshroud_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24394"><strong>Enshroud</strong></see> <i>PvE</i> (RPR) [24394] [Ability] +/// </summary> +static partial void ModifyEnshroud_24394(ref IBaseAction action); +public static IBaseAction Create24395() +{ + IBaseAction action = new BaseAction(ActionID.VoidReaping_PvE); + ModifyVoidReaping_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24395"><strong>Void Reaping</strong></see> <i>PvE</i> (RPR) [24395] [Weaponskill] +/// </summary> +static partial void ModifyVoidReaping_24395(ref IBaseAction action); +public static IBaseAction Create24396() +{ + IBaseAction action = new BaseAction(ActionID.CrossReaping_PvE); + ModifyCrossReaping_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24396"><strong>Cross Reaping</strong></see> <i>PvE</i> (RPR) [24396] [Weaponskill] +/// </summary> +static partial void ModifyCrossReaping_24396(ref IBaseAction action); +public static IBaseAction Create24397() +{ + IBaseAction action = new BaseAction(ActionID.GrimReaping_PvE); + ModifyGrimReaping_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24397"><strong>Grim Reaping</strong></see> <i>PvE</i> (RPR) [24397] [Weaponskill] +/// </summary> +static partial void ModifyGrimReaping_24397(ref IBaseAction action); +public static IBaseAction Create24398() +{ + IBaseAction action = new BaseAction(ActionID.Communio_PvE); + ModifyCommunio_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24398"><strong>Communio</strong></see> <i>PvE</i> (RPR) [24398] [Spell] +/// </summary> +static partial void ModifyCommunio_24398(ref IBaseAction action); +public static IBaseAction Create24399() +{ + IBaseAction action = new BaseAction(ActionID.LemuresSlice_PvE); + ModifyLemuresSlice_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24399"><strong>Lemure's Slice</strong></see> <i>PvE</i> (RPR) [24399] [Ability] +/// </summary> +static partial void ModifyLemuresSlice_24399(ref IBaseAction action); +public static IBaseAction Create24400() +{ + IBaseAction action = new BaseAction(ActionID.LemuresScythe_PvE); + ModifyLemuresScythe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24400"><strong>Lemure's Scythe</strong></see> <i>PvE</i> (RPR) [24400] [Ability] +/// </summary> +static partial void ModifyLemuresScythe_24400(ref IBaseAction action); +public static IBaseAction Create24401() +{ + IBaseAction action = new BaseAction(ActionID.HellsIngress_PvE); + ModifyHellsIngress_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24401"><strong>Hell's Ingress</strong></see> <i>PvE</i> (RPR) [24401] [Ability] +/// </summary> +static partial void ModifyHellsIngress_24401(ref IBaseAction action); +public static IBaseAction Create24402() +{ + IBaseAction action = new BaseAction(ActionID.HellsEgress_PvE); + ModifyHellsEgress_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24402"><strong>Hell's Egress</strong></see> <i>PvE</i> (RPR) [24402] [Ability] +/// </summary> +static partial void ModifyHellsEgress_24402(ref IBaseAction action); +public static IBaseAction Create24403() +{ + IBaseAction action = new BaseAction(ActionID.Regress_PvE); + ModifyRegress_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24403"><strong>Regress</strong></see> <i>PvE</i> (RPR) [24403] [Ability] +/// </summary> +static partial void ModifyRegress_24403(ref IBaseAction action); +public static IBaseAction Create24404() +{ + IBaseAction action = new BaseAction(ActionID.ArcaneCrest_PvE); + ModifyArcaneCrest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24404"><strong>Arcane Crest</strong></see> <i>PvE</i> (RPR) [24404] [Ability] +/// </summary> +static partial void ModifyArcaneCrest_24404(ref IBaseAction action); +public static IBaseAction Create24405() +{ + IBaseAction action = new BaseAction(ActionID.ArcaneCircle_PvE); + ModifyArcaneCircle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24405"><strong>Arcane Circle</strong></see> <i>PvE</i> (RPR) [24405] [Ability] +/// </summary> +static partial void ModifyArcaneCircle_24405(ref IBaseAction action); +public static IBaseAction Create24619() +{ + IBaseAction action = new BaseAction(ActionID.LiminalFire_PvE); + ModifyLiminalFire_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24619"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill] +/// </summary> +static partial void ModifyLiminalFire_24619(ref IBaseAction action); +public static IBaseAction Create24620() +{ + IBaseAction action = new BaseAction(ActionID.LiminalFire_PvE_24620); + ModifyLiminalFire_PvE_24620(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24620"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill] +/// </summary> +static partial void ModifyLiminalFire_24620(ref IBaseAction action); +public static IBaseAction Create24621() +{ + IBaseAction action = new BaseAction(ActionID.F0Switch_PvE); + ModifyF0Switch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24621"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability] +/// </summary> +static partial void ModifyF0Switch_24621(ref IBaseAction action); +public static IBaseAction Create24622() +{ + IBaseAction action = new BaseAction(ActionID.F0Switch_PvE_24622); + ModifyF0Switch_PvE_24622(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24622"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability] +/// </summary> +static partial void ModifyF0Switch_24622(ref IBaseAction action); +public static IBaseAction Create24831() +{ + IBaseAction action = new BaseAction(ActionID.Scorch_PvE_24831); + ModifyScorch_PvE_24831(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24831"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell] +/// </summary> +static partial void ModifyScorch_24831(ref IBaseAction action); +public static IBaseAction Create24858() +{ + IBaseAction action = new BaseAction(ActionID.TheEnd_PvE); + ModifyTheEnd_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24858"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break] +/// </summary> +static partial void ModifyTheEnd_24858(ref IBaseAction action); +public static IBaseAction Create24859() +{ + IBaseAction action = new BaseAction(ActionID.TechneMakre_PvE); + ModifyTechneMakre_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24859"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break] +/// </summary> +static partial void ModifyTechneMakre_24859(ref IBaseAction action); +public static IBaseAction Create24898() +{ + IBaseAction action = new BaseAction(ActionID.Scorch_PvE_24898); + ModifyScorch_PvE_24898(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24898"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell] +/// </summary> +static partial void ModifyScorch_24898(ref IBaseAction action); +public static IBaseAction Create24917() +{ + IBaseAction action = new BaseAction(ActionID.Corpsacorps_PvE_24917); + ModifyCorpsacorps_PvE_24917(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24917"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability] +/// </summary> +static partial void ModifyCorpsacorps_24917(ref IBaseAction action); +public static IBaseAction Create24918() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRiposte_PvE_24918); + ModifyEnchantedRiposte_PvE_24918(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24918"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRiposte_24918(ref IBaseAction action); +public static IBaseAction Create24919() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedZwerchhau_PvE_24919); + ModifyEnchantedZwerchhau_PvE_24919(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24919"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedZwerchhau_24919(ref IBaseAction action); +public static IBaseAction Create24920() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRedoublement_PvE_24920); + ModifyEnchantedRedoublement_PvE_24920(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/24920"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRedoublement_24920(ref IBaseAction action); +public static IBaseAction Create25133() +{ + IBaseAction action = new BaseAction(ActionID.MedicalKit_PvE); + ModifyMedicalKit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25133"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability] +/// </summary> +static partial void ModifyMedicalKit_25133(ref IBaseAction action); +public static IBaseAction Create25589() +{ + IBaseAction action = new BaseAction(ActionID.MountaineersGiftIi_PvE); + ModifyMountaineersGiftIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25589"><strong>Mountaineer's Gift II</strong></see> <i>PvE</i> (MIN) [25589] [DoL Ability] +/// </summary> +static partial void ModifyMountaineersGiftIi_25589(ref IBaseAction action); +public static IBaseAction Create25590() +{ + IBaseAction action = new BaseAction(ActionID.PioneersGiftIi_PvE); + ModifyPioneersGiftIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25590"><strong>Pioneer's Gift II</strong></see> <i>PvE</i> (BTN) [25590] [DoL Ability] +/// </summary> +static partial void ModifyPioneersGiftIi_25590(ref IBaseAction action); +public static IBaseAction Create25746() +{ + IBaseAction action = new BaseAction(ActionID.HolySheltron_PvE); + ModifyHolySheltron_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25746"><strong>Holy Sheltron</strong></see> <i>PvE</i> (PLD) [25746] [Ability] +/// </summary> +static partial void ModifyHolySheltron_25746(ref IBaseAction action); +public static IBaseAction Create25747() +{ + IBaseAction action = new BaseAction(ActionID.Expiacion_PvE); + ModifyExpiacion_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25747"><strong>Expiacion</strong></see> <i>PvE</i> (PLD) [25747] [Ability] +/// </summary> +static partial void ModifyExpiacion_25747(ref IBaseAction action); +public static IBaseAction Create25748() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfFaith_PvE); + ModifyBladeOfFaith_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25748"><strong>Blade of Faith</strong></see> <i>PvE</i> (PLD) [25748] [Spell] +/// </summary> +static partial void ModifyBladeOfFaith_25748(ref IBaseAction action); +public static IBaseAction Create25749() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfTruth_PvE); + ModifyBladeOfTruth_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25749"><strong>Blade of Truth</strong></see> <i>PvE</i> (PLD) [25749] [Spell] +/// </summary> +static partial void ModifyBladeOfTruth_25749(ref IBaseAction action); +public static IBaseAction Create25750() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfValor_PvE); + ModifyBladeOfValor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25750"><strong>Blade of Valor</strong></see> <i>PvE</i> (PLD) [25750] [Spell] +/// </summary> +static partial void ModifyBladeOfValor_25750(ref IBaseAction action); +public static IBaseAction Create25751() +{ + IBaseAction action = new BaseAction(ActionID.Bloodwhetting_PvE); + ModifyBloodwhetting_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25751"><strong>Bloodwhetting</strong></see> <i>PvE</i> (WAR) [25751] [Ability] +/// </summary> +static partial void ModifyBloodwhetting_25751(ref IBaseAction action); +public static IBaseAction Create25752() +{ + IBaseAction action = new BaseAction(ActionID.Orogeny_PvE); + ModifyOrogeny_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25752"><strong>Orogeny</strong></see> <i>PvE</i> (WAR) [25752] [Ability] +/// </summary> +static partial void ModifyOrogeny_25752(ref IBaseAction action); +public static IBaseAction Create25753() +{ + IBaseAction action = new BaseAction(ActionID.PrimalRend_PvE); + ModifyPrimalRend_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25753"><strong>Primal Rend</strong></see> <i>PvE</i> (WAR) [25753] [Weaponskill] +/// </summary> +static partial void ModifyPrimalRend_25753(ref IBaseAction action); +public static IBaseAction Create25754() +{ + IBaseAction action = new BaseAction(ActionID.Oblation_PvE); + ModifyOblation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25754"><strong>Oblation</strong></see> <i>PvE</i> (DRK) [25754] [Ability] +/// </summary> +static partial void ModifyOblation_25754(ref IBaseAction action); +public static IBaseAction Create25755() +{ + IBaseAction action = new BaseAction(ActionID.SaltAndDarkness_PvE); + ModifySaltAndDarkness_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25755"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25755] [Ability] +/// </summary> +static partial void ModifySaltAndDarkness_25755(ref IBaseAction action); +public static IBaseAction Create25756() +{ + IBaseAction action = new BaseAction(ActionID.SaltAndDarkness_PvE_25756); + ModifySaltAndDarkness_PvE_25756(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25756"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25756] [Ability] +/// </summary> +static partial void ModifySaltAndDarkness_25756(ref IBaseAction action); +public static IBaseAction Create25757() +{ + IBaseAction action = new BaseAction(ActionID.Shadowbringer_PvE); + ModifyShadowbringer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25757"><strong>Shadowbringer</strong></see> <i>PvE</i> (DRK) [25757] [Ability] +/// </summary> +static partial void ModifyShadowbringer_25757(ref IBaseAction action); +public static IBaseAction Create25758() +{ + IBaseAction action = new BaseAction(ActionID.HeartOfCorundum_PvE); + ModifyHeartOfCorundum_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25758"><strong>Heart of Corundum</strong></see> <i>PvE</i> (GNB) [25758] [Ability] +/// </summary> +static partial void ModifyHeartOfCorundum_25758(ref IBaseAction action); +public static IBaseAction Create25759() +{ + IBaseAction action = new BaseAction(ActionID.Hypervelocity_PvE); + ModifyHypervelocity_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25759"><strong>Hypervelocity</strong></see> <i>PvE</i> (GNB) [25759] [Ability] +/// </summary> +static partial void ModifyHypervelocity_25759(ref IBaseAction action); +public static IBaseAction Create25760() +{ + IBaseAction action = new BaseAction(ActionID.DoubleDown_PvE); + ModifyDoubleDown_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25760"><strong>Double Down</strong></see> <i>PvE</i> (GNB) [25760] [Weaponskill] +/// </summary> +static partial void ModifyDoubleDown_25760(ref IBaseAction action); +public static IBaseAction Create25761() +{ + IBaseAction action = new BaseAction(ActionID.SteelPeak_PvE); + ModifySteelPeak_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25761"><strong>Steel Peak</strong></see> <i>PvE</i> (PGL MNK) [25761] [Ability] +/// </summary> +static partial void ModifySteelPeak_25761(ref IBaseAction action); +public static IBaseAction Create25762() +{ + IBaseAction action = new BaseAction(ActionID.Thunderclap_PvE); + ModifyThunderclap_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25762"><strong>Thunderclap</strong></see> <i>PvE</i> (MNK) [25762] [Ability] +/// </summary> +static partial void ModifyThunderclap_25762(ref IBaseAction action); +public static IBaseAction Create25763() +{ + IBaseAction action = new BaseAction(ActionID.HowlingFist_PvE); + ModifyHowlingFist_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25763"><strong>Howling Fist</strong></see> <i>PvE</i> (MNK) [25763] [Ability] +/// </summary> +static partial void ModifyHowlingFist_25763(ref IBaseAction action); +public static IBaseAction Create25764() +{ + IBaseAction action = new BaseAction(ActionID.MasterfulBlitz_PvE); + ModifyMasterfulBlitz_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25764"><strong>Masterful Blitz</strong></see> <i>PvE</i> (MNK) [25764] [Weaponskill] +/// </summary> +static partial void ModifyMasterfulBlitz_25764(ref IBaseAction action); +public static IBaseAction Create25765() +{ + IBaseAction action = new BaseAction(ActionID.CelestialRevolution_PvE); + ModifyCelestialRevolution_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25765"><strong>Celestial Revolution</strong></see> <i>PvE</i> (MNK) [25765] [Weaponskill] +/// </summary> +static partial void ModifyCelestialRevolution_25765(ref IBaseAction action); +public static IBaseAction Create25766() +{ + IBaseAction action = new BaseAction(ActionID.RiddleOfWind_PvE); + ModifyRiddleOfWind_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25766"><strong>Riddle of Wind</strong></see> <i>PvE</i> (MNK) [25766] [Ability] +/// </summary> +static partial void ModifyRiddleOfWind_25766(ref IBaseAction action); +public static IBaseAction Create25767() +{ + IBaseAction action = new BaseAction(ActionID.ShadowOfTheDestroyer_PvE); + ModifyShadowOfTheDestroyer_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25767"><strong>Shadow of the Destroyer</strong></see> <i>PvE</i> (MNK) [25767] [Weaponskill] +/// </summary> +static partial void ModifyShadowOfTheDestroyer_25767(ref IBaseAction action); +public static IBaseAction Create25768() +{ + IBaseAction action = new BaseAction(ActionID.RisingPhoenix_PvE); + ModifyRisingPhoenix_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25768"><strong>Rising Phoenix</strong></see> <i>PvE</i> (MNK) [25768] [Weaponskill] +/// </summary> +static partial void ModifyRisingPhoenix_25768(ref IBaseAction action); +public static IBaseAction Create25769() +{ + IBaseAction action = new BaseAction(ActionID.PhantomRush_PvE); + ModifyPhantomRush_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25769"><strong>Phantom Rush</strong></see> <i>PvE</i> (MNK) [25769] [Weaponskill] +/// </summary> +static partial void ModifyPhantomRush_25769(ref IBaseAction action); +public static IBaseAction Create25770() +{ + IBaseAction action = new BaseAction(ActionID.DraconianFury_PvE); + ModifyDraconianFury_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25770"><strong>Draconian Fury</strong></see> <i>PvE</i> (DRG) [25770] [Weaponskill] +/// </summary> +static partial void ModifyDraconianFury_25770(ref IBaseAction action); +public static IBaseAction Create25771() +{ + IBaseAction action = new BaseAction(ActionID.HeavensThrust_PvE); + ModifyHeavensThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25771"><strong>Heavens' Thrust</strong></see> <i>PvE</i> (DRG) [25771] [Weaponskill] +/// </summary> +static partial void ModifyHeavensThrust_25771(ref IBaseAction action); +public static IBaseAction Create25772() +{ + IBaseAction action = new BaseAction(ActionID.ChaoticSpring_PvE); + ModifyChaoticSpring_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25772"><strong>Chaotic Spring</strong></see> <i>PvE</i> (DRG) [25772] [Weaponskill] +/// </summary> +static partial void ModifyChaoticSpring_25772(ref IBaseAction action); +public static IBaseAction Create25773() +{ + IBaseAction action = new BaseAction(ActionID.WyrmwindThrust_PvE); + ModifyWyrmwindThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25773"><strong>Wyrmwind Thrust</strong></see> <i>PvE</i> (DRG) [25773] [Ability] +/// </summary> +static partial void ModifyWyrmwindThrust_25773(ref IBaseAction action); +public static IBaseAction Create25774() +{ + IBaseAction action = new BaseAction(ActionID.PhantomKamaitachi_PvE); + ModifyPhantomKamaitachi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25774"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25774] [Weaponskill] +/// </summary> +static partial void ModifyPhantomKamaitachi_25774(ref IBaseAction action); +public static IBaseAction Create25775() +{ + IBaseAction action = new BaseAction(ActionID.PhantomKamaitachi_PvE_25775); + ModifyPhantomKamaitachi_PvE_25775(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25775"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25775] [Weaponskill] +/// </summary> +static partial void ModifyPhantomKamaitachi_25775(ref IBaseAction action); +public static IBaseAction Create25776() +{ + IBaseAction action = new BaseAction(ActionID.HollowNozuchi_PvE); + ModifyHollowNozuchi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25776"><strong>Hollow Nozuchi</strong></see> <i>PvE</i> (NIN) [25776] [Ability] +/// </summary> +static partial void ModifyHollowNozuchi_25776(ref IBaseAction action); +public static IBaseAction Create25777() +{ + IBaseAction action = new BaseAction(ActionID.ForkedRaiju_PvE); + ModifyForkedRaiju_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25777"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25777] [Weaponskill] +/// </summary> +static partial void ModifyForkedRaiju_25777(ref IBaseAction action); +public static IBaseAction Create25778() +{ + IBaseAction action = new BaseAction(ActionID.FleetingRaiju_PvE); + ModifyFleetingRaiju_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25778"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25778] [Weaponskill] +/// </summary> +static partial void ModifyFleetingRaiju_25778(ref IBaseAction action); +public static IBaseAction Create25779() +{ + IBaseAction action = new BaseAction(ActionID.ShohaIi_PvE); + ModifyShohaIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25779"><strong>Shoha II</strong></see> <i>PvE</i> (SAM) [25779] [Ability] +/// </summary> +static partial void ModifyShohaIi_25779(ref IBaseAction action); +public static IBaseAction Create25780() +{ + IBaseAction action = new BaseAction(ActionID.Fuko_PvE); + ModifyFuko_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25780"><strong>Fuko</strong></see> <i>PvE</i> (SAM) [25780] [Weaponskill] +/// </summary> +static partial void ModifyFuko_25780(ref IBaseAction action); +public static IBaseAction Create25781() +{ + IBaseAction action = new BaseAction(ActionID.OgiNamikiri_PvE); + ModifyOgiNamikiri_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25781"><strong>Ogi Namikiri</strong></see> <i>PvE</i> (SAM) [25781] [Weaponskill] +/// </summary> +static partial void ModifyOgiNamikiri_25781(ref IBaseAction action); +public static IBaseAction Create25782() +{ + IBaseAction action = new BaseAction(ActionID.KaeshiNamikiri_PvE); + ModifyKaeshiNamikiri_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25782"><strong>Kaeshi: Namikiri</strong></see> <i>PvE</i> (SAM) [25782] [Ability] +/// </summary> +static partial void ModifyKaeshiNamikiri_25782(ref IBaseAction action); +public static IBaseAction Create25783() +{ + IBaseAction action = new BaseAction(ActionID.Ladonsbite_PvE); + ModifyLadonsbite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25783"><strong>Ladonsbite</strong></see> <i>PvE</i> (BRD) [25783] [Weaponskill] +/// </summary> +static partial void ModifyLadonsbite_25783(ref IBaseAction action); +public static IBaseAction Create25784() +{ + IBaseAction action = new BaseAction(ActionID.BlastArrow_PvE); + ModifyBlastArrow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25784"><strong>Blast Arrow</strong></see> <i>PvE</i> (BRD) [25784] [Weaponskill] +/// </summary> +static partial void ModifyBlastArrow_25784(ref IBaseAction action); +public static IBaseAction Create25785() +{ + IBaseAction action = new BaseAction(ActionID.RadiantFinale_PvE); + ModifyRadiantFinale_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25785"><strong>Radiant Finale</strong></see> <i>PvE</i> (BRD) [25785] [Ability] +/// </summary> +static partial void ModifyRadiantFinale_25785(ref IBaseAction action); +public static IBaseAction Create25786() +{ + IBaseAction action = new BaseAction(ActionID.Scattergun_PvE); + ModifyScattergun_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25786"><strong>Scattergun</strong></see> <i>PvE</i> (MCH) [25786] [Weaponskill] +/// </summary> +static partial void ModifyScattergun_25786(ref IBaseAction action); +public static IBaseAction Create25787() +{ + IBaseAction action = new BaseAction(ActionID.CrownedCollider_PvE); + ModifyCrownedCollider_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25787"><strong>Crowned Collider</strong></see> <i>PvE</i> (MCH) [25787] [Ability] +/// </summary> +static partial void ModifyCrownedCollider_25787(ref IBaseAction action); +public static IBaseAction Create25788() +{ + IBaseAction action = new BaseAction(ActionID.ChainSaw_PvE); + ModifyChainSaw_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25788"><strong>Chain Saw</strong></see> <i>PvE</i> (MCH) [25788] [Weaponskill] +/// </summary> +static partial void ModifyChainSaw_25788(ref IBaseAction action); +public static IBaseAction Create25789() +{ + IBaseAction action = new BaseAction(ActionID.ImprovisedFinish_PvE); + ModifyImprovisedFinish_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25789"><strong>Improvised Finish</strong></see> <i>PvE</i> (DNC) [25789] [Ability] +/// </summary> +static partial void ModifyImprovisedFinish_25789(ref IBaseAction action); +public static IBaseAction Create25790() +{ + IBaseAction action = new BaseAction(ActionID.Tillana_PvE); + ModifyTillana_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25790"><strong>Tillana</strong></see> <i>PvE</i> (DNC) [25790] [Weaponskill] +/// </summary> +static partial void ModifyTillana_25790(ref IBaseAction action); +public static IBaseAction Create25791() +{ + IBaseAction action = new BaseAction(ActionID.FanDanceIv_PvE); + ModifyFanDanceIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25791"><strong>Fan Dance IV</strong></see> <i>PvE</i> (DNC) [25791] [Ability] +/// </summary> +static partial void ModifyFanDanceIv_25791(ref IBaseAction action); +public static IBaseAction Create25792() +{ + IBaseAction action = new BaseAction(ActionID.StarfallDance_PvE); + ModifyStarfallDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25792"><strong>Starfall Dance</strong></see> <i>PvE</i> (DNC) [25792] [Weaponskill] +/// </summary> +static partial void ModifyStarfallDance_25792(ref IBaseAction action); +public static IBaseAction Create25793() +{ + IBaseAction action = new BaseAction(ActionID.BlizzardIi_PvE); + ModifyBlizzardIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25793"><strong>Blizzard II</strong></see> <i>PvE</i> (THM BLM) [25793] [Spell] +/// </summary> +static partial void ModifyBlizzardIi_25793(ref IBaseAction action); +public static IBaseAction Create25794() +{ + IBaseAction action = new BaseAction(ActionID.HighFireIi_PvE); + ModifyHighFireIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25794"><strong>High Fire II</strong></see> <i>PvE</i> (BLM) [25794] [Spell] +/// </summary> +static partial void ModifyHighFireIi_25794(ref IBaseAction action); +public static IBaseAction Create25795() +{ + IBaseAction action = new BaseAction(ActionID.HighBlizzardIi_PvE); + ModifyHighBlizzardIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25795"><strong>High Blizzard II</strong></see> <i>PvE</i> (BLM) [25795] [Spell] +/// </summary> +static partial void ModifyHighBlizzardIi_25795(ref IBaseAction action); +public static IBaseAction Create25796() +{ + IBaseAction action = new BaseAction(ActionID.Amplifier_PvE); + ModifyAmplifier_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25796"><strong>Amplifier</strong></see> <i>PvE</i> (BLM) [25796] [Ability] +/// </summary> +static partial void ModifyAmplifier_25796(ref IBaseAction action); +public static IBaseAction Create25797() +{ + IBaseAction action = new BaseAction(ActionID.Paradox_PvE); + ModifyParadox_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25797"><strong>Paradox</strong></see> <i>PvE</i> (BLM) [25797] [Spell] +/// </summary> +static partial void ModifyParadox_25797(ref IBaseAction action); +public static IBaseAction Create25798() +{ + IBaseAction action = new BaseAction(ActionID.SummonCarbuncle_PvE); + ModifySummonCarbuncle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25798"><strong>Summon Carbuncle</strong></see> <i>PvE</i> (ACN SMN) [25798] [Spell] +/// </summary> +static partial void ModifySummonCarbuncle_25798(ref IBaseAction action); +public static IBaseAction Create25799() +{ + IBaseAction action = new BaseAction(ActionID.RadiantAegis_PvE); + ModifyRadiantAegis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25799"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25799] [Ability] +/// </summary> +static partial void ModifyRadiantAegis_25799(ref IBaseAction action); +public static IBaseAction Create25800() +{ + IBaseAction action = new BaseAction(ActionID.Aethercharge_PvE); + ModifyAethercharge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25800"><strong>Aethercharge</strong></see> <i>PvE</i> (ACN SMN) [25800] [Spell] +/// </summary> +static partial void ModifyAethercharge_25800(ref IBaseAction action); +public static IBaseAction Create25801() +{ + IBaseAction action = new BaseAction(ActionID.SearingLight_PvE); + ModifySearingLight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25801"><strong>Searing Light</strong></see> <i>PvE</i> (SMN) [25801] [Ability] +/// </summary> +static partial void ModifySearingLight_25801(ref IBaseAction action); +public static IBaseAction Create25802() +{ + IBaseAction action = new BaseAction(ActionID.SummonRuby_PvE); + ModifySummonRuby_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25802"><strong>Summon Ruby</strong></see> <i>PvE</i> (ACN SMN) [25802] [Spell] +/// </summary> +static partial void ModifySummonRuby_25802(ref IBaseAction action); +public static IBaseAction Create25803() +{ + IBaseAction action = new BaseAction(ActionID.SummonTopaz_PvE); + ModifySummonTopaz_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25803"><strong>Summon Topaz</strong></see> <i>PvE</i> (ACN SMN) [25803] [Spell] +/// </summary> +static partial void ModifySummonTopaz_25803(ref IBaseAction action); +public static IBaseAction Create25804() +{ + IBaseAction action = new BaseAction(ActionID.SummonEmerald_PvE); + ModifySummonEmerald_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25804"><strong>Summon Emerald</strong></see> <i>PvE</i> (ACN SMN) [25804] [Spell] +/// </summary> +static partial void ModifySummonEmerald_25804(ref IBaseAction action); +public static IBaseAction Create25805() +{ + IBaseAction action = new BaseAction(ActionID.SummonIfrit_PvE); + ModifySummonIfrit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25805"><strong>Summon Ifrit</strong></see> <i>PvE</i> (SMN) [25805] [Spell] +/// </summary> +static partial void ModifySummonIfrit_25805(ref IBaseAction action); +public static IBaseAction Create25806() +{ + IBaseAction action = new BaseAction(ActionID.SummonTitan_PvE); + ModifySummonTitan_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25806"><strong>Summon Titan</strong></see> <i>PvE</i> (SMN) [25806] [Spell] +/// </summary> +static partial void ModifySummonTitan_25806(ref IBaseAction action); +public static IBaseAction Create25807() +{ + IBaseAction action = new BaseAction(ActionID.SummonGaruda_PvE); + ModifySummonGaruda_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25807"><strong>Summon Garuda</strong></see> <i>PvE</i> (SMN) [25807] [Spell] +/// </summary> +static partial void ModifySummonGaruda_25807(ref IBaseAction action); +public static IBaseAction Create25808() +{ + IBaseAction action = new BaseAction(ActionID.RubyRuin_PvE); + ModifyRubyRuin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25808"><strong>Ruby Ruin</strong></see> <i>PvE</i> (ACN SMN) [25808] [Spell] +/// </summary> +static partial void ModifyRubyRuin_25808(ref IBaseAction action); +public static IBaseAction Create25809() +{ + IBaseAction action = new BaseAction(ActionID.TopazRuin_PvE); + ModifyTopazRuin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25809"><strong>Topaz Ruin</strong></see> <i>PvE</i> (ACN SMN) [25809] [Spell] +/// </summary> +static partial void ModifyTopazRuin_25809(ref IBaseAction action); +public static IBaseAction Create25810() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldRuin_PvE); + ModifyEmeraldRuin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25810"><strong>Emerald Ruin</strong></see> <i>PvE</i> (ACN SMN) [25810] [Spell] +/// </summary> +static partial void ModifyEmeraldRuin_25810(ref IBaseAction action); +public static IBaseAction Create25811() +{ + IBaseAction action = new BaseAction(ActionID.RubyRuinIi_PvE); + ModifyRubyRuinIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25811"><strong>Ruby Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25811] [Spell] +/// </summary> +static partial void ModifyRubyRuinIi_25811(ref IBaseAction action); +public static IBaseAction Create25812() +{ + IBaseAction action = new BaseAction(ActionID.TopazRuinIi_PvE); + ModifyTopazRuinIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25812"><strong>Topaz Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25812] [Spell] +/// </summary> +static partial void ModifyTopazRuinIi_25812(ref IBaseAction action); +public static IBaseAction Create25813() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldRuinIi_PvE); + ModifyEmeraldRuinIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25813"><strong>Emerald Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25813] [Spell] +/// </summary> +static partial void ModifyEmeraldRuinIi_25813(ref IBaseAction action); +public static IBaseAction Create25814() +{ + IBaseAction action = new BaseAction(ActionID.RubyOutburst_PvE); + ModifyRubyOutburst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25814"><strong>Ruby Outburst</strong></see> <i>PvE</i> (ACN SMN) [25814] [Spell] +/// </summary> +static partial void ModifyRubyOutburst_25814(ref IBaseAction action); +public static IBaseAction Create25815() +{ + IBaseAction action = new BaseAction(ActionID.TopazOutburst_PvE); + ModifyTopazOutburst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25815"><strong>Topaz Outburst</strong></see> <i>PvE</i> (ACN SMN) [25815] [Spell] +/// </summary> +static partial void ModifyTopazOutburst_25815(ref IBaseAction action); +public static IBaseAction Create25816() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldOutburst_PvE); + ModifyEmeraldOutburst_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25816"><strong>Emerald Outburst</strong></see> <i>PvE</i> (ACN SMN) [25816] [Spell] +/// </summary> +static partial void ModifyEmeraldOutburst_25816(ref IBaseAction action); +public static IBaseAction Create25817() +{ + IBaseAction action = new BaseAction(ActionID.RubyRuinIii_PvE); + ModifyRubyRuinIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25817"><strong>Ruby Ruin III</strong></see> <i>PvE</i> (SMN) [25817] [Spell] +/// </summary> +static partial void ModifyRubyRuinIii_25817(ref IBaseAction action); +public static IBaseAction Create25818() +{ + IBaseAction action = new BaseAction(ActionID.TopazRuinIii_PvE); + ModifyTopazRuinIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25818"><strong>Topaz Ruin III</strong></see> <i>PvE</i> (SMN) [25818] [Spell] +/// </summary> +static partial void ModifyTopazRuinIii_25818(ref IBaseAction action); +public static IBaseAction Create25819() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldRuinIii_PvE); + ModifyEmeraldRuinIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25819"><strong>Emerald Ruin III</strong></see> <i>PvE</i> (SMN) [25819] [Spell] +/// </summary> +static partial void ModifyEmeraldRuinIii_25819(ref IBaseAction action); +public static IBaseAction Create25820() +{ + IBaseAction action = new BaseAction(ActionID.AstralImpulse_PvE); + ModifyAstralImpulse_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25820"><strong>Astral Impulse</strong></see> <i>PvE</i> (SMN) [25820] [Spell] +/// </summary> +static partial void ModifyAstralImpulse_25820(ref IBaseAction action); +public static IBaseAction Create25821() +{ + IBaseAction action = new BaseAction(ActionID.AstralFlare_PvE); + ModifyAstralFlare_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25821"><strong>Astral Flare</strong></see> <i>PvE</i> (SMN) [25821] [Spell] +/// </summary> +static partial void ModifyAstralFlare_25821(ref IBaseAction action); +public static IBaseAction Create25822() +{ + IBaseAction action = new BaseAction(ActionID.AstralFlow_PvE); + ModifyAstralFlow_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25822"><strong>Astral Flow</strong></see> <i>PvE</i> (SMN) [25822] [Spell] +/// </summary> +static partial void ModifyAstralFlow_25822(ref IBaseAction action); +public static IBaseAction Create25823() +{ + IBaseAction action = new BaseAction(ActionID.RubyRite_PvE); + ModifyRubyRite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25823"><strong>Ruby Rite</strong></see> <i>PvE</i> (SMN) [25823] [Spell] +/// </summary> +static partial void ModifyRubyRite_25823(ref IBaseAction action); +public static IBaseAction Create25824() +{ + IBaseAction action = new BaseAction(ActionID.TopazRite_PvE); + ModifyTopazRite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25824"><strong>Topaz Rite</strong></see> <i>PvE</i> (SMN) [25824] [Spell] +/// </summary> +static partial void ModifyTopazRite_25824(ref IBaseAction action); +public static IBaseAction Create25825() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldRite_PvE); + ModifyEmeraldRite_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25825"><strong>Emerald Rite</strong></see> <i>PvE</i> (SMN) [25825] [Spell] +/// </summary> +static partial void ModifyEmeraldRite_25825(ref IBaseAction action); +public static IBaseAction Create25826() +{ + IBaseAction action = new BaseAction(ActionID.Tridisaster_PvE); + ModifyTridisaster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25826"><strong>Tri-disaster</strong></see> <i>PvE</i> (SMN) [25826] [Spell] +/// </summary> +static partial void ModifyTridisaster_25826(ref IBaseAction action); +public static IBaseAction Create25827() +{ + IBaseAction action = new BaseAction(ActionID.RubyDisaster_PvE); + ModifyRubyDisaster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25827"><strong>Ruby Disaster</strong></see> <i>PvE</i> (SMN) [25827] [Spell] +/// </summary> +static partial void ModifyRubyDisaster_25827(ref IBaseAction action); +public static IBaseAction Create25828() +{ + IBaseAction action = new BaseAction(ActionID.TopazDisaster_PvE); + ModifyTopazDisaster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25828"><strong>Topaz Disaster</strong></see> <i>PvE</i> (SMN) [25828] [Spell] +/// </summary> +static partial void ModifyTopazDisaster_25828(ref IBaseAction action); +public static IBaseAction Create25829() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldDisaster_PvE); + ModifyEmeraldDisaster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25829"><strong>Emerald Disaster</strong></see> <i>PvE</i> (SMN) [25829] [Spell] +/// </summary> +static partial void ModifyEmeraldDisaster_25829(ref IBaseAction action); +public static IBaseAction Create25830() +{ + IBaseAction action = new BaseAction(ActionID.Rekindle_PvE); + ModifyRekindle_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25830"><strong>Rekindle</strong></see> <i>PvE</i> (SMN) [25830] [Ability] +/// </summary> +static partial void ModifyRekindle_25830(ref IBaseAction action); +public static IBaseAction Create25831() +{ + IBaseAction action = new BaseAction(ActionID.SummonPhoenix_PvE); + ModifySummonPhoenix_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25831"><strong>Summon Phoenix</strong></see> <i>PvE</i> (SMN) [25831] [Spell] +/// </summary> +static partial void ModifySummonPhoenix_25831(ref IBaseAction action); +public static IBaseAction Create25832() +{ + IBaseAction action = new BaseAction(ActionID.RubyCatastrophe_PvE); + ModifyRubyCatastrophe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25832"><strong>Ruby Catastrophe</strong></see> <i>PvE</i> (SMN) [25832] [Spell] +/// </summary> +static partial void ModifyRubyCatastrophe_25832(ref IBaseAction action); +public static IBaseAction Create25833() +{ + IBaseAction action = new BaseAction(ActionID.TopazCatastrophe_PvE); + ModifyTopazCatastrophe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25833"><strong>Topaz Catastrophe</strong></see> <i>PvE</i> (SMN) [25833] [Spell] +/// </summary> +static partial void ModifyTopazCatastrophe_25833(ref IBaseAction action); +public static IBaseAction Create25834() +{ + IBaseAction action = new BaseAction(ActionID.EmeraldCatastrophe_PvE); + ModifyEmeraldCatastrophe_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25834"><strong>Emerald Catastrophe</strong></see> <i>PvE</i> (SMN) [25834] [Spell] +/// </summary> +static partial void ModifyEmeraldCatastrophe_25834(ref IBaseAction action); +public static IBaseAction Create25835() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonCyclone_PvE); + ModifyCrimsonCyclone_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25835"><strong>Crimson Cyclone</strong></see> <i>PvE</i> (SMN) [25835] [Spell] +/// </summary> +static partial void ModifyCrimsonCyclone_25835(ref IBaseAction action); +public static IBaseAction Create25836() +{ + IBaseAction action = new BaseAction(ActionID.MountainBuster_PvE_25836); + ModifyMountainBuster_PvE_25836(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25836"><strong>Mountain Buster</strong></see> <i>PvE</i> (SMN) [25836] [Ability] +/// </summary> +static partial void ModifyMountainBuster_25836(ref IBaseAction action); +public static IBaseAction Create25837() +{ + IBaseAction action = new BaseAction(ActionID.Slipstream_PvE); + ModifySlipstream_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25837"><strong>Slipstream</strong></see> <i>PvE</i> (SMN) [25837] [Spell] +/// </summary> +static partial void ModifySlipstream_25837(ref IBaseAction action); +public static IBaseAction Create25838() +{ + IBaseAction action = new BaseAction(ActionID.SummonIfritIi_PvE); + ModifySummonIfritIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25838"><strong>Summon Ifrit II</strong></see> <i>PvE</i> (SMN) [25838] [Spell] +/// </summary> +static partial void ModifySummonIfritIi_25838(ref IBaseAction action); +public static IBaseAction Create25839() +{ + IBaseAction action = new BaseAction(ActionID.SummonTitanIi_PvE); + ModifySummonTitanIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25839"><strong>Summon Titan II</strong></see> <i>PvE</i> (SMN) [25839] [Spell] +/// </summary> +static partial void ModifySummonTitanIi_25839(ref IBaseAction action); +public static IBaseAction Create25840() +{ + IBaseAction action = new BaseAction(ActionID.SummonGarudaIi_PvE); + ModifySummonGarudaIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25840"><strong>Summon Garuda II</strong></see> <i>PvE</i> (SMN) [25840] [Spell] +/// </summary> +static partial void ModifySummonGarudaIi_25840(ref IBaseAction action); +public static IBaseAction Create25841() +{ + IBaseAction action = new BaseAction(ActionID.RadiantAegis_PvE_25841); + ModifyRadiantAegis_PvE_25841(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25841"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25841] [Ability] +/// </summary> +static partial void ModifyRadiantAegis_25841(ref IBaseAction action); +public static IBaseAction Create25843() +{ + IBaseAction action = new BaseAction(ActionID.GlitteringRuby_PvE); + ModifyGlitteringRuby_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25843"><strong>Glittering Ruby</strong></see> <i>PvE</i> (ACN SMN) [25843] [Spell] +/// </summary> +static partial void ModifyGlitteringRuby_25843(ref IBaseAction action); +public static IBaseAction Create25844() +{ + IBaseAction action = new BaseAction(ActionID.GlitteringTopaz_PvE); + ModifyGlitteringTopaz_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25844"><strong>Glittering Topaz</strong></see> <i>PvE</i> (ACN SMN) [25844] [Spell] +/// </summary> +static partial void ModifyGlitteringTopaz_25844(ref IBaseAction action); +public static IBaseAction Create25845() +{ + IBaseAction action = new BaseAction(ActionID.GlitteringEmerald_PvE); + ModifyGlitteringEmerald_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25845"><strong>Glittering Emerald</strong></see> <i>PvE</i> (ACN SMN) [25845] [Spell] +/// </summary> +static partial void ModifyGlitteringEmerald_25845(ref IBaseAction action); +public static IBaseAction Create25846() +{ + IBaseAction action = new BaseAction(ActionID.BurningStrike_PvE); + ModifyBurningStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25846"><strong>Burning Strike</strong></see> <i>PvE</i> (SMN) [25846] [Spell] +/// </summary> +static partial void ModifyBurningStrike_25846(ref IBaseAction action); +public static IBaseAction Create25847() +{ + IBaseAction action = new BaseAction(ActionID.RockBuster_PvE); + ModifyRockBuster_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25847"><strong>Rock Buster</strong></see> <i>PvE</i> (SMN) [25847] [Spell] +/// </summary> +static partial void ModifyRockBuster_25847(ref IBaseAction action); +public static IBaseAction Create25848() +{ + IBaseAction action = new BaseAction(ActionID.AerialSlash_PvE); + ModifyAerialSlash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25848"><strong>Aerial Slash</strong></see> <i>PvE</i> (SMN) [25848] [Spell] +/// </summary> +static partial void ModifyAerialSlash_25848(ref IBaseAction action); +public static IBaseAction Create25849() +{ + IBaseAction action = new BaseAction(ActionID.Inferno_PvE); + ModifyInferno_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25849"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25849] [Spell] +/// </summary> +static partial void ModifyInferno_25849(ref IBaseAction action); +public static IBaseAction Create25850() +{ + IBaseAction action = new BaseAction(ActionID.EarthenFury_PvE); + ModifyEarthenFury_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25850"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25850] [Spell] +/// </summary> +static partial void ModifyEarthenFury_25850(ref IBaseAction action); +public static IBaseAction Create25851() +{ + IBaseAction action = new BaseAction(ActionID.AerialBlast_PvE); + ModifyAerialBlast_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25851"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25851] [Spell] +/// </summary> +static partial void ModifyAerialBlast_25851(ref IBaseAction action); +public static IBaseAction Create25852() +{ + IBaseAction action = new BaseAction(ActionID.Inferno_PvE_25852); + ModifyInferno_PvE_25852(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25852"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25852] [Spell] +/// </summary> +static partial void ModifyInferno_25852(ref IBaseAction action); +public static IBaseAction Create25853() +{ + IBaseAction action = new BaseAction(ActionID.EarthenFury_PvE_25853); + ModifyEarthenFury_PvE_25853(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25853"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25853] [Spell] +/// </summary> +static partial void ModifyEarthenFury_25853(ref IBaseAction action); +public static IBaseAction Create25854() +{ + IBaseAction action = new BaseAction(ActionID.AerialBlast_PvE_25854); + ModifyAerialBlast_PvE_25854(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25854"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25854] [Spell] +/// </summary> +static partial void ModifyAerialBlast_25854(ref IBaseAction action); +public static IBaseAction Create25855() +{ + IBaseAction action = new BaseAction(ActionID.VerthunderIii_PvE); + ModifyVerthunderIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25855"><strong>Verthunder III</strong></see> <i>PvE</i> (RDM) [25855] [Spell] +/// </summary> +static partial void ModifyVerthunderIii_25855(ref IBaseAction action); +public static IBaseAction Create25856() +{ + IBaseAction action = new BaseAction(ActionID.VeraeroIii_PvE); + ModifyVeraeroIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25856"><strong>Veraero III</strong></see> <i>PvE</i> (RDM) [25856] [Spell] +/// </summary> +static partial void ModifyVeraeroIii_25856(ref IBaseAction action); +public static IBaseAction Create25857() +{ + IBaseAction action = new BaseAction(ActionID.MagickBarrier_PvE); + ModifyMagickBarrier_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25857"><strong>Magick Barrier</strong></see> <i>PvE</i> (RDM) [25857] [Ability] +/// </summary> +static partial void ModifyMagickBarrier_25857(ref IBaseAction action); +public static IBaseAction Create25858() +{ + IBaseAction action = new BaseAction(ActionID.Resolution_PvE); + ModifyResolution_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25858"><strong>Resolution</strong></see> <i>PvE</i> (RDM) [25858] [Spell] +/// </summary> +static partial void ModifyResolution_25858(ref IBaseAction action); +public static IBaseAction Create25859() +{ + IBaseAction action = new BaseAction(ActionID.GlareIii_PvE); + ModifyGlareIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25859"><strong>Glare III</strong></see> <i>PvE</i> (WHM) [25859] [Spell] +/// </summary> +static partial void ModifyGlareIii_25859(ref IBaseAction action); +public static IBaseAction Create25860() +{ + IBaseAction action = new BaseAction(ActionID.HolyIii_PvE); + ModifyHolyIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25860"><strong>Holy III</strong></see> <i>PvE</i> (WHM) [25860] [Spell] +/// </summary> +static partial void ModifyHolyIii_25860(ref IBaseAction action); +public static IBaseAction Create25861() +{ + IBaseAction action = new BaseAction(ActionID.Aquaveil_PvE); + ModifyAquaveil_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25861"><strong>Aquaveil</strong></see> <i>PvE</i> (WHM) [25861] [Ability] +/// </summary> +static partial void ModifyAquaveil_25861(ref IBaseAction action); +public static IBaseAction Create25862() +{ + IBaseAction action = new BaseAction(ActionID.LiturgyOfTheBell_PvE); + ModifyLiturgyOfTheBell_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25862"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25862] [Ability] +/// </summary> +static partial void ModifyLiturgyOfTheBell_25862(ref IBaseAction action); +public static IBaseAction Create25863() +{ + IBaseAction action = new BaseAction(ActionID.LiturgyOfTheBell_PvE_25863); + ModifyLiturgyOfTheBell_PvE_25863(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25863"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25863] [Ability] +/// </summary> +static partial void ModifyLiturgyOfTheBell_25863(ref IBaseAction action); +public static IBaseAction Create25864() +{ + IBaseAction action = new BaseAction(ActionID.LiturgyOfTheBell_PvE_25864); + ModifyLiturgyOfTheBell_PvE_25864(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25864"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25864] [Ability] +/// </summary> +static partial void ModifyLiturgyOfTheBell_25864(ref IBaseAction action); +public static IBaseAction Create25865() +{ + IBaseAction action = new BaseAction(ActionID.BroilIv_PvE); + ModifyBroilIv_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25865"><strong>Broil IV</strong></see> <i>PvE</i> (SCH) [25865] [Spell] +/// </summary> +static partial void ModifyBroilIv_25865(ref IBaseAction action); +public static IBaseAction Create25866() +{ + IBaseAction action = new BaseAction(ActionID.ArtOfWarIi_PvE); + ModifyArtOfWarIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25866"><strong>Art of War II</strong></see> <i>PvE</i> (SCH) [25866] [Spell] +/// </summary> +static partial void ModifyArtOfWarIi_25866(ref IBaseAction action); +public static IBaseAction Create25867() +{ + IBaseAction action = new BaseAction(ActionID.Protraction_PvE); + ModifyProtraction_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25867"><strong>Protraction</strong></see> <i>PvE</i> (SCH) [25867] [Ability] +/// </summary> +static partial void ModifyProtraction_25867(ref IBaseAction action); +public static IBaseAction Create25868() +{ + IBaseAction action = new BaseAction(ActionID.Expedient_PvE); + ModifyExpedient_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25868"><strong>Expedient</strong></see> <i>PvE</i> (SCH) [25868] [Ability] +/// </summary> +static partial void ModifyExpedient_25868(ref IBaseAction action); +public static IBaseAction Create25870() +{ + IBaseAction action = new BaseAction(ActionID.Astrodyne_PvE); + ModifyAstrodyne_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25870"><strong>Astrodyne</strong></see> <i>PvE</i> (AST) [25870] [Ability] +/// </summary> +static partial void ModifyAstrodyne_25870(ref IBaseAction action); +public static IBaseAction Create25871() +{ + IBaseAction action = new BaseAction(ActionID.FallMalefic_PvE); + ModifyFallMalefic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25871"><strong>Fall Malefic</strong></see> <i>PvE</i> (AST) [25871] [Spell] +/// </summary> +static partial void ModifyFallMalefic_25871(ref IBaseAction action); +public static IBaseAction Create25872() +{ + IBaseAction action = new BaseAction(ActionID.GravityIi_PvE); + ModifyGravityIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25872"><strong>Gravity II</strong></see> <i>PvE</i> (AST) [25872] [Spell] +/// </summary> +static partial void ModifyGravityIi_25872(ref IBaseAction action); +public static IBaseAction Create25873() +{ + IBaseAction action = new BaseAction(ActionID.Exaltation_PvE); + ModifyExaltation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25873"><strong>Exaltation</strong></see> <i>PvE</i> (AST) [25873] [Ability] +/// </summary> +static partial void ModifyExaltation_25873(ref IBaseAction action); +public static IBaseAction Create25874() +{ + IBaseAction action = new BaseAction(ActionID.Macrocosmos_PvE); + ModifyMacrocosmos_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25874"><strong>Macrocosmos</strong></see> <i>PvE</i> (AST) [25874] [Spell] +/// </summary> +static partial void ModifyMacrocosmos_25874(ref IBaseAction action); +public static IBaseAction Create25875() +{ + IBaseAction action = new BaseAction(ActionID.Microcosmos_PvE); + ModifyMicrocosmos_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25875"><strong>Microcosmos</strong></see> <i>PvE</i> (AST) [25875] [Ability] +/// </summary> +static partial void ModifyMicrocosmos_25875(ref IBaseAction action); +public static IBaseAction Create25876() +{ + IBaseAction action = new BaseAction(ActionID.Huraijin_PvE); + ModifyHuraijin_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25876"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25876] [Weaponskill] +/// </summary> +static partial void ModifyHuraijin_25876(ref IBaseAction action); +public static IBaseAction Create25877() +{ + IBaseAction action = new BaseAction(ActionID.Huraijin_PvE_25877); + ModifyHuraijin_PvE_25877(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25877"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25877] [Weaponskill] +/// </summary> +static partial void ModifyHuraijin_25877(ref IBaseAction action); +public static IBaseAction Create25878() +{ + IBaseAction action = new BaseAction(ActionID.ForkedRaiju_PvE_25878); + ModifyForkedRaiju_PvE_25878(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25878"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25878] [Weaponskill] +/// </summary> +static partial void ModifyForkedRaiju_25878(ref IBaseAction action); +public static IBaseAction Create25879() +{ + IBaseAction action = new BaseAction(ActionID.FleetingRaiju_PvE_25879); + ModifyFleetingRaiju_PvE_25879(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25879"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25879] [Weaponskill] +/// </summary> +static partial void ModifyFleetingRaiju_25879(ref IBaseAction action); +public static IBaseAction Create25880() +{ + IBaseAction action = new BaseAction(ActionID.Sleep_PvE); + ModifySleep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25880"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell] +/// </summary> +static partial void ModifySleep_25880(ref IBaseAction action); +public static IBaseAction Create25882() +{ + IBaseAction action = new BaseAction(ActionID.FlintStrike_PvE); + ModifyFlintStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25882"><strong>Flint Strike</strong></see> <i>PvE</i> (MNK) [25882] [Weaponskill] +/// </summary> +static partial void ModifyFlintStrike_25882(ref IBaseAction action); +public static IBaseAction Create25883() +{ + IBaseAction action = new BaseAction(ActionID.Gemshine_PvE); + ModifyGemshine_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25883"><strong>Gemshine</strong></see> <i>PvE</i> (ACN SMN) [25883] [Spell] +/// </summary> +static partial void ModifyGemshine_25883(ref IBaseAction action); +public static IBaseAction Create25884() +{ + IBaseAction action = new BaseAction(ActionID.PreciousBrilliance_PvE); + ModifyPreciousBrilliance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25884"><strong>Precious Brilliance</strong></see> <i>PvE</i> (ACN SMN) [25884] [Spell] +/// </summary> +static partial void ModifyPreciousBrilliance_25884(ref IBaseAction action); +public static IBaseAction Create25885() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonStrike_PvE); + ModifyCrimsonStrike_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/25885"><strong>Crimson Strike</strong></see> <i>PvE</i> (SMN) [25885] [Spell] +/// </summary> +static partial void ModifyCrimsonStrike_25885(ref IBaseAction action); +public static IBaseAction Create26224() +{ + IBaseAction action = new BaseAction(ActionID.Diagnosis_PvE_26224); + ModifyDiagnosis_PvE_26224(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26224"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell] +/// </summary> +static partial void ModifyDiagnosis_26224(ref IBaseAction action); +public static IBaseAction Create26225() +{ + IBaseAction action = new BaseAction(ActionID.Embolden_PvE_26225); + ModifyEmbolden_PvE_26225(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26225"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability] +/// </summary> +static partial void ModifyEmbolden_26225(ref IBaseAction action); +public static IBaseAction Create26231() +{ + IBaseAction action = new BaseAction(ActionID.MagitekCannon_PvE_26231); + ModifyMagitekCannon_PvE_26231(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26231"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill] +/// </summary> +static partial void ModifyMagitekCannon_26231(ref IBaseAction action); +public static IBaseAction Create26232() +{ + IBaseAction action = new BaseAction(ActionID.DiffractiveMagitekCannon_PvE_26232); + ModifyDiffractiveMagitekCannon_PvE_26232(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26232"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill] +/// </summary> +static partial void ModifyDiffractiveMagitekCannon_26232(ref IBaseAction action); +public static IBaseAction Create26233() +{ + IBaseAction action = new BaseAction(ActionID.HighpoweredMagitekCannon_PvE_26233); + ModifyHighpoweredMagitekCannon_PvE_26233(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26233"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill] +/// </summary> +static partial void ModifyHighpoweredMagitekCannon_26233(ref IBaseAction action); +public static IBaseAction Create26249() +{ + IBaseAction action = new BaseAction(ActionID.FastBlade_PvE_26249); + ModifyFastBlade_PvE_26249(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26249"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill] +/// </summary> +static partial void ModifyFastBlade_26249(ref IBaseAction action); +public static IBaseAction Create26250() +{ + IBaseAction action = new BaseAction(ActionID.RiotBlade_PvE_26250); + ModifyRiotBlade_PvE_26250(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26250"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill] +/// </summary> +static partial void ModifyRiotBlade_26250(ref IBaseAction action); +public static IBaseAction Create26251() +{ + IBaseAction action = new BaseAction(ActionID.RageOfHalone_PvE_26251); + ModifyRageOfHalone_PvE_26251(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26251"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill] +/// </summary> +static partial void ModifyRageOfHalone_26251(ref IBaseAction action); +public static IBaseAction Create26252() +{ + IBaseAction action = new BaseAction(ActionID.FightOrFlight_PvE_26252); + ModifyFightOrFlight_PvE_26252(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26252"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability] +/// </summary> +static partial void ModifyFightOrFlight_26252(ref IBaseAction action); +public static IBaseAction Create26253() +{ + IBaseAction action = new BaseAction(ActionID.Rampart_PvE_26253); + ModifyRampart_PvE_26253(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26253"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability] +/// </summary> +static partial void ModifyRampart_26253(ref IBaseAction action); +public static IBaseAction Create26521() +{ + IBaseAction action = new BaseAction(ActionID.WiseToTheWorld_PvE); + ModifyWiseToTheWorld_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26521"><strong>Wise to the World</strong></see> <i>PvE</i> (MIN) [26521] [DoL Ability] +/// </summary> +static partial void ModifyWiseToTheWorld_26521(ref IBaseAction action); +public static IBaseAction Create26522() +{ + IBaseAction action = new BaseAction(ActionID.WiseToTheWorld_PvE_26522); + ModifyWiseToTheWorld_PvE_26522(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26522"><strong>Wise to the World</strong></see> <i>PvE</i> (BTN) [26522] [DoL Ability] +/// </summary> +static partial void ModifyWiseToTheWorld_26522(ref IBaseAction action); +public static IBaseAction Create26804() +{ + IBaseAction action = new BaseAction(ActionID.ThaliaksFavor_PvE); + ModifyThaliaksFavor_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26804"><strong>Thaliak's Favor</strong></see> <i>PvE</i> (FSH) [26804] [DoL Ability] +/// </summary> +static partial void ModifyThaliaksFavor_26804(ref IBaseAction action); +public static IBaseAction Create26805() +{ + IBaseAction action = new BaseAction(ActionID.MakeshiftBait_PvE); + ModifyMakeshiftBait_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26805"><strong>Makeshift Bait</strong></see> <i>PvE</i> (FSH) [26805] [DoL Ability] +/// </summary> +static partial void ModifyMakeshiftBait_26805(ref IBaseAction action); +public static IBaseAction Create26806() +{ + IBaseAction action = new BaseAction(ActionID.PrizeCatch_PvE); + ModifyPrizeCatch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26806"><strong>Prize Catch</strong></see> <i>PvE</i> (FSH) [26806] [DoL Ability] +/// </summary> +static partial void ModifyPrizeCatch_26806(ref IBaseAction action); +public static IBaseAction Create26870() +{ + IBaseAction action = new BaseAction(ActionID.VitalSight_PvE); + ModifyVitalSight_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26870"><strong>Vital Sight</strong></see> <i>PvE</i> (FSH) [26870] [DoL Ability] +/// </summary> +static partial void ModifyVitalSight_26870(ref IBaseAction action); +public static IBaseAction Create26871() +{ + IBaseAction action = new BaseAction(ActionID.BaitedBreath_PvE); + ModifyBaitedBreath_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26871"><strong>Baited Breath</strong></see> <i>PvE</i> (FSH) [26871] [DoL Ability] +/// </summary> +static partial void ModifyBaitedBreath_26871(ref IBaseAction action); +public static IBaseAction Create26872() +{ + IBaseAction action = new BaseAction(ActionID.ElectricCurrent_PvE); + ModifyElectricCurrent_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26872"><strong>Electric Current</strong></see> <i>PvE</i> (FSH) [26872] [DoL Ability] +/// </summary> +static partial void ModifyElectricCurrent_26872(ref IBaseAction action); +public static IBaseAction Create26890() +{ + IBaseAction action = new BaseAction(ActionID.FiendishLantern_PvE); + ModifyFiendishLantern_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26890"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special] +/// </summary> +static partial void ModifyFiendishLantern_26890(ref IBaseAction action); +public static IBaseAction Create26891() +{ + IBaseAction action = new BaseAction(ActionID.HealingHolyWater_PvE); + ModifyHealingHolyWater_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26891"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special] +/// </summary> +static partial void ModifyHealingHolyWater_26891(ref IBaseAction action); +public static IBaseAction Create26988() +{ + IBaseAction action = new BaseAction(ActionID.TheAetherCompass_PvE); + ModifyTheAetherCompass_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/26988"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System] +/// </summary> +static partial void ModifyTheAetherCompass_26988(ref IBaseAction action); +public static IBaseAction Create27042() +{ + IBaseAction action = new BaseAction(ActionID.LeveilleurDiagnosis_PvE); + ModifyLeveilleurDiagnosis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27042"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell] +/// </summary> +static partial void ModifyLeveilleurDiagnosis_27042(ref IBaseAction action); +public static IBaseAction Create27043() +{ + IBaseAction action = new BaseAction(ActionID.Prognosis_PvE_27043); + ModifyPrognosis_PvE_27043(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27043"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell] +/// </summary> +static partial void ModifyPrognosis_27043(ref IBaseAction action); +public static IBaseAction Create27044() +{ + IBaseAction action = new BaseAction(ActionID.LeveilleurDruochole_PvE); + ModifyLeveilleurDruochole_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27044"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability] +/// </summary> +static partial void ModifyLeveilleurDruochole_27044(ref IBaseAction action); +public static IBaseAction Create27045() +{ + IBaseAction action = new BaseAction(ActionID.DosisIii_PvE_27045); + ModifyDosisIii_PvE_27045(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27045"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell] +/// </summary> +static partial void ModifyDosisIii_27045(ref IBaseAction action); +public static IBaseAction Create27047() +{ + IBaseAction action = new BaseAction(ActionID.LeveilleurToxikon_PvE); + ModifyLeveilleurToxikon_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27047"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell] +/// </summary> +static partial void ModifyLeveilleurToxikon_27047(ref IBaseAction action); +public static IBaseAction Create27048() +{ + IBaseAction action = new BaseAction(ActionID.Verfire_PvE_27048); + ModifyVerfire_PvE_27048(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27048"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell] +/// </summary> +static partial void ModifyVerfire_27048(ref IBaseAction action); +public static IBaseAction Create27049() +{ + IBaseAction action = new BaseAction(ActionID.Veraero_PvE_27049); + ModifyVeraero_PvE_27049(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27049"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell] +/// </summary> +static partial void ModifyVeraero_27049(ref IBaseAction action); +public static IBaseAction Create27050() +{ + IBaseAction action = new BaseAction(ActionID.Verstone_PvE_27050); + ModifyVerstone_PvE_27050(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27050"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell] +/// </summary> +static partial void ModifyVerstone_27050(ref IBaseAction action); +public static IBaseAction Create27051() +{ + IBaseAction action = new BaseAction(ActionID.Verthunder_PvE_27051); + ModifyVerthunder_PvE_27051(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27051"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell] +/// </summary> +static partial void ModifyVerthunder_27051(ref IBaseAction action); +public static IBaseAction Create27052() +{ + IBaseAction action = new BaseAction(ActionID.Verflare_PvE_27052); + ModifyVerflare_PvE_27052(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27052"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell] +/// </summary> +static partial void ModifyVerflare_27052(ref IBaseAction action); +public static IBaseAction Create27053() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonSavior_PvE_27053); + ModifyCrimsonSavior_PvE_27053(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27053"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill] +/// </summary> +static partial void ModifyCrimsonSavior_27053(ref IBaseAction action); +public static IBaseAction Create27054() +{ + IBaseAction action = new BaseAction(ActionID.Corpsacorps_PvE_27054); + ModifyCorpsacorps_PvE_27054(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27054"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill] +/// </summary> +static partial void ModifyCorpsacorps_27054(ref IBaseAction action); +public static IBaseAction Create27055() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRiposte_PvE_27055); + ModifyEnchantedRiposte_PvE_27055(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27055"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRiposte_27055(ref IBaseAction action); +public static IBaseAction Create27056() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedZwerchhau_PvE_27056); + ModifyEnchantedZwerchhau_PvE_27056(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27056"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedZwerchhau_27056(ref IBaseAction action); +public static IBaseAction Create27057() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRedoublement_PvE_27057); + ModifyEnchantedRedoublement_PvE_27057(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27057"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRedoublement_27057(ref IBaseAction action); +public static IBaseAction Create27058() +{ + IBaseAction action = new BaseAction(ActionID.Engagement_PvE_27058); + ModifyEngagement_PvE_27058(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27058"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill] +/// </summary> +static partial void ModifyEngagement_27058(ref IBaseAction action); +public static IBaseAction Create27059() +{ + IBaseAction action = new BaseAction(ActionID.Verholy_PvE_27059); + ModifyVerholy_PvE_27059(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27059"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell] +/// </summary> +static partial void ModifyVerholy_27059(ref IBaseAction action); +public static IBaseAction Create27060() +{ + IBaseAction action = new BaseAction(ActionID.ContreSixte_PvE_27060); + ModifyContreSixte_PvE_27060(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27060"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability] +/// </summary> +static partial void ModifyContreSixte_27060(ref IBaseAction action); +public static IBaseAction Create27061() +{ + IBaseAction action = new BaseAction(ActionID.Vercure_PvE_27061); + ModifyVercure_PvE_27061(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27061"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell] +/// </summary> +static partial void ModifyVercure_27061(ref IBaseAction action); +public static IBaseAction Create27062() +{ + IBaseAction action = new BaseAction(ActionID.VermilionPledge_PvE); + ModifyVermilionPledge_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27062"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill] +/// </summary> +static partial void ModifyVermilionPledge_27062(ref IBaseAction action); +public static IBaseAction Create27315() +{ + IBaseAction action = new BaseAction(ActionID.MedicalKit_PvE_27315); + ModifyMedicalKit_PvE_27315(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27315"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability] +/// </summary> +static partial void ModifyMedicalKit_27315(ref IBaseAction action); +public static IBaseAction Create27427() +{ + IBaseAction action = new BaseAction(ActionID.KeenEdge_PvE_27427); + ModifyKeenEdge_PvE_27427(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27427"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill] +/// </summary> +static partial void ModifyKeenEdge_27427(ref IBaseAction action); +public static IBaseAction Create27428() +{ + IBaseAction action = new BaseAction(ActionID.BrutalShell_PvE_27428); + ModifyBrutalShell_PvE_27428(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27428"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill] +/// </summary> +static partial void ModifyBrutalShell_27428(ref IBaseAction action); +public static IBaseAction Create27429() +{ + IBaseAction action = new BaseAction(ActionID.SolidBarrel_PvE_27429); + ModifySolidBarrel_PvE_27429(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27429"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill] +/// </summary> +static partial void ModifySolidBarrel_27429(ref IBaseAction action); +public static IBaseAction Create27430() +{ + IBaseAction action = new BaseAction(ActionID.Nebula_PvE_27430); + ModifyNebula_PvE_27430(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27430"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability] +/// </summary> +static partial void ModifyNebula_27430(ref IBaseAction action); +public static IBaseAction Create27432() +{ + IBaseAction action = new BaseAction(ActionID.SwiftDeception_PvE); + ModifySwiftDeception_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27432"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability] +/// </summary> +static partial void ModifySwiftDeception_27432(ref IBaseAction action); +public static IBaseAction Create27433() +{ + IBaseAction action = new BaseAction(ActionID.SilentTakedown_PvE); + ModifySilentTakedown_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27433"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability] +/// </summary> +static partial void ModifySilentTakedown_27433(ref IBaseAction action); +public static IBaseAction Create27434() +{ + IBaseAction action = new BaseAction(ActionID.BewildermentBomb_PvE); + ModifyBewildermentBomb_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27434"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability] +/// </summary> +static partial void ModifyBewildermentBomb_27434(ref IBaseAction action); +public static IBaseAction Create27523() +{ + IBaseAction action = new BaseAction(ActionID.TripleHook_PvE); + ModifyTripleHook_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27523"><strong>Triple Hook</strong></see> <i>PvE</i> (FSH) [27523] [DoL Ability] +/// </summary> +static partial void ModifyTripleHook_27523(ref IBaseAction action); +public static IBaseAction Create27524() +{ + IBaseAction action = new BaseAction(ActionID.Pneuma_PvE_27524); + ModifyPneuma_PvE_27524(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/27524"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [27524] [Spell] +/// </summary> +static partial void ModifyPneuma_27524(ref IBaseAction action); +public static IBaseAction Create28119() +{ + IBaseAction action = new BaseAction(ActionID.Kardia_PvE_28119); + ModifyKardia_PvE_28119(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/28119"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [28119] [Ability] +/// </summary> +static partial void ModifyKardia_28119(ref IBaseAction action); +public static IBaseAction Create28302() +{ + IBaseAction action = new BaseAction(ActionID.FamilyOuting_PvE); + ModifyFamilyOuting_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/28302"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount] +/// </summary> +static partial void ModifyFamilyOuting_28302(ref IBaseAction action); +public static IBaseAction Create28439() +{ + IBaseAction action = new BaseAction(ActionID.LeveilleurDosisIii_PvE); + ModifyLeveilleurDosisIii_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/28439"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell] +/// </summary> +static partial void ModifyLeveilleurDosisIii_28439(ref IBaseAction action); +public static IBaseAction Create28509() +{ + IBaseAction action = new BaseAction(ActionID.LiturgyOfTheBell_PvE_28509); + ModifyLiturgyOfTheBell_PvE_28509(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/28509"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [28509] [Ability] +/// </summary> +static partial void ModifyLiturgyOfTheBell_28509(ref IBaseAction action); +public static IBaseAction Create29054() +{ + IBaseAction action = new BaseAction(ActionID.Guard_PvP); + ModifyGuard_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29054"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability] +/// </summary> +static partial void ModifyGuard_29054(ref IBaseAction action); +public static IBaseAction Create29055() +{ + IBaseAction action = new BaseAction(ActionID.StandardissueElixir_PvP); + ModifyStandardissueElixir_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29055"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability] +/// </summary> +static partial void ModifyStandardissueElixir_29055(ref IBaseAction action); +public static IBaseAction Create29056() +{ + IBaseAction action = new BaseAction(ActionID.Purify_PvP); + ModifyPurify_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29056"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability] +/// </summary> +static partial void ModifyPurify_29056(ref IBaseAction action); +public static IBaseAction Create29057() +{ + IBaseAction action = new BaseAction(ActionID.Sprint_PvP); + ModifySprint_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29057"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability] +/// </summary> +static partial void ModifySprint_29057(ref IBaseAction action); +public static IBaseAction Create29058() +{ + IBaseAction action = new BaseAction(ActionID.FastBlade_PvP); + ModifyFastBlade_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29058"><strong>Fast Blade</strong></see> <i>PvP</i> (PLD) [29058] [Weaponskill] +/// </summary> +static partial void ModifyFastBlade_29058(ref IBaseAction action); +public static IBaseAction Create29059() +{ + IBaseAction action = new BaseAction(ActionID.RiotBlade_PvP); + ModifyRiotBlade_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29059"><strong>Riot Blade</strong></see> <i>PvP</i> (PLD) [29059] [Weaponskill] +/// </summary> +static partial void ModifyRiotBlade_29059(ref IBaseAction action); +public static IBaseAction Create29060() +{ + IBaseAction action = new BaseAction(ActionID.RoyalAuthority_PvP); + ModifyRoyalAuthority_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29060"><strong>Royal Authority</strong></see> <i>PvP</i> (PLD) [29060] [Weaponskill] +/// </summary> +static partial void ModifyRoyalAuthority_29060(ref IBaseAction action); +public static IBaseAction Create29061() +{ + IBaseAction action = new BaseAction(ActionID.Atonement_PvP); + ModifyAtonement_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29061"><strong>Atonement</strong></see> <i>PvP</i> (PLD) [29061] [Weaponskill] +/// </summary> +static partial void ModifyAtonement_29061(ref IBaseAction action); +public static IBaseAction Create29064() +{ + IBaseAction action = new BaseAction(ActionID.ShieldBash_PvP); + ModifyShieldBash_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29064"><strong>Shield Bash</strong></see> <i>PvP</i> (PLD) [29064] [Ability] +/// </summary> +static partial void ModifyShieldBash_29064(ref IBaseAction action); +public static IBaseAction Create29065() +{ + IBaseAction action = new BaseAction(ActionID.Intervene_PvP); + ModifyIntervene_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29065"><strong>Intervene</strong></see> <i>PvP</i> (PLD) [29065] [Ability] +/// </summary> +static partial void ModifyIntervene_29065(ref IBaseAction action); +public static IBaseAction Create29066() +{ + IBaseAction action = new BaseAction(ActionID.Guardian_PvP); + ModifyGuardian_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29066"><strong>Guardian</strong></see> <i>PvP</i> (PLD) [29066] [Ability] +/// </summary> +static partial void ModifyGuardian_29066(ref IBaseAction action); +public static IBaseAction Create29067() +{ + IBaseAction action = new BaseAction(ActionID.HolySheltron_PvP); + ModifyHolySheltron_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29067"><strong>Holy Sheltron</strong></see> <i>PvP</i> (PLD) [29067] [Ability] +/// </summary> +static partial void ModifyHolySheltron_29067(ref IBaseAction action); +public static IBaseAction Create29069() +{ + IBaseAction action = new BaseAction(ActionID.Phalanx_PvP); + ModifyPhalanx_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29069"><strong>Phalanx</strong></see> <i>PvP</i> (PLD) [29069] [Limit Break] +/// </summary> +static partial void ModifyPhalanx_29069(ref IBaseAction action); +public static IBaseAction Create29070() +{ + IBaseAction action = new BaseAction(ActionID.Confiteor_PvP); + ModifyConfiteor_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29070"><strong>Confiteor</strong></see> <i>PvP</i> (PLD) [29070] [Spell] +/// </summary> +static partial void ModifyConfiteor_29070(ref IBaseAction action); +public static IBaseAction Create29071() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfFaith_PvP); + ModifyBladeOfFaith_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29071"><strong>Blade of Faith</strong></see> <i>PvP</i> (PLD) [29071] [Spell] +/// </summary> +static partial void ModifyBladeOfFaith_29071(ref IBaseAction action); +public static IBaseAction Create29072() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfTruth_PvP); + ModifyBladeOfTruth_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29072"><strong>Blade of Truth</strong></see> <i>PvP</i> (PLD) [29072] [Spell] +/// </summary> +static partial void ModifyBladeOfTruth_29072(ref IBaseAction action); +public static IBaseAction Create29073() +{ + IBaseAction action = new BaseAction(ActionID.BladeOfValor_PvP); + ModifyBladeOfValor_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29073"><strong>Blade of Valor</strong></see> <i>PvP</i> (PLD) [29073] [Spell] +/// </summary> +static partial void ModifyBladeOfValor_29073(ref IBaseAction action); +public static IBaseAction Create29074() +{ + IBaseAction action = new BaseAction(ActionID.HeavySwing_PvP); + ModifyHeavySwing_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29074"><strong>Heavy Swing</strong></see> <i>PvP</i> (WAR) [29074] [Weaponskill] +/// </summary> +static partial void ModifyHeavySwing_29074(ref IBaseAction action); +public static IBaseAction Create29075() +{ + IBaseAction action = new BaseAction(ActionID.Maim_PvP); + ModifyMaim_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29075"><strong>Maim</strong></see> <i>PvP</i> (WAR) [29075] [Weaponskill] +/// </summary> +static partial void ModifyMaim_29075(ref IBaseAction action); +public static IBaseAction Create29076() +{ + IBaseAction action = new BaseAction(ActionID.StormsPath_PvP); + ModifyStormsPath_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29076"><strong>Storm's Path</strong></see> <i>PvP</i> (WAR) [29076] [Weaponskill] +/// </summary> +static partial void ModifyStormsPath_29076(ref IBaseAction action); +public static IBaseAction Create29078() +{ + IBaseAction action = new BaseAction(ActionID.FellCleave_PvP); + ModifyFellCleave_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29078"><strong>Fell Cleave</strong></see> <i>PvP</i> (WAR) [29078] [Weaponskill] +/// </summary> +static partial void ModifyFellCleave_29078(ref IBaseAction action); +public static IBaseAction Create29079() +{ + IBaseAction action = new BaseAction(ActionID.Onslaught_PvP); + ModifyOnslaught_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29079"><strong>Onslaught</strong></see> <i>PvP</i> (WAR) [29079] [Ability] +/// </summary> +static partial void ModifyOnslaught_29079(ref IBaseAction action); +public static IBaseAction Create29080() +{ + IBaseAction action = new BaseAction(ActionID.Orogeny_PvP); + ModifyOrogeny_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29080"><strong>Orogeny</strong></see> <i>PvP</i> (WAR) [29080] [Ability] +/// </summary> +static partial void ModifyOrogeny_29080(ref IBaseAction action); +public static IBaseAction Create29081() +{ + IBaseAction action = new BaseAction(ActionID.Blota_PvP); + ModifyBlota_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29081"><strong>Blota</strong></see> <i>PvP</i> (WAR) [29081] [Ability] +/// </summary> +static partial void ModifyBlota_29081(ref IBaseAction action); +public static IBaseAction Create29082() +{ + IBaseAction action = new BaseAction(ActionID.Bloodwhetting_PvP); + ModifyBloodwhetting_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29082"><strong>Bloodwhetting</strong></see> <i>PvP</i> (WAR) [29082] [Ability] +/// </summary> +static partial void ModifyBloodwhetting_29082(ref IBaseAction action); +public static IBaseAction Create29083() +{ + IBaseAction action = new BaseAction(ActionID.PrimalScream_PvP); + ModifyPrimalScream_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29083"><strong>Primal Scream</strong></see> <i>PvP</i> (WAR) [29083] [Limit Break] +/// </summary> +static partial void ModifyPrimalScream_29083(ref IBaseAction action); +public static IBaseAction Create29084() +{ + IBaseAction action = new BaseAction(ActionID.PrimalRend_PvP); + ModifyPrimalRend_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29084"><strong>Primal Rend</strong></see> <i>PvP</i> (WAR) [29084] [Weaponskill] +/// </summary> +static partial void ModifyPrimalRend_29084(ref IBaseAction action); +public static IBaseAction Create29085() +{ + IBaseAction action = new BaseAction(ActionID.HardSlash_PvP); + ModifyHardSlash_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29085"><strong>Hard Slash</strong></see> <i>PvP</i> (DRK) [29085] [Weaponskill] +/// </summary> +static partial void ModifyHardSlash_29085(ref IBaseAction action); +public static IBaseAction Create29086() +{ + IBaseAction action = new BaseAction(ActionID.SyphonStrike_PvP); + ModifySyphonStrike_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29086"><strong>Syphon Strike</strong></see> <i>PvP</i> (DRK) [29086] [Weaponskill] +/// </summary> +static partial void ModifySyphonStrike_29086(ref IBaseAction action); +public static IBaseAction Create29087() +{ + IBaseAction action = new BaseAction(ActionID.Souleater_PvP); + ModifySouleater_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29087"><strong>Souleater</strong></see> <i>PvP</i> (DRK) [29087] [Weaponskill] +/// </summary> +static partial void ModifySouleater_29087(ref IBaseAction action); +public static IBaseAction Create29088() +{ + IBaseAction action = new BaseAction(ActionID.Bloodspiller_PvP); + ModifyBloodspiller_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29088"><strong>Bloodspiller</strong></see> <i>PvP</i> (DRK) [29088] [Weaponskill] +/// </summary> +static partial void ModifyBloodspiller_29088(ref IBaseAction action); +public static IBaseAction Create29091() +{ + IBaseAction action = new BaseAction(ActionID.Shadowbringer_PvP); + ModifyShadowbringer_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29091"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29091] [Ability] +/// </summary> +static partial void ModifyShadowbringer_29091(ref IBaseAction action); +public static IBaseAction Create29092() +{ + IBaseAction action = new BaseAction(ActionID.Plunge_PvP); + ModifyPlunge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29092"><strong>Plunge</strong></see> <i>PvP</i> (DRK) [29092] [Ability] +/// </summary> +static partial void ModifyPlunge_29092(ref IBaseAction action); +public static IBaseAction Create29093() +{ + IBaseAction action = new BaseAction(ActionID.TheBlackestNight_PvP); + ModifyTheBlackestNight_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29093"><strong>the Blackest Night</strong></see> <i>PvP</i> (DRK) [29093] [Ability] +/// </summary> +static partial void ModifyTheBlackestNight_29093(ref IBaseAction action); +public static IBaseAction Create29094() +{ + IBaseAction action = new BaseAction(ActionID.SaltedEarth_PvP); + ModifySaltedEarth_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29094"><strong>Salted Earth</strong></see> <i>PvP</i> (DRK) [29094] [Ability] +/// </summary> +static partial void ModifySaltedEarth_29094(ref IBaseAction action); +public static IBaseAction Create29095() +{ + IBaseAction action = new BaseAction(ActionID.SaltAndDarkness_PvP); + ModifySaltAndDarkness_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29095"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29095] [Ability] +/// </summary> +static partial void ModifySaltAndDarkness_29095(ref IBaseAction action); +public static IBaseAction Create29096() +{ + IBaseAction action = new BaseAction(ActionID.SaltAndDarkness_PvP_29096); + ModifySaltAndDarkness_PvP_29096(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29096"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29096] [Ability] +/// </summary> +static partial void ModifySaltAndDarkness_29096(ref IBaseAction action); +public static IBaseAction Create29097() +{ + IBaseAction action = new BaseAction(ActionID.Eventide_PvP); + ModifyEventide_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29097"><strong>Eventide</strong></see> <i>PvP</i> (DRK) [29097] [Limit Break] +/// </summary> +static partial void ModifyEventide_29097(ref IBaseAction action); +public static IBaseAction Create29098() +{ + IBaseAction action = new BaseAction(ActionID.KeenEdge_PvP); + ModifyKeenEdge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29098"><strong>Keen Edge</strong></see> <i>PvP</i> (GNB) [29098] [Weaponskill] +/// </summary> +static partial void ModifyKeenEdge_29098(ref IBaseAction action); +public static IBaseAction Create29099() +{ + IBaseAction action = new BaseAction(ActionID.BrutalShell_PvP); + ModifyBrutalShell_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29099"><strong>Brutal Shell</strong></see> <i>PvP</i> (GNB) [29099] [Weaponskill] +/// </summary> +static partial void ModifyBrutalShell_29099(ref IBaseAction action); +public static IBaseAction Create29100() +{ + IBaseAction action = new BaseAction(ActionID.SolidBarrel_PvP); + ModifySolidBarrel_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29100"><strong>Solid Barrel</strong></see> <i>PvP</i> (GNB) [29100] [Weaponskill] +/// </summary> +static partial void ModifySolidBarrel_29100(ref IBaseAction action); +public static IBaseAction Create29101() +{ + IBaseAction action = new BaseAction(ActionID.BurstStrike_PvP); + ModifyBurstStrike_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29101"><strong>Burst Strike</strong></see> <i>PvP</i> (GNB) [29101] [Weaponskill] +/// </summary> +static partial void ModifyBurstStrike_29101(ref IBaseAction action); +public static IBaseAction Create29102() +{ + IBaseAction action = new BaseAction(ActionID.GnashingFang_PvP); + ModifyGnashingFang_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29102"><strong>Gnashing Fang</strong></see> <i>PvP</i> (GNB) [29102] [Weaponskill] +/// </summary> +static partial void ModifyGnashingFang_29102(ref IBaseAction action); +public static IBaseAction Create29103() +{ + IBaseAction action = new BaseAction(ActionID.SavageClaw_PvP); + ModifySavageClaw_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29103"><strong>Savage Claw</strong></see> <i>PvP</i> (GNB) [29103] [Weaponskill] +/// </summary> +static partial void ModifySavageClaw_29103(ref IBaseAction action); +public static IBaseAction Create29104() +{ + IBaseAction action = new BaseAction(ActionID.WickedTalon_PvP); + ModifyWickedTalon_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29104"><strong>Wicked Talon</strong></see> <i>PvP</i> (GNB) [29104] [Weaponskill] +/// </summary> +static partial void ModifyWickedTalon_29104(ref IBaseAction action); +public static IBaseAction Create29105() +{ + IBaseAction action = new BaseAction(ActionID.DoubleDown_PvP); + ModifyDoubleDown_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29105"><strong>Double Down</strong></see> <i>PvP</i> (GNB) [29105] [Weaponskill] +/// </summary> +static partial void ModifyDoubleDown_29105(ref IBaseAction action); +public static IBaseAction Create29106() +{ + IBaseAction action = new BaseAction(ActionID.Continuation_PvP); + ModifyContinuation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29106"><strong>Continuation</strong></see> <i>PvP</i> (GNB) [29106] [Ability] +/// </summary> +static partial void ModifyContinuation_29106(ref IBaseAction action); +public static IBaseAction Create29107() +{ + IBaseAction action = new BaseAction(ActionID.Hypervelocity_PvP); + ModifyHypervelocity_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29107"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29107] [Ability] +/// </summary> +static partial void ModifyHypervelocity_29107(ref IBaseAction action); +public static IBaseAction Create29108() +{ + IBaseAction action = new BaseAction(ActionID.JugularRip_PvP); + ModifyJugularRip_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29108"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29108] [Ability] +/// </summary> +static partial void ModifyJugularRip_29108(ref IBaseAction action); +public static IBaseAction Create29109() +{ + IBaseAction action = new BaseAction(ActionID.AbdomenTear_PvP); + ModifyAbdomenTear_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29109"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29109] [Ability] +/// </summary> +static partial void ModifyAbdomenTear_29109(ref IBaseAction action); +public static IBaseAction Create29110() +{ + IBaseAction action = new BaseAction(ActionID.EyeGouge_PvP); + ModifyEyeGouge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29110"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29110] [Ability] +/// </summary> +static partial void ModifyEyeGouge_29110(ref IBaseAction action); +public static IBaseAction Create29111() +{ + IBaseAction action = new BaseAction(ActionID.Hypervelocity_PvP_29111); + ModifyHypervelocity_PvP_29111(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29111"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29111] [Ability] +/// </summary> +static partial void ModifyHypervelocity_29111(ref IBaseAction action); +public static IBaseAction Create29112() +{ + IBaseAction action = new BaseAction(ActionID.JugularRip_PvP_29112); + ModifyJugularRip_PvP_29112(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29112"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29112] [Ability] +/// </summary> +static partial void ModifyJugularRip_29112(ref IBaseAction action); +public static IBaseAction Create29113() +{ + IBaseAction action = new BaseAction(ActionID.AbdomenTear_PvP_29113); + ModifyAbdomenTear_PvP_29113(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29113"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29113] [Ability] +/// </summary> +static partial void ModifyAbdomenTear_29113(ref IBaseAction action); +public static IBaseAction Create29114() +{ + IBaseAction action = new BaseAction(ActionID.EyeGouge_PvP_29114); + ModifyEyeGouge_PvP_29114(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29114"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29114] [Ability] +/// </summary> +static partial void ModifyEyeGouge_29114(ref IBaseAction action); +public static IBaseAction Create29115() +{ + IBaseAction action = new BaseAction(ActionID.Hypervelocity_PvP_29115); + ModifyHypervelocity_PvP_29115(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29115"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29115] [Ability] +/// </summary> +static partial void ModifyHypervelocity_29115(ref IBaseAction action); +public static IBaseAction Create29116() +{ + IBaseAction action = new BaseAction(ActionID.JugularRip_PvP_29116); + ModifyJugularRip_PvP_29116(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29116"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29116] [Ability] +/// </summary> +static partial void ModifyJugularRip_29116(ref IBaseAction action); +public static IBaseAction Create29117() +{ + IBaseAction action = new BaseAction(ActionID.AbdomenTear_PvP_29117); + ModifyAbdomenTear_PvP_29117(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29117"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29117] [Ability] +/// </summary> +static partial void ModifyAbdomenTear_29117(ref IBaseAction action); +public static IBaseAction Create29118() +{ + IBaseAction action = new BaseAction(ActionID.EyeGouge_PvP_29118); + ModifyEyeGouge_PvP_29118(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29118"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29118] [Ability] +/// </summary> +static partial void ModifyEyeGouge_29118(ref IBaseAction action); +public static IBaseAction Create29119() +{ + IBaseAction action = new BaseAction(ActionID.Hypervelocity_PvP_29119); + ModifyHypervelocity_PvP_29119(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29119"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29119] [Ability] +/// </summary> +static partial void ModifyHypervelocity_29119(ref IBaseAction action); +public static IBaseAction Create29120() +{ + IBaseAction action = new BaseAction(ActionID.JugularRip_PvP_29120); + ModifyJugularRip_PvP_29120(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29120"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29120] [Ability] +/// </summary> +static partial void ModifyJugularRip_29120(ref IBaseAction action); +public static IBaseAction Create29121() +{ + IBaseAction action = new BaseAction(ActionID.AbdomenTear_PvP_29121); + ModifyAbdomenTear_PvP_29121(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29121"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29121] [Ability] +/// </summary> +static partial void ModifyAbdomenTear_29121(ref IBaseAction action); +public static IBaseAction Create29122() +{ + IBaseAction action = new BaseAction(ActionID.EyeGouge_PvP_29122); + ModifyEyeGouge_PvP_29122(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29122"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29122] [Ability] +/// </summary> +static partial void ModifyEyeGouge_29122(ref IBaseAction action); +public static IBaseAction Create29123() +{ + IBaseAction action = new BaseAction(ActionID.RoughDivide_PvP); + ModifyRoughDivide_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29123"><strong>Rough Divide</strong></see> <i>PvP</i> (GNB) [29123] [Ability] +/// </summary> +static partial void ModifyRoughDivide_29123(ref IBaseAction action); +public static IBaseAction Create29124() +{ + IBaseAction action = new BaseAction(ActionID.DrawAndJunction_PvP); + ModifyDrawAndJunction_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29124"><strong>Draw and Junction</strong></see> <i>PvP</i> (GNB) [29124] [Ability] +/// </summary> +static partial void ModifyDrawAndJunction_29124(ref IBaseAction action); +public static IBaseAction Create29125() +{ + IBaseAction action = new BaseAction(ActionID.JunctionedCast_PvP); + ModifyJunctionedCast_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29125"><strong>Junctioned Cast</strong></see> <i>PvP</i> (GNB) [29125] [Ability] +/// </summary> +static partial void ModifyJunctionedCast_29125(ref IBaseAction action); +public static IBaseAction Create29126() +{ + IBaseAction action = new BaseAction(ActionID.Nebula_PvP); + ModifyNebula_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29126"><strong>Nebula</strong></see> <i>PvP</i> (GNB) [29126] [Ability] +/// </summary> +static partial void ModifyNebula_29126(ref IBaseAction action); +public static IBaseAction Create29128() +{ + IBaseAction action = new BaseAction(ActionID.BlastingZone_PvP); + ModifyBlastingZone_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29128"><strong>Blasting Zone</strong></see> <i>PvP</i> (GNB) [29128] [Ability] +/// </summary> +static partial void ModifyBlastingZone_29128(ref IBaseAction action); +public static IBaseAction Create29129() +{ + IBaseAction action = new BaseAction(ActionID.Aurora_PvP); + ModifyAurora_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29129"><strong>Aurora</strong></see> <i>PvP</i> (GNB) [29129] [Ability] +/// </summary> +static partial void ModifyAurora_29129(ref IBaseAction action); +public static IBaseAction Create29130() +{ + IBaseAction action = new BaseAction(ActionID.RelentlessRush_PvP); + ModifyRelentlessRush_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29130"><strong>Relentless Rush</strong></see> <i>PvP</i> (GNB) [29130] [Limit Break] +/// </summary> +static partial void ModifyRelentlessRush_29130(ref IBaseAction action); +public static IBaseAction Create29131() +{ + IBaseAction action = new BaseAction(ActionID.TerminalTrigger_PvP); + ModifyTerminalTrigger_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29131"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29131] [Limit Break] +/// </summary> +static partial void ModifyTerminalTrigger_29131(ref IBaseAction action); +public static IBaseAction Create29155() +{ + IBaseAction action = new BaseAction(ActionID.Seize_PvE_29155); + ModifySeize_PvE_29155(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29155"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special] +/// </summary> +static partial void ModifySeize_29155(ref IBaseAction action); +public static IBaseAction Create29223() +{ + IBaseAction action = new BaseAction(ActionID.GlareIii_PvP); + ModifyGlareIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29223"><strong>Glare III</strong></see> <i>PvP</i> (WHM) [29223] [Spell] +/// </summary> +static partial void ModifyGlareIii_29223(ref IBaseAction action); +public static IBaseAction Create29224() +{ + IBaseAction action = new BaseAction(ActionID.CureIi_PvP); + ModifyCureIi_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29224"><strong>Cure II</strong></see> <i>PvP</i> (WHM) [29224] [Spell] +/// </summary> +static partial void ModifyCureIi_29224(ref IBaseAction action); +public static IBaseAction Create29225() +{ + IBaseAction action = new BaseAction(ActionID.CureIii_PvP); + ModifyCureIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29225"><strong>Cure III</strong></see> <i>PvP</i> (WHM) [29225] [Spell] +/// </summary> +static partial void ModifyCureIii_29225(ref IBaseAction action); +public static IBaseAction Create29226() +{ + IBaseAction action = new BaseAction(ActionID.AfflatusMisery_PvP); + ModifyAfflatusMisery_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29226"><strong>Afflatus Misery</strong></see> <i>PvP</i> (WHM) [29226] [Spell] +/// </summary> +static partial void ModifyAfflatusMisery_29226(ref IBaseAction action); +public static IBaseAction Create29227() +{ + IBaseAction action = new BaseAction(ActionID.Aquaveil_PvP); + ModifyAquaveil_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29227"><strong>Aquaveil</strong></see> <i>PvP</i> (WHM) [29227] [Ability] +/// </summary> +static partial void ModifyAquaveil_29227(ref IBaseAction action); +public static IBaseAction Create29228() +{ + IBaseAction action = new BaseAction(ActionID.MiracleOfNature_PvP); + ModifyMiracleOfNature_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29228"><strong>Miracle of Nature</strong></see> <i>PvP</i> (WHM) [29228] [Ability] +/// </summary> +static partial void ModifyMiracleOfNature_29228(ref IBaseAction action); +public static IBaseAction Create29229() +{ + IBaseAction action = new BaseAction(ActionID.SeraphStrike_PvP); + ModifySeraphStrike_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29229"><strong>Seraph Strike</strong></see> <i>PvP</i> (WHM) [29229] [Ability] +/// </summary> +static partial void ModifySeraphStrike_29229(ref IBaseAction action); +public static IBaseAction Create29230() +{ + IBaseAction action = new BaseAction(ActionID.AfflatusPurgation_PvP); + ModifyAfflatusPurgation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29230"><strong>Afflatus Purgation</strong></see> <i>PvP</i> (WHM) [29230] [Limit Break] +/// </summary> +static partial void ModifyAfflatusPurgation_29230(ref IBaseAction action); +public static IBaseAction Create29231() +{ + IBaseAction action = new BaseAction(ActionID.BroilIv_PvP); + ModifyBroilIv_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29231"><strong>Broil IV</strong></see> <i>PvP</i> (SCH) [29231] [Spell] +/// </summary> +static partial void ModifyBroilIv_29231(ref IBaseAction action); +public static IBaseAction Create29232() +{ + IBaseAction action = new BaseAction(ActionID.Adloquium_PvP); + ModifyAdloquium_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29232"><strong>Adloquium</strong></see> <i>PvP</i> (SCH) [29232] [Spell] +/// </summary> +static partial void ModifyAdloquium_29232(ref IBaseAction action); +public static IBaseAction Create29233() +{ + IBaseAction action = new BaseAction(ActionID.Biolysis_PvP); + ModifyBiolysis_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29233"><strong>Biolysis</strong></see> <i>PvP</i> (SCH) [29233] [Spell] +/// </summary> +static partial void ModifyBiolysis_29233(ref IBaseAction action); +public static IBaseAction Create29234() +{ + IBaseAction action = new BaseAction(ActionID.DeploymentTactics_PvP); + ModifyDeploymentTactics_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29234"><strong>Deployment Tactics</strong></see> <i>PvP</i> (SCH) [29234] [Ability] +/// </summary> +static partial void ModifyDeploymentTactics_29234(ref IBaseAction action); +public static IBaseAction Create29235() +{ + IBaseAction action = new BaseAction(ActionID.Mummification_PvP); + ModifyMummification_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29235"><strong>Mummification</strong></see> <i>PvP</i> (SCH) [29235] [Ability] +/// </summary> +static partial void ModifyMummification_29235(ref IBaseAction action); +public static IBaseAction Create29236() +{ + IBaseAction action = new BaseAction(ActionID.Expedient_PvP); + ModifyExpedient_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29236"><strong>Expedient</strong></see> <i>PvP</i> (SCH) [29236] [Ability] +/// </summary> +static partial void ModifyExpedient_29236(ref IBaseAction action); +public static IBaseAction Create29237() +{ + IBaseAction action = new BaseAction(ActionID.SummonSeraph_PvP); + ModifySummonSeraph_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29237"><strong>Summon Seraph</strong></see> <i>PvP</i> (SCH) [29237] [Limit Break] +/// </summary> +static partial void ModifySummonSeraph_29237(ref IBaseAction action); +public static IBaseAction Create29238() +{ + IBaseAction action = new BaseAction(ActionID.Consolation_PvP); + ModifyConsolation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29238"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29238] [Ability] +/// </summary> +static partial void ModifyConsolation_29238(ref IBaseAction action); +public static IBaseAction Create29239() +{ + IBaseAction action = new BaseAction(ActionID.SeraphFlight_PvP); + ModifySeraphFlight_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29239"><strong>Seraph Flight</strong></see> <i>PvP</i> (SCH) [29239] [Ability] +/// </summary> +static partial void ModifySeraphFlight_29239(ref IBaseAction action); +public static IBaseAction Create29240() +{ + IBaseAction action = new BaseAction(ActionID.SeraphicVeil_PvP); + ModifySeraphicVeil_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29240"><strong>Seraphic Veil</strong></see> <i>PvP</i> (SCH) [29240] [Spell] +/// </summary> +static partial void ModifySeraphicVeil_29240(ref IBaseAction action); +public static IBaseAction Create29241() +{ + IBaseAction action = new BaseAction(ActionID.Consolation_PvP_29241); + ModifyConsolation_PvP_29241(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29241"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29241] [Ability] +/// </summary> +static partial void ModifyConsolation_29241(ref IBaseAction action); +public static IBaseAction Create29242() +{ + IBaseAction action = new BaseAction(ActionID.FallMalefic_PvP); + ModifyFallMalefic_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29242"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29242] [Spell] +/// </summary> +static partial void ModifyFallMalefic_29242(ref IBaseAction action); +public static IBaseAction Create29243() +{ + IBaseAction action = new BaseAction(ActionID.AspectedBenefic_PvP); + ModifyAspectedBenefic_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29243"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29243] [Spell] +/// </summary> +static partial void ModifyAspectedBenefic_29243(ref IBaseAction action); +public static IBaseAction Create29244() +{ + IBaseAction action = new BaseAction(ActionID.GravityIi_PvP); + ModifyGravityIi_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29244"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29244] [Spell] +/// </summary> +static partial void ModifyGravityIi_29244(ref IBaseAction action); +public static IBaseAction Create29245() +{ + IBaseAction action = new BaseAction(ActionID.DoubleCast_PvP); + ModifyDoubleCast_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29245"><strong>Double Cast</strong></see> <i>PvP</i> (AST) [29245] [Ability] +/// </summary> +static partial void ModifyDoubleCast_29245(ref IBaseAction action); +public static IBaseAction Create29246() +{ + IBaseAction action = new BaseAction(ActionID.FallMalefic_PvP_29246); + ModifyFallMalefic_PvP_29246(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29246"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29246] [Ability] +/// </summary> +static partial void ModifyFallMalefic_29246(ref IBaseAction action); +public static IBaseAction Create29247() +{ + IBaseAction action = new BaseAction(ActionID.AspectedBenefic_PvP_29247); + ModifyAspectedBenefic_PvP_29247(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29247"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29247] [Ability] +/// </summary> +static partial void ModifyAspectedBenefic_29247(ref IBaseAction action); +public static IBaseAction Create29248() +{ + IBaseAction action = new BaseAction(ActionID.GravityIi_PvP_29248); + ModifyGravityIi_PvP_29248(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29248"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29248] [Ability] +/// </summary> +static partial void ModifyGravityIi_29248(ref IBaseAction action); +public static IBaseAction Create29249() +{ + IBaseAction action = new BaseAction(ActionID.Draw_PvP); + ModifyDraw_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29249"><strong>Draw</strong></see> <i>PvP</i> (AST) [29249] [Ability] +/// </summary> +static partial void ModifyDraw_29249(ref IBaseAction action); +public static IBaseAction Create29250() +{ + IBaseAction action = new BaseAction(ActionID.TheBalance_PvP); + ModifyTheBalance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29250"><strong>the Balance</strong></see> <i>PvP</i> (AST) [29250] [Ability] +/// </summary> +static partial void ModifyTheBalance_29250(ref IBaseAction action); +public static IBaseAction Create29253() +{ + IBaseAction action = new BaseAction(ActionID.Macrocosmos_PvP); + ModifyMacrocosmos_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29253"><strong>Macrocosmos</strong></see> <i>PvP</i> (AST) [29253] [Ability] +/// </summary> +static partial void ModifyMacrocosmos_29253(ref IBaseAction action); +public static IBaseAction Create29254() +{ + IBaseAction action = new BaseAction(ActionID.Microcosmos_PvP); + ModifyMicrocosmos_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29254"><strong>Microcosmos</strong></see> <i>PvP</i> (AST) [29254] [Ability] +/// </summary> +static partial void ModifyMicrocosmos_29254(ref IBaseAction action); +public static IBaseAction Create29255() +{ + IBaseAction action = new BaseAction(ActionID.CelestialRiver_PvP); + ModifyCelestialRiver_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29255"><strong>Celestial River</strong></see> <i>PvP</i> (AST) [29255] [Limit Break] +/// </summary> +static partial void ModifyCelestialRiver_29255(ref IBaseAction action); +public static IBaseAction Create29256() +{ + IBaseAction action = new BaseAction(ActionID.DosisIii_PvP); + ModifyDosisIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29256"><strong>Dosis III</strong></see> <i>PvP</i> (SGE) [29256] [Spell] +/// </summary> +static partial void ModifyDosisIii_29256(ref IBaseAction action); +public static IBaseAction Create29257() +{ + IBaseAction action = new BaseAction(ActionID.EukrasianDosisIii_PvP); + ModifyEukrasianDosisIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29257"><strong>Eukrasian Dosis III</strong></see> <i>PvP</i> (SGE) [29257] [Spell] +/// </summary> +static partial void ModifyEukrasianDosisIii_29257(ref IBaseAction action); +public static IBaseAction Create29258() +{ + IBaseAction action = new BaseAction(ActionID.Eukrasia_PvP); + ModifyEukrasia_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29258"><strong>Eukrasia</strong></see> <i>PvP</i> (SGE) [29258] [Spell] +/// </summary> +static partial void ModifyEukrasia_29258(ref IBaseAction action); +public static IBaseAction Create29259() +{ + IBaseAction action = new BaseAction(ActionID.PhlegmaIii_PvP); + ModifyPhlegmaIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29259"><strong>Phlegma III</strong></see> <i>PvP</i> (SGE) [29259] [Spell] +/// </summary> +static partial void ModifyPhlegmaIii_29259(ref IBaseAction action); +public static IBaseAction Create29260() +{ + IBaseAction action = new BaseAction(ActionID.Pneuma_PvP); + ModifyPneuma_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29260"><strong>Pneuma</strong></see> <i>PvP</i> (SGE) [29260] [Spell] +/// </summary> +static partial void ModifyPneuma_29260(ref IBaseAction action); +public static IBaseAction Create29261() +{ + IBaseAction action = new BaseAction(ActionID.Icarus_PvP); + ModifyIcarus_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29261"><strong>Icarus</strong></see> <i>PvP</i> (SGE) [29261] [Ability] +/// </summary> +static partial void ModifyIcarus_29261(ref IBaseAction action); +public static IBaseAction Create29262() +{ + IBaseAction action = new BaseAction(ActionID.Toxikon_PvP); + ModifyToxikon_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29262"><strong>Toxikon</strong></see> <i>PvP</i> (SGE) [29262] [Ability] +/// </summary> +static partial void ModifyToxikon_29262(ref IBaseAction action); +public static IBaseAction Create29263() +{ + IBaseAction action = new BaseAction(ActionID.ToxikonIi_PvP); + ModifyToxikonIi_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29263"><strong>Toxikon II</strong></see> <i>PvP</i> (SGE) [29263] [Ability] +/// </summary> +static partial void ModifyToxikonIi_29263(ref IBaseAction action); +public static IBaseAction Create29264() +{ + IBaseAction action = new BaseAction(ActionID.Kardia_PvP); + ModifyKardia_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29264"><strong>Kardia</strong></see> <i>PvP</i> (SGE) [29264] [Ability] +/// </summary> +static partial void ModifyKardia_29264(ref IBaseAction action); +public static IBaseAction Create29266() +{ + IBaseAction action = new BaseAction(ActionID.Mesotes_PvP); + ModifyMesotes_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29266"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29266] [Limit Break] +/// </summary> +static partial void ModifyMesotes_29266(ref IBaseAction action); +public static IBaseAction Create29267() +{ + IBaseAction action = new BaseAction(ActionID.Mesotes_PvP_29267); + ModifyMesotes_PvP_29267(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29267"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29267] [Limit Break] +/// </summary> +static partial void ModifyMesotes_29267(ref IBaseAction action); +public static IBaseAction Create29363() +{ + IBaseAction action = new BaseAction(ActionID.MedicalKit_PvE_29363); + ModifyMedicalKit_PvE_29363(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29363"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability] +/// </summary> +static partial void ModifyMedicalKit_29363(ref IBaseAction action); +public static IBaseAction Create29371() +{ + IBaseAction action = new BaseAction(ActionID.Foul_PvP); + ModifyFoul_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29371"><strong>Foul</strong></see> <i>PvP</i> (BLM) [29371] [Spell] +/// </summary> +static partial void ModifyFoul_29371(ref IBaseAction action); +public static IBaseAction Create29382() +{ + IBaseAction action = new BaseAction(ActionID.RedGulal_PvE); + ModifyRedGulal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29382"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event] +/// </summary> +static partial void ModifyRedGulal_29382(ref IBaseAction action); +public static IBaseAction Create29383() +{ + IBaseAction action = new BaseAction(ActionID.YellowGulal_PvE); + ModifyYellowGulal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29383"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event] +/// </summary> +static partial void ModifyYellowGulal_29383(ref IBaseAction action); +public static IBaseAction Create29384() +{ + IBaseAction action = new BaseAction(ActionID.BlueGulal_PvE); + ModifyBlueGulal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29384"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event] +/// </summary> +static partial void ModifyBlueGulal_29384(ref IBaseAction action); +public static IBaseAction Create29385() +{ + IBaseAction action = new BaseAction(ActionID.RedGulal_PvE_29385); + ModifyRedGulal_PvE_29385(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29385"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount] +/// </summary> +static partial void ModifyRedGulal_29385(ref IBaseAction action); +public static IBaseAction Create29386() +{ + IBaseAction action = new BaseAction(ActionID.YellowGulal_PvE_29386); + ModifyYellowGulal_PvE_29386(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29386"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount] +/// </summary> +static partial void ModifyYellowGulal_29386(ref IBaseAction action); +public static IBaseAction Create29387() +{ + IBaseAction action = new BaseAction(ActionID.BlueGulal_PvE_29387); + ModifyBlueGulal_PvE_29387(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29387"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount] +/// </summary> +static partial void ModifyBlueGulal_29387(ref IBaseAction action); +public static IBaseAction Create29388() +{ + IBaseAction action = new BaseAction(ActionID.RainbowGulal_PvE); + ModifyRainbowGulal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29388"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount] +/// </summary> +static partial void ModifyRainbowGulal_29388(ref IBaseAction action); +public static IBaseAction Create29391() +{ + IBaseAction action = new BaseAction(ActionID.PowerfulShot_PvP); + ModifyPowerfulShot_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29391"><strong>Powerful Shot</strong></see> <i>PvP</i> (BRD) [29391] [Weaponskill] +/// </summary> +static partial void ModifyPowerfulShot_29391(ref IBaseAction action); +public static IBaseAction Create29392() +{ + IBaseAction action = new BaseAction(ActionID.PitchPerfect_PvP); + ModifyPitchPerfect_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29392"><strong>Pitch Perfect</strong></see> <i>PvP</i> (BRD) [29392] [Weaponskill] +/// </summary> +static partial void ModifyPitchPerfect_29392(ref IBaseAction action); +public static IBaseAction Create29393() +{ + IBaseAction action = new BaseAction(ActionID.ApexArrow_PvP); + ModifyApexArrow_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29393"><strong>Apex Arrow</strong></see> <i>PvP</i> (BRD) [29393] [Weaponskill] +/// </summary> +static partial void ModifyApexArrow_29393(ref IBaseAction action); +public static IBaseAction Create29394() +{ + IBaseAction action = new BaseAction(ActionID.BlastArrow_PvP); + ModifyBlastArrow_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29394"><strong>Blast Arrow</strong></see> <i>PvP</i> (BRD) [29394] [Weaponskill] +/// </summary> +static partial void ModifyBlastArrow_29394(ref IBaseAction action); +public static IBaseAction Create29395() +{ + IBaseAction action = new BaseAction(ActionID.SilentNocturne_PvP); + ModifySilentNocturne_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29395"><strong>Silent Nocturne</strong></see> <i>PvP</i> (BRD) [29395] [Ability] +/// </summary> +static partial void ModifySilentNocturne_29395(ref IBaseAction action); +public static IBaseAction Create29396() +{ + IBaseAction action = new BaseAction(ActionID.EmpyrealArrow_PvP); + ModifyEmpyrealArrow_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29396"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29396] [Ability] +/// </summary> +static partial void ModifyEmpyrealArrow_29396(ref IBaseAction action); +public static IBaseAction Create29397() +{ + IBaseAction action = new BaseAction(ActionID.EmpyrealArrow_PvP_29397); + ModifyEmpyrealArrow_PvP_29397(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29397"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29397] [Ability] +/// </summary> +static partial void ModifyEmpyrealArrow_29397(ref IBaseAction action); +public static IBaseAction Create29398() +{ + IBaseAction action = new BaseAction(ActionID.EmpyrealArrow_PvP_29398); + ModifyEmpyrealArrow_PvP_29398(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29398"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29398] [Ability] +/// </summary> +static partial void ModifyEmpyrealArrow_29398(ref IBaseAction action); +public static IBaseAction Create29399() +{ + IBaseAction action = new BaseAction(ActionID.RepellingShot_PvP); + ModifyRepellingShot_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29399"><strong>Repelling Shot</strong></see> <i>PvP</i> (BRD) [29399] [Ability] +/// </summary> +static partial void ModifyRepellingShot_29399(ref IBaseAction action); +public static IBaseAction Create29400() +{ + IBaseAction action = new BaseAction(ActionID.TheWardensPaean_PvP); + ModifyTheWardensPaean_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29400"><strong>the Warden's Paean</strong></see> <i>PvP</i> (BRD) [29400] [Ability] +/// </summary> +static partial void ModifyTheWardensPaean_29400(ref IBaseAction action); +public static IBaseAction Create29401() +{ + IBaseAction action = new BaseAction(ActionID.FinalFantasia_PvP); + ModifyFinalFantasia_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29401"><strong>Final Fantasia</strong></see> <i>PvP</i> (BRD) [29401] [Limit Break] +/// </summary> +static partial void ModifyFinalFantasia_29401(ref IBaseAction action); +public static IBaseAction Create29402() +{ + IBaseAction action = new BaseAction(ActionID.BlastCharge_PvP); + ModifyBlastCharge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29402"><strong>Blast Charge</strong></see> <i>PvP</i> (MCH) [29402] [Weaponskill] +/// </summary> +static partial void ModifyBlastCharge_29402(ref IBaseAction action); +public static IBaseAction Create29403() +{ + IBaseAction action = new BaseAction(ActionID.HeatBlast_PvP); + ModifyHeatBlast_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29403"><strong>Heat Blast</strong></see> <i>PvP</i> (MCH) [29403] [Weaponskill] +/// </summary> +static partial void ModifyHeatBlast_29403(ref IBaseAction action); +public static IBaseAction Create29404() +{ + IBaseAction action = new BaseAction(ActionID.Scattergun_PvP); + ModifyScattergun_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29404"><strong>Scattergun</strong></see> <i>PvP</i> (MCH) [29404] [Weaponskill] +/// </summary> +static partial void ModifyScattergun_29404(ref IBaseAction action); +public static IBaseAction Create29405() +{ + IBaseAction action = new BaseAction(ActionID.Drill_PvP); + ModifyDrill_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29405"><strong>Drill</strong></see> <i>PvP</i> (MCH) [29405] [Weaponskill] +/// </summary> +static partial void ModifyDrill_29405(ref IBaseAction action); +public static IBaseAction Create29406() +{ + IBaseAction action = new BaseAction(ActionID.Bioblaster_PvP); + ModifyBioblaster_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29406"><strong>Bioblaster</strong></see> <i>PvP</i> (MCH) [29406] [Weaponskill] +/// </summary> +static partial void ModifyBioblaster_29406(ref IBaseAction action); +public static IBaseAction Create29407() +{ + IBaseAction action = new BaseAction(ActionID.AirAnchor_PvP); + ModifyAirAnchor_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29407"><strong>Air Anchor</strong></see> <i>PvP</i> (MCH) [29407] [Weaponskill] +/// </summary> +static partial void ModifyAirAnchor_29407(ref IBaseAction action); +public static IBaseAction Create29408() +{ + IBaseAction action = new BaseAction(ActionID.ChainSaw_PvP); + ModifyChainSaw_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29408"><strong>Chain Saw</strong></see> <i>PvP</i> (MCH) [29408] [Weaponskill] +/// </summary> +static partial void ModifyChainSaw_29408(ref IBaseAction action); +public static IBaseAction Create29409() +{ + IBaseAction action = new BaseAction(ActionID.Wildfire_PvP); + ModifyWildfire_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29409"><strong>Wildfire</strong></see> <i>PvP</i> (MCH) [29409] [Ability] +/// </summary> +static partial void ModifyWildfire_29409(ref IBaseAction action); +public static IBaseAction Create29412() +{ + IBaseAction action = new BaseAction(ActionID.BishopAutoturret_PvP); + ModifyBishopAutoturret_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29412"><strong>Bishop Autoturret</strong></see> <i>PvP</i> (MCH) [29412] [Ability] +/// </summary> +static partial void ModifyBishopAutoturret_29412(ref IBaseAction action); +public static IBaseAction Create29413() +{ + IBaseAction action = new BaseAction(ActionID.AetherMortar_PvP); + ModifyAetherMortar_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29413"><strong>Aether Mortar</strong></see> <i>PvP</i> (MCH) [29413] [Ability] +/// </summary> +static partial void ModifyAetherMortar_29413(ref IBaseAction action); +public static IBaseAction Create29414() +{ + IBaseAction action = new BaseAction(ActionID.Analysis_PvP); + ModifyAnalysis_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29414"><strong>Analysis</strong></see> <i>PvP</i> (MCH) [29414] [Ability] +/// </summary> +static partial void ModifyAnalysis_29414(ref IBaseAction action); +public static IBaseAction Create29415() +{ + IBaseAction action = new BaseAction(ActionID.MarksmansSpite_PvP); + ModifyMarksmansSpite_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29415"><strong>Marksman's Spite</strong></see> <i>PvP</i> (MCH) [29415] [Limit Break] +/// </summary> +static partial void ModifyMarksmansSpite_29415(ref IBaseAction action); +public static IBaseAction Create29416() +{ + IBaseAction action = new BaseAction(ActionID.Cascade_PvP); + ModifyCascade_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29416"><strong>Cascade</strong></see> <i>PvP</i> (DNC) [29416] [Weaponskill] +/// </summary> +static partial void ModifyCascade_29416(ref IBaseAction action); +public static IBaseAction Create29417() +{ + IBaseAction action = new BaseAction(ActionID.Fountain_PvP); + ModifyFountain_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29417"><strong>Fountain</strong></see> <i>PvP</i> (DNC) [29417] [Weaponskill] +/// </summary> +static partial void ModifyFountain_29417(ref IBaseAction action); +public static IBaseAction Create29418() +{ + IBaseAction action = new BaseAction(ActionID.ReverseCascade_PvP); + ModifyReverseCascade_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29418"><strong>Reverse Cascade</strong></see> <i>PvP</i> (DNC) [29418] [Weaponskill] +/// </summary> +static partial void ModifyReverseCascade_29418(ref IBaseAction action); +public static IBaseAction Create29419() +{ + IBaseAction action = new BaseAction(ActionID.Fountainfall_PvP); + ModifyFountainfall_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29419"><strong>Fountainfall</strong></see> <i>PvP</i> (DNC) [29419] [Weaponskill] +/// </summary> +static partial void ModifyFountainfall_29419(ref IBaseAction action); +public static IBaseAction Create29420() +{ + IBaseAction action = new BaseAction(ActionID.SaberDance_PvP); + ModifySaberDance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29420"><strong>Saber Dance</strong></see> <i>PvP</i> (DNC) [29420] [Weaponskill] +/// </summary> +static partial void ModifySaberDance_29420(ref IBaseAction action); +public static IBaseAction Create29421() +{ + IBaseAction action = new BaseAction(ActionID.StarfallDance_PvP); + ModifyStarfallDance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29421"><strong>Starfall Dance</strong></see> <i>PvP</i> (DNC) [29421] [Weaponskill] +/// </summary> +static partial void ModifyStarfallDance_29421(ref IBaseAction action); +public static IBaseAction Create29422() +{ + IBaseAction action = new BaseAction(ActionID.HoningDance_PvP); + ModifyHoningDance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29422"><strong>Honing Dance</strong></see> <i>PvP</i> (DNC) [29422] [Weaponskill] +/// </summary> +static partial void ModifyHoningDance_29422(ref IBaseAction action); +public static IBaseAction Create29423() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP); + ModifyHoningOvation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29423"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29423] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29423(ref IBaseAction action); +public static IBaseAction Create29424() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP_29424); + ModifyHoningOvation_PvP_29424(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29424"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29424] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29424(ref IBaseAction action); +public static IBaseAction Create29425() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP_29425); + ModifyHoningOvation_PvP_29425(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29425"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29425] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29425(ref IBaseAction action); +public static IBaseAction Create29426() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP_29426); + ModifyHoningOvation_PvP_29426(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29426"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29426] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29426(ref IBaseAction action); +public static IBaseAction Create29427() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP_29427); + ModifyHoningOvation_PvP_29427(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29427"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29427] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29427(ref IBaseAction action); +public static IBaseAction Create29428() +{ + IBaseAction action = new BaseAction(ActionID.FanDance_PvP); + ModifyFanDance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29428"><strong>Fan Dance</strong></see> <i>PvP</i> (DNC) [29428] [Ability] +/// </summary> +static partial void ModifyFanDance_29428(ref IBaseAction action); +public static IBaseAction Create29429() +{ + IBaseAction action = new BaseAction(ActionID.CuringWaltz_PvP); + ModifyCuringWaltz_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29429"><strong>Curing Waltz</strong></see> <i>PvP</i> (DNC) [29429] [Ability] +/// </summary> +static partial void ModifyCuringWaltz_29429(ref IBaseAction action); +public static IBaseAction Create29430() +{ + IBaseAction action = new BaseAction(ActionID.EnAvant_PvP); + ModifyEnAvant_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29430"><strong>En Avant</strong></see> <i>PvP</i> (DNC) [29430] [Ability] +/// </summary> +static partial void ModifyEnAvant_29430(ref IBaseAction action); +public static IBaseAction Create29431() +{ + IBaseAction action = new BaseAction(ActionID.ClosedPosition_PvP); + ModifyClosedPosition_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29431"><strong>Closed Position</strong></see> <i>PvP</i> (DNC) [29431] [Ability] +/// </summary> +static partial void ModifyClosedPosition_29431(ref IBaseAction action); +public static IBaseAction Create29432() +{ + IBaseAction action = new BaseAction(ActionID.Contradance_PvP); + ModifyContradance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29432"><strong>Contradance</strong></see> <i>PvP</i> (DNC) [29432] [Limit Break] +/// </summary> +static partial void ModifyContradance_29432(ref IBaseAction action); +public static IBaseAction Create29463() +{ + IBaseAction action = new BaseAction(ActionID.Bark_PvE); + ModifyBark_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29463"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount] +/// </summary> +static partial void ModifyBark_29463(ref IBaseAction action); +public static IBaseAction Create29464() +{ + IBaseAction action = new BaseAction(ActionID.Wag_PvE); + ModifyWag_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29464"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount] +/// </summary> +static partial void ModifyWag_29464(ref IBaseAction action); +public static IBaseAction Create29465() +{ + IBaseAction action = new BaseAction(ActionID.Whimper_PvE); + ModifyWhimper_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29465"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount] +/// </summary> +static partial void ModifyWhimper_29465(ref IBaseAction action); +public static IBaseAction Create29469() +{ + IBaseAction action = new BaseAction(ActionID.TerminalTrigger_PvP_29469); + ModifyTerminalTrigger_PvP_29469(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29469"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29469] [Limit Break] +/// </summary> +static partial void ModifyTerminalTrigger_29469(ref IBaseAction action); +public static IBaseAction Create29470() +{ + IBaseAction action = new BaseAction(ActionID.HoningOvation_PvP_29470); + ModifyHoningOvation_PvP_29470(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29470"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29470] [Weaponskill] +/// </summary> +static partial void ModifyHoningOvation_29470(ref IBaseAction action); +public static IBaseAction Create29472() +{ + IBaseAction action = new BaseAction(ActionID.Bootshine_PvP); + ModifyBootshine_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29472"><strong>Bootshine</strong></see> <i>PvP</i> (MNK) [29472] [Weaponskill] +/// </summary> +static partial void ModifyBootshine_29472(ref IBaseAction action); +public static IBaseAction Create29473() +{ + IBaseAction action = new BaseAction(ActionID.TrueStrike_PvP); + ModifyTrueStrike_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29473"><strong>True Strike</strong></see> <i>PvP</i> (MNK) [29473] [Weaponskill] +/// </summary> +static partial void ModifyTrueStrike_29473(ref IBaseAction action); +public static IBaseAction Create29474() +{ + IBaseAction action = new BaseAction(ActionID.SnapPunch_PvP); + ModifySnapPunch_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29474"><strong>Snap Punch</strong></see> <i>PvP</i> (MNK) [29474] [Weaponskill] +/// </summary> +static partial void ModifySnapPunch_29474(ref IBaseAction action); +public static IBaseAction Create29475() +{ + IBaseAction action = new BaseAction(ActionID.DragonKick_PvP); + ModifyDragonKick_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29475"><strong>Dragon Kick</strong></see> <i>PvP</i> (MNK) [29475] [Weaponskill] +/// </summary> +static partial void ModifyDragonKick_29475(ref IBaseAction action); +public static IBaseAction Create29476() +{ + IBaseAction action = new BaseAction(ActionID.TwinSnakes_PvP); + ModifyTwinSnakes_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29476"><strong>Twin Snakes</strong></see> <i>PvP</i> (MNK) [29476] [Weaponskill] +/// </summary> +static partial void ModifyTwinSnakes_29476(ref IBaseAction action); +public static IBaseAction Create29477() +{ + IBaseAction action = new BaseAction(ActionID.Demolish_PvP); + ModifyDemolish_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29477"><strong>Demolish</strong></see> <i>PvP</i> (MNK) [29477] [Weaponskill] +/// </summary> +static partial void ModifyDemolish_29477(ref IBaseAction action); +public static IBaseAction Create29478() +{ + IBaseAction action = new BaseAction(ActionID.PhantomRush_PvP); + ModifyPhantomRush_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29478"><strong>Phantom Rush</strong></see> <i>PvP</i> (MNK) [29478] [Weaponskill] +/// </summary> +static partial void ModifyPhantomRush_29478(ref IBaseAction action); +public static IBaseAction Create29479() +{ + IBaseAction action = new BaseAction(ActionID.SixsidedStar_PvP); + ModifySixsidedStar_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29479"><strong>Six-sided Star</strong></see> <i>PvP</i> (MNK) [29479] [Ability] +/// </summary> +static partial void ModifySixsidedStar_29479(ref IBaseAction action); +public static IBaseAction Create29480() +{ + IBaseAction action = new BaseAction(ActionID.Enlightenment_PvP); + ModifyEnlightenment_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29480"><strong>Enlightenment</strong></see> <i>PvP</i> (MNK) [29480] [Weaponskill] +/// </summary> +static partial void ModifyEnlightenment_29480(ref IBaseAction action); +public static IBaseAction Create29481() +{ + IBaseAction action = new BaseAction(ActionID.RisingPhoenix_PvP); + ModifyRisingPhoenix_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29481"><strong>Rising Phoenix</strong></see> <i>PvP</i> (MNK) [29481] [Ability] +/// </summary> +static partial void ModifyRisingPhoenix_29481(ref IBaseAction action); +public static IBaseAction Create29482() +{ + IBaseAction action = new BaseAction(ActionID.RiddleOfEarth_PvP); + ModifyRiddleOfEarth_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29482"><strong>Riddle of Earth</strong></see> <i>PvP</i> (MNK) [29482] [Ability] +/// </summary> +static partial void ModifyRiddleOfEarth_29482(ref IBaseAction action); +public static IBaseAction Create29483() +{ + IBaseAction action = new BaseAction(ActionID.EarthsReply_PvP); + ModifyEarthsReply_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29483"><strong>Earth's Reply</strong></see> <i>PvP</i> (MNK) [29483] [Ability] +/// </summary> +static partial void ModifyEarthsReply_29483(ref IBaseAction action); +public static IBaseAction Create29484() +{ + IBaseAction action = new BaseAction(ActionID.Thunderclap_PvP); + ModifyThunderclap_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29484"><strong>Thunderclap</strong></see> <i>PvP</i> (MNK) [29484] [Ability] +/// </summary> +static partial void ModifyThunderclap_29484(ref IBaseAction action); +public static IBaseAction Create29485() +{ + IBaseAction action = new BaseAction(ActionID.Meteodrive_PvP); + ModifyMeteodrive_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29485"><strong>Meteodrive</strong></see> <i>PvP</i> (MNK) [29485] [Limit Break] +/// </summary> +static partial void ModifyMeteodrive_29485(ref IBaseAction action); +public static IBaseAction Create29486() +{ + IBaseAction action = new BaseAction(ActionID.RaidenThrust_PvP); + ModifyRaidenThrust_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29486"><strong>Raiden Thrust</strong></see> <i>PvP</i> (DRG) [29486] [Weaponskill] +/// </summary> +static partial void ModifyRaidenThrust_29486(ref IBaseAction action); +public static IBaseAction Create29487() +{ + IBaseAction action = new BaseAction(ActionID.FangAndClaw_PvP); + ModifyFangAndClaw_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29487"><strong>Fang and Claw</strong></see> <i>PvP</i> (DRG) [29487] [Weaponskill] +/// </summary> +static partial void ModifyFangAndClaw_29487(ref IBaseAction action); +public static IBaseAction Create29488() +{ + IBaseAction action = new BaseAction(ActionID.WheelingThrust_PvP); + ModifyWheelingThrust_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29488"><strong>Wheeling Thrust</strong></see> <i>PvP</i> (DRG) [29488] [Weaponskill] +/// </summary> +static partial void ModifyWheelingThrust_29488(ref IBaseAction action); +public static IBaseAction Create29489() +{ + IBaseAction action = new BaseAction(ActionID.HeavensThrust_PvP); + ModifyHeavensThrust_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29489"><strong>Heavens' Thrust</strong></see> <i>PvP</i> (DRG) [29489] [Weaponskill] +/// </summary> +static partial void ModifyHeavensThrust_29489(ref IBaseAction action); +public static IBaseAction Create29490() +{ + IBaseAction action = new BaseAction(ActionID.ChaoticSpring_PvP); + ModifyChaoticSpring_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29490"><strong>Chaotic Spring</strong></see> <i>PvP</i> (DRG) [29490] [Weaponskill] +/// </summary> +static partial void ModifyChaoticSpring_29490(ref IBaseAction action); +public static IBaseAction Create29491() +{ + IBaseAction action = new BaseAction(ActionID.Geirskogul_PvP); + ModifyGeirskogul_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29491"><strong>Geirskogul</strong></see> <i>PvP</i> (DRG) [29491] [Ability] +/// </summary> +static partial void ModifyGeirskogul_29491(ref IBaseAction action); +public static IBaseAction Create29492() +{ + IBaseAction action = new BaseAction(ActionID.Nastrond_PvP); + ModifyNastrond_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29492"><strong>Nastrond</strong></see> <i>PvP</i> (DRG) [29492] [Ability] +/// </summary> +static partial void ModifyNastrond_29492(ref IBaseAction action); +public static IBaseAction Create29493() +{ + IBaseAction action = new BaseAction(ActionID.HighJump_PvP); + ModifyHighJump_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29493"><strong>High Jump</strong></see> <i>PvP</i> (DRG) [29493] [Ability] +/// </summary> +static partial void ModifyHighJump_29493(ref IBaseAction action); +public static IBaseAction Create29494() +{ + IBaseAction action = new BaseAction(ActionID.ElusiveJump_PvP); + ModifyElusiveJump_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29494"><strong>Elusive Jump</strong></see> <i>PvP</i> (DRG) [29494] [Ability] +/// </summary> +static partial void ModifyElusiveJump_29494(ref IBaseAction action); +public static IBaseAction Create29495() +{ + IBaseAction action = new BaseAction(ActionID.WyrmwindThrust_PvP); + ModifyWyrmwindThrust_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29495"><strong>Wyrmwind Thrust</strong></see> <i>PvP</i> (DRG) [29495] [Weaponskill] +/// </summary> +static partial void ModifyWyrmwindThrust_29495(ref IBaseAction action); +public static IBaseAction Create29496() +{ + IBaseAction action = new BaseAction(ActionID.HorridRoar_PvP); + ModifyHorridRoar_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29496"><strong>Horrid Roar</strong></see> <i>PvP</i> (DRG) [29496] [Ability] +/// </summary> +static partial void ModifyHorridRoar_29496(ref IBaseAction action); +public static IBaseAction Create29497() +{ + IBaseAction action = new BaseAction(ActionID.SkyHigh_PvP); + ModifySkyHigh_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29497"><strong>Sky High</strong></see> <i>PvP</i> (DRG) [29497] [Limit Break] +/// </summary> +static partial void ModifySkyHigh_29497(ref IBaseAction action); +public static IBaseAction Create29498() +{ + IBaseAction action = new BaseAction(ActionID.SkyShatter_PvP); + ModifySkyShatter_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29498"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29498] [Limit Break] +/// </summary> +static partial void ModifySkyShatter_29498(ref IBaseAction action); +public static IBaseAction Create29499() +{ + IBaseAction action = new BaseAction(ActionID.SkyShatter_PvP_29499); + ModifySkyShatter_PvP_29499(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29499"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29499] [Limit Break] +/// </summary> +static partial void ModifySkyShatter_29499(ref IBaseAction action); +public static IBaseAction Create29500() +{ + IBaseAction action = new BaseAction(ActionID.SpinningEdge_PvP); + ModifySpinningEdge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29500"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29500] [Weaponskill] +/// </summary> +static partial void ModifySpinningEdge_29500(ref IBaseAction action); +public static IBaseAction Create29501() +{ + IBaseAction action = new BaseAction(ActionID.GustSlash_PvP); + ModifyGustSlash_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29501"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29501] [Weaponskill] +/// </summary> +static partial void ModifyGustSlash_29501(ref IBaseAction action); +public static IBaseAction Create29502() +{ + IBaseAction action = new BaseAction(ActionID.AeolianEdge_PvP); + ModifyAeolianEdge_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29502"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29502] [Weaponskill] +/// </summary> +static partial void ModifyAeolianEdge_29502(ref IBaseAction action); +public static IBaseAction Create29503() +{ + IBaseAction action = new BaseAction(ActionID.Assassinate_PvP); + ModifyAssassinate_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29503"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29503] [Weaponskill] +/// </summary> +static partial void ModifyAssassinate_29503(ref IBaseAction action); +public static IBaseAction Create29504() +{ + IBaseAction action = new BaseAction(ActionID.GokaMekkyaku_PvP); + ModifyGokaMekkyaku_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29504"><strong>Goka Mekkyaku</strong></see> <i>PvP</i> (NIN) [29504] [Spell] +/// </summary> +static partial void ModifyGokaMekkyaku_29504(ref IBaseAction action); +public static IBaseAction Create29505() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvP); + ModifyFumaShuriken_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29505"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29505] [Weaponskill] +/// </summary> +static partial void ModifyFumaShuriken_29505(ref IBaseAction action); +public static IBaseAction Create29506() +{ + IBaseAction action = new BaseAction(ActionID.HyoshoRanryu_PvP); + ModifyHyoshoRanryu_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29506"><strong>Hyosho Ranryu</strong></see> <i>PvP</i> (NIN) [29506] [Spell] +/// </summary> +static partial void ModifyHyoshoRanryu_29506(ref IBaseAction action); +public static IBaseAction Create29507() +{ + IBaseAction action = new BaseAction(ActionID.ThreeMudra_PvP); + ModifyThreeMudra_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29507"><strong>Three Mudra</strong></see> <i>PvP</i> (NIN) [29507] [Ability] +/// </summary> +static partial void ModifyThreeMudra_29507(ref IBaseAction action); +public static IBaseAction Create29508() +{ + IBaseAction action = new BaseAction(ActionID.Meisui_PvP); + ModifyMeisui_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29508"><strong>Meisui</strong></see> <i>PvP</i> (NIN) [29508] [Spell] +/// </summary> +static partial void ModifyMeisui_29508(ref IBaseAction action); +public static IBaseAction Create29509() +{ + IBaseAction action = new BaseAction(ActionID.Mug_PvP); + ModifyMug_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29509"><strong>Mug</strong></see> <i>PvP</i> (NIN) [29509] [Ability] +/// </summary> +static partial void ModifyMug_29509(ref IBaseAction action); +public static IBaseAction Create29510() +{ + IBaseAction action = new BaseAction(ActionID.ForkedRaiju_PvP); + ModifyForkedRaiju_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29510"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29510] [Weaponskill] +/// </summary> +static partial void ModifyForkedRaiju_29510(ref IBaseAction action); +public static IBaseAction Create29511() +{ + IBaseAction action = new BaseAction(ActionID.Bunshin_PvP); + ModifyBunshin_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29511"><strong>Bunshin</strong></see> <i>PvP</i> (NIN) [29511] [Ability] +/// </summary> +static partial void ModifyBunshin_29511(ref IBaseAction action); +public static IBaseAction Create29512() +{ + IBaseAction action = new BaseAction(ActionID.Huton_PvP); + ModifyHuton_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29512"><strong>Huton</strong></see> <i>PvP</i> (NIN) [29512] [Spell] +/// </summary> +static partial void ModifyHuton_29512(ref IBaseAction action); +public static IBaseAction Create29513() +{ + IBaseAction action = new BaseAction(ActionID.Shukuchi_PvP); + ModifyShukuchi_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29513"><strong>Shukuchi</strong></see> <i>PvP</i> (NIN) [29513] [Ability] +/// </summary> +static partial void ModifyShukuchi_29513(ref IBaseAction action); +public static IBaseAction Create29514() +{ + IBaseAction action = new BaseAction(ActionID.Doton_PvP); + ModifyDoton_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29514"><strong>Doton</strong></see> <i>PvP</i> (NIN) [29514] [Spell] +/// </summary> +static partial void ModifyDoton_29514(ref IBaseAction action); +public static IBaseAction Create29515() +{ + IBaseAction action = new BaseAction(ActionID.SeitonTenchu_PvP); + ModifySeitonTenchu_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29515"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29515] [Limit Break] +/// </summary> +static partial void ModifySeitonTenchu_29515(ref IBaseAction action); +public static IBaseAction Create29516() +{ + IBaseAction action = new BaseAction(ActionID.SeitonTenchu_PvP_29516); + ModifySeitonTenchu_PvP_29516(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29516"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29516] [Limit Break] +/// </summary> +static partial void ModifySeitonTenchu_29516(ref IBaseAction action); +public static IBaseAction Create29517() +{ + IBaseAction action = new BaseAction(ActionID.SpinningEdge_PvP_29517); + ModifySpinningEdge_PvP_29517(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29517"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29517] [Weaponskill] +/// </summary> +static partial void ModifySpinningEdge_29517(ref IBaseAction action); +public static IBaseAction Create29518() +{ + IBaseAction action = new BaseAction(ActionID.GustSlash_PvP_29518); + ModifyGustSlash_PvP_29518(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29518"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29518] [Weaponskill] +/// </summary> +static partial void ModifyGustSlash_29518(ref IBaseAction action); +public static IBaseAction Create29519() +{ + IBaseAction action = new BaseAction(ActionID.AeolianEdge_PvP_29519); + ModifyAeolianEdge_PvP_29519(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29519"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29519] [Weaponskill] +/// </summary> +static partial void ModifyAeolianEdge_29519(ref IBaseAction action); +public static IBaseAction Create29520() +{ + IBaseAction action = new BaseAction(ActionID.Assassinate_PvP_29520); + ModifyAssassinate_PvP_29520(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29520"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29520] [Weaponskill] +/// </summary> +static partial void ModifyAssassinate_29520(ref IBaseAction action); +public static IBaseAction Create29521() +{ + IBaseAction action = new BaseAction(ActionID.FumaShuriken_PvP_29521); + ModifyFumaShuriken_PvP_29521(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29521"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29521] [Weaponskill] +/// </summary> +static partial void ModifyFumaShuriken_29521(ref IBaseAction action); +public static IBaseAction Create29522() +{ + IBaseAction action = new BaseAction(ActionID.ForkedRaiju_PvP_29522); + ModifyForkedRaiju_PvP_29522(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29522"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29522] [Weaponskill] +/// </summary> +static partial void ModifyForkedRaiju_29522(ref IBaseAction action); +public static IBaseAction Create29523() +{ + IBaseAction action = new BaseAction(ActionID.Yukikaze_PvP); + ModifyYukikaze_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29523"><strong>Yukikaze</strong></see> <i>PvP</i> (SAM) [29523] [Weaponskill] +/// </summary> +static partial void ModifyYukikaze_29523(ref IBaseAction action); +public static IBaseAction Create29524() +{ + IBaseAction action = new BaseAction(ActionID.Gekko_PvP); + ModifyGekko_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29524"><strong>Gekko</strong></see> <i>PvP</i> (SAM) [29524] [Weaponskill] +/// </summary> +static partial void ModifyGekko_29524(ref IBaseAction action); +public static IBaseAction Create29525() +{ + IBaseAction action = new BaseAction(ActionID.Kasha_PvP); + ModifyKasha_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29525"><strong>Kasha</strong></see> <i>PvP</i> (SAM) [29525] [Weaponskill] +/// </summary> +static partial void ModifyKasha_29525(ref IBaseAction action); +public static IBaseAction Create29526() +{ + IBaseAction action = new BaseAction(ActionID.Hyosetsu_PvP); + ModifyHyosetsu_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29526"><strong>Hyosetsu</strong></see> <i>PvP</i> (SAM) [29526] [Weaponskill] +/// </summary> +static partial void ModifyHyosetsu_29526(ref IBaseAction action); +public static IBaseAction Create29527() +{ + IBaseAction action = new BaseAction(ActionID.Mangetsu_PvP); + ModifyMangetsu_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29527"><strong>Mangetsu</strong></see> <i>PvP</i> (SAM) [29527] [Weaponskill] +/// </summary> +static partial void ModifyMangetsu_29527(ref IBaseAction action); +public static IBaseAction Create29528() +{ + IBaseAction action = new BaseAction(ActionID.Oka_PvP); + ModifyOka_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29528"><strong>Oka</strong></see> <i>PvP</i> (SAM) [29528] [Weaponskill] +/// </summary> +static partial void ModifyOka_29528(ref IBaseAction action); +public static IBaseAction Create29529() +{ + IBaseAction action = new BaseAction(ActionID.MidareSetsugekka_PvP); + ModifyMidareSetsugekka_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29529"><strong>Midare Setsugekka</strong></see> <i>PvP</i> (SAM) [29529] [Weaponskill] +/// </summary> +static partial void ModifyMidareSetsugekka_29529(ref IBaseAction action); +public static IBaseAction Create29530() +{ + IBaseAction action = new BaseAction(ActionID.OgiNamikiri_PvP); + ModifyOgiNamikiri_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29530"><strong>Ogi Namikiri</strong></see> <i>PvP</i> (SAM) [29530] [Weaponskill] +/// </summary> +static partial void ModifyOgiNamikiri_29530(ref IBaseAction action); +public static IBaseAction Create29531() +{ + IBaseAction action = new BaseAction(ActionID.KaeshiNamikiri_PvP); + ModifyKaeshiNamikiri_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29531"><strong>Kaeshi: Namikiri</strong></see> <i>PvP</i> (SAM) [29531] [Weaponskill] +/// </summary> +static partial void ModifyKaeshiNamikiri_29531(ref IBaseAction action); +public static IBaseAction Create29532() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuSoten_PvP); + ModifyHissatsuSoten_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29532"><strong>Hissatsu: Soten</strong></see> <i>PvP</i> (SAM) [29532] [Ability] +/// </summary> +static partial void ModifyHissatsuSoten_29532(ref IBaseAction action); +public static IBaseAction Create29533() +{ + IBaseAction action = new BaseAction(ActionID.HissatsuChiten_PvP); + ModifyHissatsuChiten_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29533"><strong>Hissatsu: Chiten</strong></see> <i>PvP</i> (SAM) [29533] [Ability] +/// </summary> +static partial void ModifyHissatsuChiten_29533(ref IBaseAction action); +public static IBaseAction Create29535() +{ + IBaseAction action = new BaseAction(ActionID.Mineuchi_PvP); + ModifyMineuchi_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29535"><strong>Mineuchi</strong></see> <i>PvP</i> (SAM) [29535] [Ability] +/// </summary> +static partial void ModifyMineuchi_29535(ref IBaseAction action); +public static IBaseAction Create29536() +{ + IBaseAction action = new BaseAction(ActionID.MeikyoShisui_PvP); + ModifyMeikyoShisui_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29536"><strong>Meikyo Shisui</strong></see> <i>PvP</i> (SAM) [29536] [Ability] +/// </summary> +static partial void ModifyMeikyoShisui_29536(ref IBaseAction action); +public static IBaseAction Create29537() +{ + IBaseAction action = new BaseAction(ActionID.Zantetsuken_PvP); + ModifyZantetsuken_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29537"><strong>Zantetsuken</strong></see> <i>PvP</i> (SAM) [29537] [Limit Break] +/// </summary> +static partial void ModifyZantetsuken_29537(ref IBaseAction action); +public static IBaseAction Create29538() +{ + IBaseAction action = new BaseAction(ActionID.Slice_PvP); + ModifySlice_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29538"><strong>Slice</strong></see> <i>PvP</i> (RPR) [29538] [Weaponskill] +/// </summary> +static partial void ModifySlice_29538(ref IBaseAction action); +public static IBaseAction Create29539() +{ + IBaseAction action = new BaseAction(ActionID.WaxingSlice_PvP); + ModifyWaxingSlice_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29539"><strong>Waxing Slice</strong></see> <i>PvP</i> (RPR) [29539] [Weaponskill] +/// </summary> +static partial void ModifyWaxingSlice_29539(ref IBaseAction action); +public static IBaseAction Create29540() +{ + IBaseAction action = new BaseAction(ActionID.InfernalSlice_PvP); + ModifyInfernalSlice_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29540"><strong>Infernal Slice</strong></see> <i>PvP</i> (RPR) [29540] [Weaponskill] +/// </summary> +static partial void ModifyInfernalSlice_29540(ref IBaseAction action); +public static IBaseAction Create29543() +{ + IBaseAction action = new BaseAction(ActionID.VoidReaping_PvP); + ModifyVoidReaping_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29543"><strong>Void Reaping</strong></see> <i>PvP</i> (RPR) [29543] [Weaponskill] +/// </summary> +static partial void ModifyVoidReaping_29543(ref IBaseAction action); +public static IBaseAction Create29544() +{ + IBaseAction action = new BaseAction(ActionID.CrossReaping_PvP); + ModifyCrossReaping_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29544"><strong>Cross Reaping</strong></see> <i>PvP</i> (RPR) [29544] [Weaponskill] +/// </summary> +static partial void ModifyCrossReaping_29544(ref IBaseAction action); +public static IBaseAction Create29545() +{ + IBaseAction action = new BaseAction(ActionID.HarvestMoon_PvP); + ModifyHarvestMoon_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29545"><strong>Harvest Moon</strong></see> <i>PvP</i> (RPR) [29545] [Ability] +/// </summary> +static partial void ModifyHarvestMoon_29545(ref IBaseAction action); +public static IBaseAction Create29546() +{ + IBaseAction action = new BaseAction(ActionID.PlentifulHarvest_PvP); + ModifyPlentifulHarvest_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29546"><strong>Plentiful Harvest</strong></see> <i>PvP</i> (RPR) [29546] [Weaponskill] +/// </summary> +static partial void ModifyPlentifulHarvest_29546(ref IBaseAction action); +public static IBaseAction Create29547() +{ + IBaseAction action = new BaseAction(ActionID.GrimSwathe_PvP); + ModifyGrimSwathe_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29547"><strong>Grim Swathe</strong></see> <i>PvP</i> (RPR) [29547] [Ability] +/// </summary> +static partial void ModifyGrimSwathe_29547(ref IBaseAction action); +public static IBaseAction Create29548() +{ + IBaseAction action = new BaseAction(ActionID.LemuresSlice_PvP); + ModifyLemuresSlice_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29548"><strong>Lemure's Slice</strong></see> <i>PvP</i> (RPR) [29548] [Ability] +/// </summary> +static partial void ModifyLemuresSlice_29548(ref IBaseAction action); +public static IBaseAction Create29549() +{ + IBaseAction action = new BaseAction(ActionID.DeathWarrant_PvP); + ModifyDeathWarrant_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29549"><strong>Death Warrant</strong></see> <i>PvP</i> (RPR) [29549] [Ability] +/// </summary> +static partial void ModifyDeathWarrant_29549(ref IBaseAction action); +public static IBaseAction Create29550() +{ + IBaseAction action = new BaseAction(ActionID.HellsIngress_PvP); + ModifyHellsIngress_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29550"><strong>Hell's Ingress</strong></see> <i>PvP</i> (RPR) [29550] [Ability] +/// </summary> +static partial void ModifyHellsIngress_29550(ref IBaseAction action); +public static IBaseAction Create29551() +{ + IBaseAction action = new BaseAction(ActionID.Regress_PvP); + ModifyRegress_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29551"><strong>Regress</strong></see> <i>PvP</i> (RPR) [29551] [Ability] +/// </summary> +static partial void ModifyRegress_29551(ref IBaseAction action); +public static IBaseAction Create29552() +{ + IBaseAction action = new BaseAction(ActionID.ArcaneCrest_PvP); + ModifyArcaneCrest_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29552"><strong>Arcane Crest</strong></see> <i>PvP</i> (RPR) [29552] [Ability] +/// </summary> +static partial void ModifyArcaneCrest_29552(ref IBaseAction action); +public static IBaseAction Create29553() +{ + IBaseAction action = new BaseAction(ActionID.TenebraeLemurum_PvP); + ModifyTenebraeLemurum_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29553"><strong>Tenebrae Lemurum</strong></see> <i>PvP</i> (RPR) [29553] [Limit Break] +/// </summary> +static partial void ModifyTenebraeLemurum_29553(ref IBaseAction action); +public static IBaseAction Create29554() +{ + IBaseAction action = new BaseAction(ActionID.Communio_PvP); + ModifyCommunio_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29554"><strong>Communio</strong></see> <i>PvP</i> (RPR) [29554] [Spell] +/// </summary> +static partial void ModifyCommunio_29554(ref IBaseAction action); +public static IBaseAction Create29566() +{ + IBaseAction action = new BaseAction(ActionID.SoulSlice_PvP); + ModifySoulSlice_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29566"><strong>Soul Slice</strong></see> <i>PvP</i> (RPR) [29566] [Weaponskill] +/// </summary> +static partial void ModifySoulSlice_29566(ref IBaseAction action); +public static IBaseAction Create29573() +{ + IBaseAction action = new BaseAction(ActionID.IsleReturn_PvE); + ModifyIsleReturn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29573"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System] +/// </summary> +static partial void ModifyIsleReturn_29573(ref IBaseAction action); +public static IBaseAction Create29649() +{ + IBaseAction action = new BaseAction(ActionID.Fire_PvP); + ModifyFire_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29649"><strong>Fire</strong></see> <i>PvP</i> (BLM) [29649] [Spell] +/// </summary> +static partial void ModifyFire_29649(ref IBaseAction action); +public static IBaseAction Create29650() +{ + IBaseAction action = new BaseAction(ActionID.FireIv_PvP); + ModifyFireIv_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29650"><strong>Fire IV</strong></see> <i>PvP</i> (BLM) [29650] [Spell] +/// </summary> +static partial void ModifyFireIv_29650(ref IBaseAction action); +public static IBaseAction Create29651() +{ + IBaseAction action = new BaseAction(ActionID.Flare_PvP); + ModifyFlare_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29651"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29651] [Spell] +/// </summary> +static partial void ModifyFlare_29651(ref IBaseAction action); +public static IBaseAction Create29652() +{ + IBaseAction action = new BaseAction(ActionID.Flare_PvP_29652); + ModifyFlare_PvP_29652(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29652"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29652] [Spell] +/// </summary> +static partial void ModifyFlare_29652(ref IBaseAction action); +public static IBaseAction Create29653() +{ + IBaseAction action = new BaseAction(ActionID.Blizzard_PvP); + ModifyBlizzard_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29653"><strong>Blizzard</strong></see> <i>PvP</i> (BLM) [29653] [Spell] +/// </summary> +static partial void ModifyBlizzard_29653(ref IBaseAction action); +public static IBaseAction Create29654() +{ + IBaseAction action = new BaseAction(ActionID.BlizzardIv_PvP); + ModifyBlizzardIv_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29654"><strong>Blizzard IV</strong></see> <i>PvP</i> (BLM) [29654] [Spell] +/// </summary> +static partial void ModifyBlizzardIv_29654(ref IBaseAction action); +public static IBaseAction Create29655() +{ + IBaseAction action = new BaseAction(ActionID.Freeze_PvP); + ModifyFreeze_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29655"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29655] [Spell] +/// </summary> +static partial void ModifyFreeze_29655(ref IBaseAction action); +public static IBaseAction Create29656() +{ + IBaseAction action = new BaseAction(ActionID.Freeze_PvP_29656); + ModifyFreeze_PvP_29656(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29656"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29656] [Spell] +/// </summary> +static partial void ModifyFreeze_29656(ref IBaseAction action); +public static IBaseAction Create29657() +{ + IBaseAction action = new BaseAction(ActionID.Burst_PvP); + ModifyBurst_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29657"><strong>Burst</strong></see> <i>PvP</i> (BLM) [29657] [Spell] +/// </summary> +static partial void ModifyBurst_29657(ref IBaseAction action); +public static IBaseAction Create29659() +{ + IBaseAction action = new BaseAction(ActionID.NightWing_PvP); + ModifyNightWing_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29659"><strong>Night Wing</strong></see> <i>PvP</i> (BLM) [29659] [Ability] +/// </summary> +static partial void ModifyNightWing_29659(ref IBaseAction action); +public static IBaseAction Create29660() +{ + IBaseAction action = new BaseAction(ActionID.AetherialManipulation_PvP); + ModifyAetherialManipulation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29660"><strong>Aetherial Manipulation</strong></see> <i>PvP</i> (BLM) [29660] [Ability] +/// </summary> +static partial void ModifyAetherialManipulation_29660(ref IBaseAction action); +public static IBaseAction Create29661() +{ + IBaseAction action = new BaseAction(ActionID.Superflare_PvP); + ModifySuperflare_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29661"><strong>Superflare</strong></see> <i>PvP</i> (BLM) [29661] [Ability] +/// </summary> +static partial void ModifySuperflare_29661(ref IBaseAction action); +public static IBaseAction Create29662() +{ + IBaseAction action = new BaseAction(ActionID.SoulResonance_PvP); + ModifySoulResonance_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29662"><strong>Soul Resonance</strong></see> <i>PvP</i> (BLM) [29662] [Limit Break] +/// </summary> +static partial void ModifySoulResonance_29662(ref IBaseAction action); +public static IBaseAction Create29663() +{ + IBaseAction action = new BaseAction(ActionID.Paradox_PvP); + ModifyParadox_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29663"><strong>Paradox</strong></see> <i>PvP</i> (BLM) [29663] [Spell] +/// </summary> +static partial void ModifyParadox_29663(ref IBaseAction action); +public static IBaseAction Create29664() +{ + IBaseAction action = new BaseAction(ActionID.RuinIii_PvP); + ModifyRuinIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29664"><strong>Ruin III</strong></see> <i>PvP</i> (SMN) [29664] [Spell] +/// </summary> +static partial void ModifyRuinIii_29664(ref IBaseAction action); +public static IBaseAction Create29665() +{ + IBaseAction action = new BaseAction(ActionID.AstralImpulse_PvP); + ModifyAstralImpulse_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29665"><strong>Astral Impulse</strong></see> <i>PvP</i> (SMN) [29665] [Spell] +/// </summary> +static partial void ModifyAstralImpulse_29665(ref IBaseAction action); +public static IBaseAction Create29666() +{ + IBaseAction action = new BaseAction(ActionID.FountainOfFire_PvP); + ModifyFountainOfFire_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29666"><strong>Fountain of Fire</strong></see> <i>PvP</i> (SMN) [29666] [Spell] +/// </summary> +static partial void ModifyFountainOfFire_29666(ref IBaseAction action); +public static IBaseAction Create29667() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonCyclone_PvP); + ModifyCrimsonCyclone_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29667"><strong>Crimson Cyclone</strong></see> <i>PvP</i> (SMN) [29667] [Spell] +/// </summary> +static partial void ModifyCrimsonCyclone_29667(ref IBaseAction action); +public static IBaseAction Create29668() +{ + IBaseAction action = new BaseAction(ActionID.CrimsonStrike_PvP); + ModifyCrimsonStrike_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29668"><strong>Crimson Strike</strong></see> <i>PvP</i> (SMN) [29668] [Spell] +/// </summary> +static partial void ModifyCrimsonStrike_29668(ref IBaseAction action); +public static IBaseAction Create29669() +{ + IBaseAction action = new BaseAction(ActionID.Slipstream_PvP); + ModifySlipstream_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29669"><strong>Slipstream</strong></see> <i>PvP</i> (SMN) [29669] [Spell] +/// </summary> +static partial void ModifySlipstream_29669(ref IBaseAction action); +public static IBaseAction Create29670() +{ + IBaseAction action = new BaseAction(ActionID.RadiantAegis_PvP); + ModifyRadiantAegis_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29670"><strong>Radiant Aegis</strong></see> <i>PvP</i> (SMN) [29670] [Ability] +/// </summary> +static partial void ModifyRadiantAegis_29670(ref IBaseAction action); +public static IBaseAction Create29671() +{ + IBaseAction action = new BaseAction(ActionID.MountainBuster_PvP); + ModifyMountainBuster_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29671"><strong>Mountain Buster</strong></see> <i>PvP</i> (SMN) [29671] [Ability] +/// </summary> +static partial void ModifyMountainBuster_29671(ref IBaseAction action); +public static IBaseAction Create29672() +{ + IBaseAction action = new BaseAction(ActionID.Fester_PvP); + ModifyFester_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29672"><strong>Fester</strong></see> <i>PvP</i> (SMN) [29672] [Ability] +/// </summary> +static partial void ModifyFester_29672(ref IBaseAction action); +public static IBaseAction Create29673() +{ + IBaseAction action = new BaseAction(ActionID.SummonBahamut_PvP); + ModifySummonBahamut_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29673"><strong>Summon Bahamut</strong></see> <i>PvP</i> (SMN) [29673] [Limit Break] +/// </summary> +static partial void ModifySummonBahamut_29673(ref IBaseAction action); +public static IBaseAction Create29674() +{ + IBaseAction action = new BaseAction(ActionID.EnkindleBahamut_PvP); + ModifyEnkindleBahamut_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29674"><strong>Enkindle Bahamut</strong></see> <i>PvP</i> (SMN) [29674] [Ability] +/// </summary> +static partial void ModifyEnkindleBahamut_29674(ref IBaseAction action); +public static IBaseAction Create29675() +{ + IBaseAction action = new BaseAction(ActionID.Megaflare_PvP); + ModifyMegaflare_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29675"><strong>Megaflare</strong></see> <i>PvP</i> (SMN) [29675] [Ability] +/// </summary> +static partial void ModifyMegaflare_29675(ref IBaseAction action); +public static IBaseAction Create29676() +{ + IBaseAction action = new BaseAction(ActionID.Wyrmwave_PvP); + ModifyWyrmwave_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29676"><strong>Wyrmwave</strong></see> <i>PvP</i> (SMN) [29676] [Spell] +/// </summary> +static partial void ModifyWyrmwave_29676(ref IBaseAction action); +public static IBaseAction Create29677() +{ + IBaseAction action = new BaseAction(ActionID.AkhMorn_PvP); + ModifyAkhMorn_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29677"><strong>Akh Morn</strong></see> <i>PvP</i> (SMN) [29677] [Ability] +/// </summary> +static partial void ModifyAkhMorn_29677(ref IBaseAction action); +public static IBaseAction Create29678() +{ + IBaseAction action = new BaseAction(ActionID.SummonPhoenix_PvP); + ModifySummonPhoenix_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29678"><strong>Summon Phoenix</strong></see> <i>PvP</i> (SMN) [29678] [Limit Break] +/// </summary> +static partial void ModifySummonPhoenix_29678(ref IBaseAction action); +public static IBaseAction Create29679() +{ + IBaseAction action = new BaseAction(ActionID.EnkindlePhoenix_PvP); + ModifyEnkindlePhoenix_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29679"><strong>Enkindle Phoenix</strong></see> <i>PvP</i> (SMN) [29679] [Ability] +/// </summary> +static partial void ModifyEnkindlePhoenix_29679(ref IBaseAction action); +public static IBaseAction Create29680() +{ + IBaseAction action = new BaseAction(ActionID.EverlastingFlight_PvP); + ModifyEverlastingFlight_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29680"><strong>Everlasting Flight</strong></see> <i>PvP</i> (SMN) [29680] [Ability] +/// </summary> +static partial void ModifyEverlastingFlight_29680(ref IBaseAction action); +public static IBaseAction Create29681() +{ + IBaseAction action = new BaseAction(ActionID.ScarletFlame_PvP); + ModifyScarletFlame_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29681"><strong>Scarlet Flame</strong></see> <i>PvP</i> (SMN) [29681] [Spell] +/// </summary> +static partial void ModifyScarletFlame_29681(ref IBaseAction action); +public static IBaseAction Create29682() +{ + IBaseAction action = new BaseAction(ActionID.Revelation_PvP); + ModifyRevelation_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29682"><strong>Revelation</strong></see> <i>PvP</i> (SMN) [29682] [Ability] +/// </summary> +static partial void ModifyRevelation_29682(ref IBaseAction action); +public static IBaseAction Create29683() +{ + IBaseAction action = new BaseAction(ActionID.Verstone_PvP); + ModifyVerstone_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29683"><strong>Verstone</strong></see> <i>PvP</i> (RDM) [29683] [Spell] +/// </summary> +static partial void ModifyVerstone_29683(ref IBaseAction action); +public static IBaseAction Create29684() +{ + IBaseAction action = new BaseAction(ActionID.VeraeroIii_PvP); + ModifyVeraeroIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29684"><strong>Veraero III</strong></see> <i>PvP</i> (RDM) [29684] [Spell] +/// </summary> +static partial void ModifyVeraeroIii_29684(ref IBaseAction action); +public static IBaseAction Create29685() +{ + IBaseAction action = new BaseAction(ActionID.Verholy_PvP); + ModifyVerholy_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29685"><strong>Verholy</strong></see> <i>PvP</i> (RDM) [29685] [Spell] +/// </summary> +static partial void ModifyVerholy_29685(ref IBaseAction action); +public static IBaseAction Create29686() +{ + IBaseAction action = new BaseAction(ActionID.Verfire_PvP); + ModifyVerfire_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29686"><strong>Verfire</strong></see> <i>PvP</i> (RDM) [29686] [Spell] +/// </summary> +static partial void ModifyVerfire_29686(ref IBaseAction action); +public static IBaseAction Create29687() +{ + IBaseAction action = new BaseAction(ActionID.VerthunderIii_PvP); + ModifyVerthunderIii_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29687"><strong>Verthunder III</strong></see> <i>PvP</i> (RDM) [29687] [Spell] +/// </summary> +static partial void ModifyVerthunderIii_29687(ref IBaseAction action); +public static IBaseAction Create29688() +{ + IBaseAction action = new BaseAction(ActionID.Verflare_PvP); + ModifyVerflare_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29688"><strong>Verflare</strong></see> <i>PvP</i> (RDM) [29688] [Spell] +/// </summary> +static partial void ModifyVerflare_29688(ref IBaseAction action); +public static IBaseAction Create29689() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRiposte_PvP); + ModifyEnchantedRiposte_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29689"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29689] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRiposte_29689(ref IBaseAction action); +public static IBaseAction Create29690() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedZwerchhau_PvP); + ModifyEnchantedZwerchhau_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29690"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29690] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedZwerchhau_29690(ref IBaseAction action); +public static IBaseAction Create29691() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRedoublement_PvP); + ModifyEnchantedRedoublement_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29691"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29691] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRedoublement_29691(ref IBaseAction action); +public static IBaseAction Create29692() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRiposte_PvP_29692); + ModifyEnchantedRiposte_PvP_29692(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29692"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29692] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRiposte_29692(ref IBaseAction action); +public static IBaseAction Create29693() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedZwerchhau_PvP_29693); + ModifyEnchantedZwerchhau_PvP_29693(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29693"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29693] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedZwerchhau_29693(ref IBaseAction action); +public static IBaseAction Create29694() +{ + IBaseAction action = new BaseAction(ActionID.EnchantedRedoublement_PvP_29694); + ModifyEnchantedRedoublement_PvP_29694(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29694"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29694] [Weaponskill] +/// </summary> +static partial void ModifyEnchantedRedoublement_29694(ref IBaseAction action); +public static IBaseAction Create29695() +{ + IBaseAction action = new BaseAction(ActionID.Resolution_PvP); + ModifyResolution_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29695"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29695] [Weaponskill] +/// </summary> +static partial void ModifyResolution_29695(ref IBaseAction action); +public static IBaseAction Create29696() +{ + IBaseAction action = new BaseAction(ActionID.Resolution_PvP_29696); + ModifyResolution_PvP_29696(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29696"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29696] [Weaponskill] +/// </summary> +static partial void ModifyResolution_29696(ref IBaseAction action); +public static IBaseAction Create29697() +{ + IBaseAction action = new BaseAction(ActionID.MagickBarrier_PvP); + ModifyMagickBarrier_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29697"><strong>Magick Barrier</strong></see> <i>PvP</i> (RDM) [29697] [Ability] +/// </summary> +static partial void ModifyMagickBarrier_29697(ref IBaseAction action); +public static IBaseAction Create29698() +{ + IBaseAction action = new BaseAction(ActionID.Frazzle_PvP); + ModifyFrazzle_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29698"><strong>Frazzle</strong></see> <i>PvP</i> (RDM) [29698] [Ability] +/// </summary> +static partial void ModifyFrazzle_29698(ref IBaseAction action); +public static IBaseAction Create29699() +{ + IBaseAction action = new BaseAction(ActionID.Corpsacorps_PvP); + ModifyCorpsacorps_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29699"><strong>Corps-a-corps</strong></see> <i>PvP</i> (RDM) [29699] [Ability] +/// </summary> +static partial void ModifyCorpsacorps_29699(ref IBaseAction action); +public static IBaseAction Create29700() +{ + IBaseAction action = new BaseAction(ActionID.Displacement_PvP); + ModifyDisplacement_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29700"><strong>Displacement</strong></see> <i>PvP</i> (RDM) [29700] [Ability] +/// </summary> +static partial void ModifyDisplacement_29700(ref IBaseAction action); +public static IBaseAction Create29702() +{ + IBaseAction action = new BaseAction(ActionID.BlackShift_PvP); + ModifyBlackShift_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29702"><strong>Black Shift</strong></see> <i>PvP</i> (RDM) [29702] [Ability] +/// </summary> +static partial void ModifyBlackShift_29702(ref IBaseAction action); +public static IBaseAction Create29703() +{ + IBaseAction action = new BaseAction(ActionID.WhiteShift_PvP); + ModifyWhiteShift_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29703"><strong>White Shift</strong></see> <i>PvP</i> (RDM) [29703] [Ability] +/// </summary> +static partial void ModifyWhiteShift_29703(ref IBaseAction action); +public static IBaseAction Create29704() +{ + IBaseAction action = new BaseAction(ActionID.SouthernCross_PvP); + ModifySouthernCross_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29704"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29704] [Limit Break] +/// </summary> +static partial void ModifySouthernCross_29704(ref IBaseAction action); +public static IBaseAction Create29705() +{ + IBaseAction action = new BaseAction(ActionID.SouthernCross_PvP_29705); + ModifySouthernCross_PvP_29705(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29705"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29705] [Limit Break] +/// </summary> +static partial void ModifySouthernCross_29705(ref IBaseAction action); +public static IBaseAction Create29707() +{ + IBaseAction action = new BaseAction(ActionID.FleetingRaiju_PvP); + ModifyFleetingRaiju_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29707"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29707] [Weaponskill] +/// </summary> +static partial void ModifyFleetingRaiju_29707(ref IBaseAction action); +public static IBaseAction Create29708() +{ + IBaseAction action = new BaseAction(ActionID.FleetingRaiju_PvP_29708); + ModifyFleetingRaiju_PvP_29708(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29708"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29708] [Weaponskill] +/// </summary> +static partial void ModifyFleetingRaiju_29708(ref IBaseAction action); +public static IBaseAction Create29711() +{ + IBaseAction action = new BaseAction(ActionID.Recuperate_PvP); + ModifyRecuperate_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29711"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability] +/// </summary> +static partial void ModifyRecuperate_29711(ref IBaseAction action); +public static IBaseAction Create29718() +{ + IBaseAction action = new BaseAction(ActionID.ElectricFlux_PvE); + ModifyElectricFlux_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29718"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event] +/// </summary> +static partial void ModifyElectricFlux_29718(ref IBaseAction action); +public static IBaseAction Create29719() +{ + IBaseAction action = new BaseAction(ActionID.ElectricFlux_PvE_29719); + ModifyElectricFlux_PvE_29719(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29719"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount] +/// </summary> +static partial void ModifyElectricFlux_29719(ref IBaseAction action); +public static IBaseAction Create29720() +{ + IBaseAction action = new BaseAction(ActionID.PresentMirage_PvE); + ModifyPresentMirage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29720"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount] +/// </summary> +static partial void ModifyPresentMirage_29720(ref IBaseAction action); +public static IBaseAction Create29729() +{ + IBaseAction action = new BaseAction(ActionID.VariantCure_PvE); + ModifyVariantCure_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29729"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell] +/// </summary> +static partial void ModifyVariantCure_29729(ref IBaseAction action); +public static IBaseAction Create29730() +{ + IBaseAction action = new BaseAction(ActionID.VariantUltimatum_PvE); + ModifyVariantUltimatum_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29730"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability] +/// </summary> +static partial void ModifyVariantUltimatum_29730(ref IBaseAction action); +public static IBaseAction Create29731() +{ + IBaseAction action = new BaseAction(ActionID.VariantRaise_PvE); + ModifyVariantRaise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29731"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell] +/// </summary> +static partial void ModifyVariantRaise_29731(ref IBaseAction action); +public static IBaseAction Create29732() +{ + IBaseAction action = new BaseAction(ActionID.VariantSpiritDart_PvE); + ModifyVariantSpiritDart_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29732"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability] +/// </summary> +static partial void ModifyVariantSpiritDart_29732(ref IBaseAction action); +public static IBaseAction Create29733() +{ + IBaseAction action = new BaseAction(ActionID.VariantRampart_PvE); + ModifyVariantRampart_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29733"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability] +/// </summary> +static partial void ModifyVariantRampart_29733(ref IBaseAction action); +public static IBaseAction Create29734() +{ + IBaseAction action = new BaseAction(ActionID.VariantRaiseIi_PvE); + ModifyVariantRaiseIi_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29734"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell] +/// </summary> +static partial void ModifyVariantRaiseIi_29734(ref IBaseAction action); +public static IBaseAction Create29735() +{ + IBaseAction action = new BaseAction(ActionID.Guard_PvP_29735); + ModifyGuard_PvP_29735(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29735"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability] +/// </summary> +static partial void ModifyGuard_29735(ref IBaseAction action); +public static IBaseAction Create29736() +{ + IBaseAction action = new BaseAction(ActionID.ChaoticCyclone_PvP); + ModifyChaoticCyclone_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29736"><strong>Chaotic Cyclone</strong></see> <i>PvP</i> (WAR) [29736] [Weaponskill] +/// </summary> +static partial void ModifyChaoticCyclone_29736(ref IBaseAction action); +public static IBaseAction Create29737() +{ + IBaseAction action = new BaseAction(ActionID.Quietus_PvP); + ModifyQuietus_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29737"><strong>Quietus</strong></see> <i>PvP</i> (DRK) [29737] [Weaponskill] +/// </summary> +static partial void ModifyQuietus_29737(ref IBaseAction action); +public static IBaseAction Create29738() +{ + IBaseAction action = new BaseAction(ActionID.Shadowbringer_PvP_29738); + ModifyShadowbringer_PvP_29738(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29738"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29738] [Ability] +/// </summary> +static partial void ModifyShadowbringer_29738(ref IBaseAction action); +public static IBaseAction Create29783() +{ + IBaseAction action = new BaseAction(ActionID.TheBole_PvP); + ModifyTheBole_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29783"><strong>the Bole</strong></see> <i>PvP</i> (AST) [29783] [Ability] +/// </summary> +static partial void ModifyTheBole_29783(ref IBaseAction action); +public static IBaseAction Create29784() +{ + IBaseAction action = new BaseAction(ActionID.TheArrow_PvP); + ModifyTheArrow_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/29784"><strong>the Arrow</strong></see> <i>PvP</i> (AST) [29784] [Ability] +/// </summary> +static partial void ModifyTheArrow_29784(ref IBaseAction action); +public static IBaseAction Create30868() +{ + IBaseAction action = new BaseAction(ActionID.UmbrellaDance_PvE); + ModifyUmbrellaDance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/30868"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] [] +/// </summary> +static partial void ModifyUmbrellaDance_30868(ref IBaseAction action); +public static IBaseAction Create30869() +{ + IBaseAction action = new BaseAction(ActionID.RainCheck_PvE); + ModifyRainCheck_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/30869"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] [] +/// </summary> +static partial void ModifyRainCheck_30869(ref IBaseAction action); +public static IBaseAction Create31116() +{ + IBaseAction action = new BaseAction(ActionID.Hopstep_PvE); + ModifyHopstep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31116"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event] +/// </summary> +static partial void ModifyHopstep_31116(ref IBaseAction action); +public static IBaseAction Create31117() +{ + IBaseAction action = new BaseAction(ActionID.Hopstep_PvE_31117); + ModifyHopstep_PvE_31117(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31117"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount] +/// </summary> +static partial void ModifyHopstep_31117(ref IBaseAction action); +public static IBaseAction Create31314() +{ + IBaseAction action = new BaseAction(ActionID.IsleSprint_PvE); + ModifyIsleSprint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31314"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System] +/// </summary> +static partial void ModifyIsleSprint_31314(ref IBaseAction action); +public static IBaseAction Create31393() +{ + IBaseAction action = new BaseAction(ActionID.GentlemanlySmash_PvE); + ModifyGentlemanlySmash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31393"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill] +/// </summary> +static partial void ModifyGentlemanlySmash_31393(ref IBaseAction action); +public static IBaseAction Create31394() +{ + IBaseAction action = new BaseAction(ActionID.GentlemanlyThrust_PvE); + ModifyGentlemanlyThrust_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31394"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill] +/// </summary> +static partial void ModifyGentlemanlyThrust_31394(ref IBaseAction action); +public static IBaseAction Create31395() +{ + IBaseAction action = new BaseAction(ActionID.RageOfTheGentleman_PvE); + ModifyRageOfTheGentleman_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31395"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill] +/// </summary> +static partial void ModifyRageOfTheGentleman_31395(ref IBaseAction action); +public static IBaseAction Create31396() +{ + IBaseAction action = new BaseAction(ActionID.ManderdoubleLariat_PvE); + ModifyManderdoubleLariat_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31396"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability] +/// </summary> +static partial void ModifyManderdoubleLariat_31396(ref IBaseAction action); +public static IBaseAction Create31397() +{ + IBaseAction action = new BaseAction(ActionID.MandervilleDropkick_PvE); + ModifyMandervilleDropkick_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31397"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability] +/// </summary> +static partial void ModifyMandervilleDropkick_31397(ref IBaseAction action); +public static IBaseAction Create31398() +{ + IBaseAction action = new BaseAction(ActionID.MandervilleSprint_PvE); + ModifyMandervilleSprint_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31398"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability] +/// </summary> +static partial void ModifyMandervilleSprint_31398(ref IBaseAction action); +public static IBaseAction Create31399() +{ + IBaseAction action = new BaseAction(ActionID.LimitBreak_PvE); + ModifyLimitBreak_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31399"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill] +/// </summary> +static partial void ModifyLimitBreak_31399(ref IBaseAction action); +public static IBaseAction Create31472() +{ + IBaseAction action = new BaseAction(ActionID.Frighten_PvE); + ModifyFrighten_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31472"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special] +/// </summary> +static partial void ModifyFrighten_31472(ref IBaseAction action); +public static IBaseAction Create31785() +{ + IBaseAction action = new BaseAction(ActionID.Engravement_PvE); + ModifyEngravement_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31785"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability] +/// </summary> +static partial void ModifyEngravement_31785(ref IBaseAction action); +public static IBaseAction Create31786() +{ + IBaseAction action = new BaseAction(ActionID.Slice_PvE_31786); + ModifySlice_PvE_31786(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31786"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill] +/// </summary> +static partial void ModifySlice_31786(ref IBaseAction action); +public static IBaseAction Create31787() +{ + IBaseAction action = new BaseAction(ActionID.WaxingSlice_PvE_31787); + ModifyWaxingSlice_PvE_31787(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31787"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill] +/// </summary> +static partial void ModifyWaxingSlice_31787(ref IBaseAction action); +public static IBaseAction Create31788() +{ + IBaseAction action = new BaseAction(ActionID.InfernalSlice_PvE_31788); + ModifyInfernalSlice_PvE_31788(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31788"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill] +/// </summary> +static partial void ModifyInfernalSlice_31788(ref IBaseAction action); +public static IBaseAction Create31789() +{ + IBaseAction action = new BaseAction(ActionID.SpinningScythe_PvE_31789); + ModifySpinningScythe_PvE_31789(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31789"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill] +/// </summary> +static partial void ModifySpinningScythe_31789(ref IBaseAction action); +public static IBaseAction Create31790() +{ + IBaseAction action = new BaseAction(ActionID.NightmareScythe_PvE_31790); + ModifyNightmareScythe_PvE_31790(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31790"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill] +/// </summary> +static partial void ModifyNightmareScythe_31790(ref IBaseAction action); +public static IBaseAction Create31792() +{ + IBaseAction action = new BaseAction(ActionID.MarkOfTheHarvest_PvE); + ModifyMarkOfTheHarvest_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31792"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill] +/// </summary> +static partial void ModifyMarkOfTheHarvest_31792(ref IBaseAction action); +public static IBaseAction Create31793() +{ + IBaseAction action = new BaseAction(ActionID.ArcaneCrest_PvE_31793); + ModifyArcaneCrest_PvE_31793(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31793"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability] +/// </summary> +static partial void ModifyArcaneCrest_31793(ref IBaseAction action); +public static IBaseAction Create31794() +{ + IBaseAction action = new BaseAction(ActionID.Communio_PvE_31794); + ModifyCommunio_PvE_31794(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31794"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell] +/// </summary> +static partial void ModifyCommunio_31794(ref IBaseAction action); +public static IBaseAction Create31929() +{ + IBaseAction action = new BaseAction(ActionID.MandervilleStep_PvE); + ModifyMandervilleStep_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/31929"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability] +/// </summary> +static partial void ModifyMandervilleStep_31929(ref IBaseAction action); +public static IBaseAction Create32065() +{ + IBaseAction action = new BaseAction(ActionID.ReleaseIronWill_PvE); + ModifyReleaseIronWill_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32065"><strong>Release Iron Will</strong></see> <i>PvE</i> (GLA PLD) [32065] [Ability] +/// </summary> +static partial void ModifyReleaseIronWill_32065(ref IBaseAction action); +public static IBaseAction Create32066() +{ + IBaseAction action = new BaseAction(ActionID.ReleaseDefiance_PvE); + ModifyReleaseDefiance_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32066"><strong>Release Defiance</strong></see> <i>PvE</i> (MRD WAR) [32066] [Ability] +/// </summary> +static partial void ModifyReleaseDefiance_32066(ref IBaseAction action); +public static IBaseAction Create32067() +{ + IBaseAction action = new BaseAction(ActionID.ReleaseGrit_PvE); + ModifyReleaseGrit_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32067"><strong>Release Grit</strong></see> <i>PvE</i> (DRK) [32067] [Ability] +/// </summary> +static partial void ModifyReleaseGrit_32067(ref IBaseAction action); +public static IBaseAction Create32068() +{ + IBaseAction action = new BaseAction(ActionID.ReleaseRoyalGuard_PvE); + ModifyReleaseRoyalGuard_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32068"><strong>Release Royal Guard</strong></see> <i>PvE</i> (GNB) [32068] [Ability] +/// </summary> +static partial void ModifyReleaseRoyalGuard_32068(ref IBaseAction action); +public static IBaseAction Create32542() +{ + IBaseAction action = new BaseAction(ActionID.DemicloneGenerator_PvE); + ModifyDemicloneGenerator_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32542"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] [] +/// </summary> +static partial void ModifyDemicloneGenerator_32542(ref IBaseAction action); +public static IBaseAction Create32781() +{ + IBaseAction action = new BaseAction(ActionID.Rotosmash_PvE); + ModifyRotosmash_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32781"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special] +/// </summary> +static partial void ModifyRotosmash_32781(ref IBaseAction action); +public static IBaseAction Create32782() +{ + IBaseAction action = new BaseAction(ActionID.WreckingBall_PvE); + ModifyWreckingBall_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/32782"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special] +/// </summary> +static partial void ModifyWreckingBall_32782(ref IBaseAction action); +public static IBaseAction Create33013() +{ + IBaseAction action = new BaseAction(ActionID.Bloodbath_PvE_33013); + ModifyBloodbath_PvE_33013(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33013"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability] +/// </summary> +static partial void ModifyBloodbath_33013(ref IBaseAction action); +public static IBaseAction Create33215() +{ + IBaseAction action = new BaseAction(ActionID.SingleTechnicalFinish_PvE_33215); + ModifySingleTechnicalFinish_PvE_33215(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33215"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [33215] [] +/// </summary> +static partial void ModifySingleTechnicalFinish_33215(ref IBaseAction action); +public static IBaseAction Create33216() +{ + IBaseAction action = new BaseAction(ActionID.DoubleTechnicalFinish_PvE_33216); + ModifyDoubleTechnicalFinish_PvE_33216(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33216"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [33216] [] +/// </summary> +static partial void ModifyDoubleTechnicalFinish_33216(ref IBaseAction action); +public static IBaseAction Create33217() +{ + IBaseAction action = new BaseAction(ActionID.TripleTechnicalFinish_PvE_33217); + ModifyTripleTechnicalFinish_PvE_33217(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33217"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [33217] [] +/// </summary> +static partial void ModifyTripleTechnicalFinish_33217(ref IBaseAction action); +public static IBaseAction Create33218() +{ + IBaseAction action = new BaseAction(ActionID.QuadrupleTechnicalFinish_PvE_33218); + ModifyQuadrupleTechnicalFinish_PvE_33218(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33218"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [33218] [] +/// </summary> +static partial void ModifyQuadrupleTechnicalFinish_33218(ref IBaseAction action); +public static IBaseAction Create33268() +{ + IBaseAction action = new BaseAction(ActionID.EggSurprise_PvE); + ModifyEggSurprise_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33268"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event] +/// </summary> +static partial void ModifyEggSurprise_33268(ref IBaseAction action); +public static IBaseAction Create33269() +{ + IBaseAction action = new BaseAction(ActionID.EggSurprise_PvE_33269); + ModifyEggSurprise_PvE_33269(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33269"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount] +/// </summary> +static partial void ModifyEggSurprise_33269(ref IBaseAction action); +public static IBaseAction Create33862() +{ + IBaseAction action = new BaseAction(ActionID.VariantCure_PvE_33862); + ModifyVariantCure_PvE_33862(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33862"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell] +/// </summary> +static partial void ModifyVariantCure_33862(ref IBaseAction action); +public static IBaseAction Create33863() +{ + IBaseAction action = new BaseAction(ActionID.VariantSpiritDart_PvE_33863); + ModifyVariantSpiritDart_PvE_33863(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33863"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability] +/// </summary> +static partial void ModifyVariantSpiritDart_33863(ref IBaseAction action); +public static IBaseAction Create33864() +{ + IBaseAction action = new BaseAction(ActionID.VariantRampart_PvE_33864); + ModifyVariantRampart_PvE_33864(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/33864"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability] +/// </summary> +static partial void ModifyVariantRampart_33864(ref IBaseAction action); +public static IBaseAction Create34563() +{ + IBaseAction action = new BaseAction(ActionID.GoblinPunch_PvE); + ModifyGoblinPunch_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34563"><strong>Goblin Punch</strong></see> <i>PvE</i> (BLU) [34563] [Spell] +/// </summary> +static partial void ModifyGoblinPunch_34563(ref IBaseAction action); +public static IBaseAction Create34564() +{ + IBaseAction action = new BaseAction(ActionID.RightRound_PvE); + ModifyRightRound_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34564"><strong>Right Round</strong></see> <i>PvE</i> (BLU) [34564] [Spell] +/// </summary> +static partial void ModifyRightRound_34564(ref IBaseAction action); +public static IBaseAction Create34565() +{ + IBaseAction action = new BaseAction(ActionID.Schiltron_PvE); + ModifySchiltron_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34565"><strong>Schiltron</strong></see> <i>PvE</i> (BLU) [34565] [Spell] +/// </summary> +static partial void ModifySchiltron_34565(ref IBaseAction action); +public static IBaseAction Create34566() +{ + IBaseAction action = new BaseAction(ActionID.Rehydration_PvE); + ModifyRehydration_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34566"><strong>Rehydration</strong></see> <i>PvE</i> (BLU) [34566] [Spell] +/// </summary> +static partial void ModifyRehydration_34566(ref IBaseAction action); +public static IBaseAction Create34567() +{ + IBaseAction action = new BaseAction(ActionID.BreathOfMagic_PvE); + ModifyBreathOfMagic_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34567"><strong>Breath of Magic</strong></see> <i>PvE</i> (BLU) [34567] [Spell] +/// </summary> +static partial void ModifyBreathOfMagic_34567(ref IBaseAction action); +public static IBaseAction Create34568() +{ + IBaseAction action = new BaseAction(ActionID.WildRage_PvE); + ModifyWildRage_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34568"><strong>Wild Rage</strong></see> <i>PvE</i> (BLU) [34568] [Spell] +/// </summary> +static partial void ModifyWildRage_34568(ref IBaseAction action); +public static IBaseAction Create34569() +{ + IBaseAction action = new BaseAction(ActionID.PeatPelt_PvE); + ModifyPeatPelt_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34569"><strong>Peat Pelt</strong></see> <i>PvE</i> (BLU) [34569] [Spell] +/// </summary> +static partial void ModifyPeatPelt_34569(ref IBaseAction action); +public static IBaseAction Create34570() +{ + IBaseAction action = new BaseAction(ActionID.DeepClean_PvE); + ModifyDeepClean_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34570"><strong>Deep Clean</strong></see> <i>PvE</i> (BLU) [34570] [Spell] +/// </summary> +static partial void ModifyDeepClean_34570(ref IBaseAction action); +public static IBaseAction Create34571() +{ + IBaseAction action = new BaseAction(ActionID.RubyDynamics_PvE); + ModifyRubyDynamics_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34571"><strong>Ruby Dynamics</strong></see> <i>PvE</i> (BLU) [34571] [Spell] +/// </summary> +static partial void ModifyRubyDynamics_34571(ref IBaseAction action); +public static IBaseAction Create34572() +{ + IBaseAction action = new BaseAction(ActionID.DivinationRune_PvE); + ModifyDivinationRune_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34572"><strong>Divination Rune</strong></see> <i>PvE</i> (BLU) [34572] [Spell] +/// </summary> +static partial void ModifyDivinationRune_34572(ref IBaseAction action); +public static IBaseAction Create34573() +{ + IBaseAction action = new BaseAction(ActionID.DimensionalShift_PvE); + ModifyDimensionalShift_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34573"><strong>Dimensional Shift</strong></see> <i>PvE</i> (BLU) [34573] [Spell] +/// </summary> +static partial void ModifyDimensionalShift_34573(ref IBaseAction action); +public static IBaseAction Create34574() +{ + IBaseAction action = new BaseAction(ActionID.ConvictionMarcato_PvE); + ModifyConvictionMarcato_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34574"><strong>Conviction Marcato</strong></see> <i>PvE</i> (BLU) [34574] [Spell] +/// </summary> +static partial void ModifyConvictionMarcato_34574(ref IBaseAction action); +public static IBaseAction Create34575() +{ + IBaseAction action = new BaseAction(ActionID.ForceField_PvE); + ModifyForceField_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34575"><strong>Force Field</strong></see> <i>PvE</i> (BLU) [34575] [Spell] +/// </summary> +static partial void ModifyForceField_34575(ref IBaseAction action); +public static IBaseAction Create34576() +{ + IBaseAction action = new BaseAction(ActionID.WingedReprobation_PvE); + ModifyWingedReprobation_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34576"><strong>Winged Reprobation</strong></see> <i>PvE</i> (BLU) [34576] [Spell] +/// </summary> +static partial void ModifyWingedReprobation_34576(ref IBaseAction action); +public static IBaseAction Create34577() +{ + IBaseAction action = new BaseAction(ActionID.LaserEye_PvE); + ModifyLaserEye_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34577"><strong>Laser Eye</strong></see> <i>PvE</i> (BLU) [34577] [Spell] +/// </summary> +static partial void ModifyLaserEye_34577(ref IBaseAction action); +public static IBaseAction Create34578() +{ + IBaseAction action = new BaseAction(ActionID.CandyCane_PvE); + ModifyCandyCane_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34578"><strong>Candy Cane</strong></see> <i>PvE</i> (BLU) [34578] [Spell] +/// </summary> +static partial void ModifyCandyCane_34578(ref IBaseAction action); +public static IBaseAction Create34579() +{ + IBaseAction action = new BaseAction(ActionID.MortalFlame_PvE); + ModifyMortalFlame_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34579"><strong>Mortal Flame</strong></see> <i>PvE</i> (BLU) [34579] [Spell] +/// </summary> +static partial void ModifyMortalFlame_34579(ref IBaseAction action); +public static IBaseAction Create34580() +{ + IBaseAction action = new BaseAction(ActionID.SeaShanty_PvE); + ModifySeaShanty_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34580"><strong>Sea Shanty</strong></see> <i>PvE</i> (BLU) [34580] [Ability] +/// </summary> +static partial void ModifySeaShanty_34580(ref IBaseAction action); +public static IBaseAction Create34581() +{ + IBaseAction action = new BaseAction(ActionID.Apokalypsis_PvE); + ModifyApokalypsis_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34581"><strong>Apokalypsis</strong></see> <i>PvE</i> (BLU) [34581] [Ability] +/// </summary> +static partial void ModifyApokalypsis_34581(ref IBaseAction action); +public static IBaseAction Create34582() +{ + IBaseAction action = new BaseAction(ActionID.BeingMortal_PvE); + ModifyBeingMortal_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34582"><strong>Being Mortal</strong></see> <i>PvE</i> (BLU) [34582] [Ability] +/// </summary> +static partial void ModifyBeingMortal_34582(ref IBaseAction action); +public static IBaseAction Create34738() +{ + IBaseAction action = new BaseAction(ActionID.AFlameReborn_PvE); + ModifyAFlameReborn_PvE(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34738"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount] +/// </summary> +static partial void ModifyAFlameReborn_34738(ref IBaseAction action); +public static IBaseAction Create34786() +{ + IBaseAction action = new BaseAction(ActionID.Guillotine_PvP); + ModifyGuillotine_PvP(ref action); + return action; +}); + +/// <summary> +/// Modify <see href="https://garlandtools.org/db/#action/34786"><strong>Guillotine</strong></see> <i>PvP</i> (RPR) [34786] [Weaponskill] +/// </summary> +static partial void ModifyGuillotine_34786(ref IBaseAction action); + + + { + "PaladinRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/paladin\"><strong>Paladin</strong></see>\r\n/// </summary>\r\npublic abstract partial class PaladinRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.PLD, Job.GLA };\r\n static PLDGauge JobGauge => Svc.Gauges.Get<PLDGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create9);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9\"><strong>Fast Blade</strong></see> <i>PvE</i> (GLA PLD) [9] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create15);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15\"><strong>Riot Blade</strong></see> <i>PvE</i> (GLA PLD) [15] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Fast Blade</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldBash_PvECreator = new(ActionFactory.Create16);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16\"><strong>Shield Bash</strong></see> <i>PvE</i> (GLA PLD) [16] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction ShieldBash_PvE => _ShieldBash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sentinel_PvECreator = new(ActionFactory.Create17);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17\"><strong>Sentinel</strong></see> <i>PvE</i> (GLA PLD) [17] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Sentinel_PvE => _Sentinel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create20);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20\"><strong>Fight or Flight</strong></see> <i>PvE</i> (GLA PLD) [20] [Ability]\r\n /// <para>Increases damage dealt by 25%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create21);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21\"><strong>Rage of Halone</strong></see> <i>PvE</i> (GLA PLD) [21] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Riot Blade</para>\n /// <para>Combo Potency: 330</para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bulwark_PvECreator = new(ActionFactory.Create22);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22\"><strong>Bulwark</strong></see> <i>PvE</i> (PLD) [22] [Ability]\r\n /// <para>Block incoming attacks.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Bulwark_PvE => _Bulwark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CircleOfScorn_PvECreator = new(ActionFactory.Create23);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23\"><strong>Circle of Scorn</strong></see> <i>PvE</i> (GLA PLD) [23] [Ability]\r\n /// <para>Delivers an attack with a potency of 140 to all nearby enemies.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction CircleOfScorn_PvE => _CircleOfScorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldLob_PvECreator = new(ActionFactory.Create24);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24\"><strong>Shield Lob</strong></see> <i>PvE</i> (GLA PLD) [24] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Increased enmity</para>\r\n /// </summary>\r\n public IBaseAction ShieldLob_PvE => _ShieldLob_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cover_PvECreator = new(ActionFactory.Create27);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27\"><strong>Cover</strong></see> <i>PvE</i> (PLD) [27] [Ability]\r\n /// <para>Take all damage intended for another party member as long as said member remains within 10 yalms.</para>\n /// <para>Does not activate with certain attacks.</para>\n /// <para>Duration: 12s</para>\n /// <para>Oath Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Cover_PvE => _Cover_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronWill_PvECreator = new(ActionFactory.Create28);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28\"><strong>Iron Will</strong></see> <i>PvE</i> (GLA PLD) [28] [Ability]\r\n /// <para>Significantly increases enmity generation.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction IronWill_PvE => _IronWill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritsWithin_PvECreator = new(ActionFactory.Create29);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29\"><strong>Spirits Within</strong></see> <i>PvE</i> (PLD) [29] [Ability]\r\n /// <para>Delivers an attack with a potency of 270.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction SpiritsWithin_PvE => _SpiritsWithin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HallowedGround_PvECreator = new(ActionFactory.Create30);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30\"><strong>Hallowed Ground</strong></see> <i>PvE</i> (PLD) [30] [Ability]\r\n /// <para>Renders you impervious to most attacks.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction HallowedGround_PvE => _HallowedGround_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GoringBlade_PvECreator = new(ActionFactory.Create3538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3538\"><strong>Goring Blade</strong></see> <i>PvE</i> (PLD) [3538] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 700.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction GoringBlade_PvE => _GoringBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoyalAuthority_PvECreator = new(ActionFactory.Create3539);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3539\"><strong>Royal Authority</strong></see> <i>PvE</i> (PLD) [3539] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Riot Blade</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Grants 3 stacks of Sword Oath</para>\n /// <para>Duration: 30s</para>\n /// <para>Combo Bonus: Grants Divine Might</para>\n /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction RoyalAuthority_PvE => _RoyalAuthority_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DivineVeil_PvECreator = new(ActionFactory.Create3540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3540\"><strong>Divine Veil</strong></see> <i>PvE</i> (PLD) [3540] [Ability]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Restores target's HP</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction DivineVeil_PvE => _DivineVeil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Clemency_PvECreator = new(ActionFactory.Create3541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3541\"><strong>Clemency</strong></see> <i>PvE</i> (PLD) [3541] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction Clemency_PvE => _Clemency_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sheltron_PvECreator = new(ActionFactory.Create3542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3542\"><strong>Sheltron</strong></see> <i>PvE</i> (PLD) [3542] [Ability]\r\n /// <para>Reduces damage taken by 15%.</para>\n /// <para>Duration: s</para>\n /// <para>Oath Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Sheltron_PvE => _Sheltron_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TotalEclipse_PvECreator = new(ActionFactory.Create7381);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7381\"><strong>Total Eclipse</strong></see> <i>PvE</i> (GLA PLD) [7381] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction TotalEclipse_PvE => _TotalEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Intervention_PvECreator = new(ActionFactory.Create7382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7382\"><strong>Intervention</strong></see> <i>PvE</i> (PLD) [7382] [Ability]\r\n /// <para>Reduces target party member's damage taken by 10%.</para>\n /// <para>Duration: s</para>\n /// <para>Additional Effect: Increases damage reduction by an additional 10% if Rampart or Sentinel are active</para>\n /// <para>Additional Effect: Grants Knight's Resolve to target</para>\n /// <para>Knight's Resolve Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Grants Knight's Benediction to target</para>\n /// <para>Knight's Benediction Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Duration: 12s</para>\n /// <para>Oath Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Intervention_PvE => _Intervention_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Requiescat_PvECreator = new(ActionFactory.Create7383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7383\"><strong>Requiescat</strong></see> <i>PvE</i> (PLD) [7383] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 320.</para>\n /// <para>Additional Effect: Grants 4 stacks of Requiescat</para>\n /// <para>Requiescat Effect: Increases the potency of Holy Spirit, Holy Circle, and all Confiteor combo actionsHoly Spirit, Holy Circle, and ConfiteorHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit, Holy Circle, and ConfiteorHoly Spirit and Holy CircleHoly SpiritHoly SpiritHoly Spirit and Holy CircleHoly SpiritHoly Spirit and spells will require no cast time</para>\n /// <para>Additional Effect: Grants Confiteor Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Requiescat_PvE => _Requiescat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HolySpirit_PvECreator = new(ActionFactory.Create7384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7384\"><strong>Holy Spirit</strong></see> <i>PvE</i> (PLD) [7384] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Divine Might Potency: </para>\n /// <para>Requiescat Potency: </para>\n /// <para>The effect of Divine Might will be prioritized over Requiescat when under the effect of both.</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction HolySpirit_PvE => _HolySpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PassageOfArms_PvECreator = new(ActionFactory.Create7385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7385\"><strong>Passage of Arms</strong></see> <i>PvE</i> (PLD) [7385] [Ability]\r\n /// <para>Increases block rate to 100% and creates a designated area in a cone behind you in which party members will only suffer 85% of all damage inflicted.</para>\n /// <para>Duration: 18s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction PassageOfArms_PvE => _PassageOfArms_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create7531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7531\"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Provoke_PvECreator = new(ActionFactory.Create7533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7533\"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list while gaining additional enmity.</para>\r\n /// </summary>\r\n public IBaseAction Provoke_PvE => _Provoke_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reprisal_PvECreator = new(ActionFactory.Create7535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7535\"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability]\r\n /// <para>Reduces damage dealt by nearby enemies by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Reprisal_PvE => _Reprisal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shirk_PvECreator = new(ActionFactory.Create7537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7537\"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability]\r\n /// <para>Diverts 25% of enmity to target party member.</para>\r\n /// </summary>\r\n public IBaseAction Shirk_PvE => _Shirk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create7538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7538\"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowBlow_PvECreator = new(ActionFactory.Create7540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7540\"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction LowBlow_PvE => _LowBlow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheMartialist_PvECreator = new(ActionFactory.Create12959);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12959\"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheMartialist_PvE => _WisdomOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheGuardian_PvECreator = new(ActionFactory.Create12961);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12961\"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell]\r\n /// <para>Reduces damage taken by 45% while increasing maximum HP by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheGuardian_PvE => _WisdomOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheWatcher_PvECreator = new(ActionFactory.Create12964);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12964\"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell]\r\n /// <para>Increases evasion by 25% while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheWatcher_PvE => _WisdomOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HaymakerL_PvECreator = new(ActionFactory.Create12987);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12987\"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Can only be executed immediately after evading an attack.</para>\n /// <para>Additional Effect: Slow +20%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HaymakerL_PvE => _HaymakerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmiteL_PvECreator = new(ActionFactory.Create13001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13001\"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Can only be executed when your HP is below 50%.</para>\n /// <para>Additional Effect: Restores an amount of own HP proportional to damage dealt</para>\r\n /// </summary>\r\n public IBaseAction SmiteL_PvE => _SmiteL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIndomitable_PvECreator = new(ActionFactory.Create14480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14480\"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell]\r\n /// <para>Reduces damage taken by 64%.</para>\n /// <para>Grants one stack of HP Boost each time damage equal to or greater than half of maximum HP is taken from a single-target attack.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIndomitable_PvE => _WisdomOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvE_15537Creator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE_15537 => _Interject_PvE_15537Creator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_15870Creator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_15870 => _FightOrFlight_PvE_15870Creator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prominence_PvECreator = new(ActionFactory.Create16457);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16457\"><strong>Prominence</strong></see> <i>PvE</i> (PLD) [16457] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Total Eclipse</para>\n /// <para>Combo Potency: 170</para>\n /// <para>Combo Bonus: Restores MP</para>\n /// <para>Combo Bonus: Grants Divine Might</para>\n /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Prominence_PvE => _Prominence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HolyCircle_PvECreator = new(ActionFactory.Create16458);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16458\"><strong>Holy Circle</strong></see> <i>PvE</i> (PLD) [16458] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100 to all nearby enemies.</para>\n /// <para>Divine Might Potency: 200</para>\n /// <para>Requiescat Potency: 300</para>\n /// <para>The effect of Divine Might will be prioritized over Requiescat when under the effect of both.</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction HolyCircle_PvE => _HolyCircle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Confiteor_PvECreator = new(ActionFactory.Create16459);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16459\"><strong>Confiteor</strong></see> <i>PvE</i> (PLD) [16459] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Requiescat Potency: 920</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Can only be executed while under the effect of Confiteor Ready. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Confiteor_PvE => _Confiteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Atonement_PvECreator = new(ActionFactory.Create16460);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16460\"><strong>Atonement</strong></see> <i>PvE</i> (PLD) [16460] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Restores MP</para>\n /// <para>Can only be executed while under the effect of Sword Oath.</para>\r\n /// </summary>\r\n public IBaseAction Atonement_PvE => _Atonement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Intervene_PvECreator = new(ActionFactory.Create16461);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16461\"><strong>Intervene</strong></see> <i>PvE</i> (PLD) [16461] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 150.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Intervene_PvE => _Intervene_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_16788Creator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_16788 => _FastBlade_PvE_16788Creator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfTirelessConviction_PvECreator = new(ActionFactory.Create20722);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20722\"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability]\r\n /// <para>Storm the field under the Banner of Tireless Conviction, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Tireless Conviction Effect: Increases damage taken by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfTirelessConviction_PvE => _BannerOfTirelessConviction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20742);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20742\"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item]\r\n /// <para>Increases damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheMartialist_PvE => _EssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20746);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20746\"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item]\r\n /// <para>Increases defense by 30% and maximum HP by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheGuardian_PvE => _EssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20751);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20751\"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item]\r\n /// <para>Increases damage dealt by 90% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheIrregular_PvE => _EssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20753);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20753\"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBloodsucker_PvE => _EssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20757);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20757\"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item]\r\n /// <para>Increases damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheMartialist_PvE => _DeepEssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20761);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20761\"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item]\r\n /// <para>Increases defense by 36% and maximum HP by 12%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheGuardian_PvE => _DeepEssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20766\"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item]\r\n /// <para>Increases damage dealt by 108% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheIrregular_PvE => _DeepEssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20768);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20768\"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item]\r\n /// <para>Increases damage dealt by 48%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBloodsucker_PvE => _DeepEssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheIndomitable_PvECreator = new(ActionFactory.Create22350);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22350\"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item]\r\n /// <para>Increases defense by 40%, damage dealt by 72%, and maximum HP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheIndomitable_PvE => _PureEssenceOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAethershield_PvECreator = new(ActionFactory.Create22355);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22355\"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction LostAethershield_PvE => _LostAethershield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBloodRage_PvECreator = new(ActionFactory.Create23921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23921\"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability]\r\n /// <para>Increases damage dealt by 15% and reduces damage taken by 5% per stack. Stacks increase with each use of a dash attack while effect is active, to a maximum of 4.</para>\n /// <para>Duration: 18s</para>\n /// <para>Maximum stacks grant the effect of Blood Rush.</para>\n /// <para>Blood Rush Effect: Increases damage dealt by 60%, shortens recast times of abilities by 75%, and gradually restores HP and MP. Recast time reduction does not apply to charged actions.</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostBloodRage_PvE => _LostBloodRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HolySheltron_PvECreator = new(ActionFactory.Create25746);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25746\"><strong>Holy Sheltron</strong></see> <i>PvE</i> (PLD) [25746] [Ability]\r\n /// <para>Reduces damage taken by 15%.</para>\n /// <para>Duration: 8s</para>\n /// <para>Additional Effect: Grants Knight's Resolve</para>\n /// <para>Knight's Resolve Effect: Reduces damage taken by 15%</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Grants Knight's Benediction</para>\n /// <para>Knight's Benediction Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Duration: 12s</para>\n /// <para>Oath Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction HolySheltron_PvE => _HolySheltron_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Expiacion_PvECreator = new(ActionFactory.Create25747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25747\"><strong>Expiacion</strong></see> <i>PvE</i> (PLD) [25747] [Ability]\r\n /// <para>Delivers an attack to target and all enemies nearby it with a potency of 450 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction Expiacion_PvE => _Expiacion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfFaith_PvECreator = new(ActionFactory.Create25748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25748\"><strong>Blade of Faith</strong></see> <i>PvE</i> (PLD) [25748] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Requiescat Potency: 720</para>\n /// <para>Combo Action: Confiteor</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfFaith_PvE => _BladeOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfTruth_PvECreator = new(ActionFactory.Create25749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25749\"><strong>Blade of Truth</strong></see> <i>PvE</i> (PLD) [25749] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 320 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Requiescat Potency: 820</para>\n /// <para>Combo Action: Blade of Faith</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfTruth_PvE => _BladeOfTruth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfValor_PvECreator = new(ActionFactory.Create25750);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25750\"><strong>Blade of Valor</strong></see> <i>PvE</i> (PLD) [25750] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Requiescat Potency: 920</para>\n /// <para>Combo Action: Blade of Truth</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 400</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfValor_PvE => _BladeOfValor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvE_26250Creator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE_26250 => _RiotBlade_PvE_26250Creator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvE_26251Creator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE_26251 => _RageOfHalone_PvE_26251Creator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvE_26253Creator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE_26253 => _Rampart_PvE_26253Creator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvPCreator = new(ActionFactory.Create29058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29058\"><strong>Fast Blade</strong></see> <i>PvP</i> (PLD) [29058] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvP => _FastBlade_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvPCreator = new(ActionFactory.Create29059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29059\"><strong>Riot Blade</strong></see> <i>PvP</i> (PLD) [29059] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Fast Blade</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvP => _RiotBlade_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RoyalAuthority_PvPCreator = new(ActionFactory.Create29060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29060\"><strong>Royal Authority</strong></see> <i>PvP</i> (PLD) [29060] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Riot Blade</para>\n /// <para>Additional Effect: Grants a stack of Sword Oath, up to a maximum of 3</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RoyalAuthority_PvP => _RoyalAuthority_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Atonement_PvPCreator = new(ActionFactory.Create29061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29061\"><strong>Atonement</strong></see> <i>PvP</i> (PLD) [29061] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000.</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed while under the effect of Sword Oath.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Atonement_PvP => _Atonement_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ShieldBash_PvPCreator = new(ActionFactory.Create29064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29064\"><strong>Shield Bash</strong></see> <i>PvP</i> (PLD) [29064] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\n /// <para>Additional Effect: Grants a stack of Sword Oath, up to a maximum of 3</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para>\r\n /// </summary>\r\n public IBaseAction ShieldBash_PvP => _ShieldBash_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Intervene_PvPCreator = new(ActionFactory.Create29065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29065\"><strong>Intervene</strong></see> <i>PvP</i> (PLD) [29065] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 2,000.</para>\n /// <para>Additional Effect: Grants a stack of Sword Oath, up to a maximum of 3</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Royal Authority Combo changes to Atonement while under the effect of Sword Oath.</para>\r\n /// </summary>\r\n public IBaseAction Intervene_PvP => _Intervene_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Guardian_PvPCreator = new(ActionFactory.Create29066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29066\"><strong>Guardian</strong></see> <i>PvP</i> (PLD) [29066] [Ability]\r\n /// <para>Rush to a target party member's side.</para>\n /// <para>Additional Effect: Take all damage intended for the targeted party member</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed when member is closer than 10 yalms.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>Has no effect on targets interacting with an object.</para>\r\n /// </summary>\r\n public IBaseAction Guardian_PvP => _Guardian_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HolySheltron_PvPCreator = new(ActionFactory.Create29067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29067\"><strong>Holy Sheltron</strong></see> <i>PvP</i> (PLD) [29067] [Ability]\r\n /// <para>Grants Holy Sheltron and Knight's Resolve.</para>\n /// <para>Holy Sheltron Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 12,000 potency</para>\n /// <para>Duration: 5s</para>\n /// <para>If the barrier is not absorbed and the effect duration expires, deals unaspected damage to all nearby enemies with a potency equal to the barrier's remaining potency.</para>\n /// <para>Knight's Resolve Effect: Reduces damage taken by 20%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Heavy +75%</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction HolySheltron_PvP => _HolySheltron_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Phalanx_PvPCreator = new(ActionFactory.Create29069);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29069\"><strong>Phalanx</strong></see> <i>PvP</i> (PLD) [29069] [Limit Break]\r\n /// <para>Grants the effect of Hallowed Ground to self and Phalanx to nearby party members.</para>\n /// <para>Hallowed Ground Effect: Renders you impervious to most attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Phalanx Effect: Reduces damage taken by 33%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Blade of Faith Ready</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 120s</para>\n /// <para></para>\n /// <para>※Action changes to Blade of Faith upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Phalanx_PvP => _Phalanx_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Confiteor_PvPCreator = new(ActionFactory.Create29070);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29070\"><strong>Confiteor</strong></see> <i>PvP</i> (PLD) [29070] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts target with Sacred Claim</para>\n /// <para>Sacred Claim Effect: Restores HP when successfully landing an attack on targets under this effect</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 10s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Confiteor_PvP => _Confiteor_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfFaith_PvPCreator = new(ActionFactory.Create29071);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29071\"><strong>Blade of Faith</strong></see> <i>PvP</i> (PLD) [29071] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para>\n /// <para>Additional Effect: Afflicts target with Sacred Claim</para>\n /// <para>Sacred Claim Effect: Restores HP when successfully landing an attack on targets under this effect</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Blade of Faith Ready.</para>\n /// <para></para>\n /// <para>※Action changes to Blade of Truth upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfFaith_PvP => _BladeOfFaith_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfTruth_PvPCreator = new(ActionFactory.Create29072);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29072\"><strong>Blade of Truth</strong></see> <i>PvP</i> (PLD) [29072] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 7,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para>\n /// <para>Combo Action: Blade of Faith</para>\n /// <para>Additional Effect: Afflicts target with Sacred Claim</para>\n /// <para>Sacred Claim Effect: Restores HP when successfully landing an attack on targets under this effect</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Blade of Valor upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfTruth_PvP => _BladeOfTruth_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BladeOfValor_PvPCreator = new(ActionFactory.Create29073);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29073\"><strong>Blade of Valor</strong></see> <i>PvP</i> (PLD) [29073] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Potency is increased by 50% when target is under the effect of Sacred Claim</para>\n /// <para>Combo Action: Blade of Truth</para>\n /// <para>Additional Effect: Afflicts target with Sacred Claim</para>\n /// <para>Sacred Claim Effect: Restores HP when successfully landing an attack on targets under this effect</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BladeOfValor_PvP => _BladeOfValor_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReleaseIronWill_PvECreator = new(ActionFactory.Create32065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32065\"><strong>Release Iron Will</strong></see> <i>PvE</i> (GLA PLD) [32065] [Ability]\r\n /// <para>Cancels the effect of Iron Will.</para>\r\n /// </summary>\r\n public IBaseAction ReleaseIronWill_PvE => _ReleaseIronWill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _DivineMagicMasteryTraitCreator = new(() => new BaseTrait(207));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50207\"><strong>Divine Magic Mastery</strong></see> (PLD) [207]\r\n /// <para>Halves MP cost for all spells while preventing casting interruptions via damage taken. Grants the following effects after successfully completing a combo with Royal Authority:</para>\n /// <para>Combo Bonus: Grants Divine Might</para>\n /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait DivineMagicMasteryTrait => _DivineMagicMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _OathMasteryTraitCreator = new(() => new BaseTrait(209));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50209\"><strong>Oath Mastery</strong></see> (PLD) [209]\r\n /// <para>Increases Oath Gauge by 5 each time an auto-attack lands.</para>\r\n /// </summary>\r\n public IBaseTrait OathMasteryTrait => _OathMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ChivalryTraitCreator = new(() => new BaseTrait(246));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50246\"><strong>Chivalry</strong></see> (PLD) [246]\r\n /// <para>Restores MP when using Riot Blade or Spirits Within.</para>\r\n /// </summary>\r\n public IBaseTrait ChivalryTrait => _ChivalryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RageOfHaloneMasteryTraitCreator = new(() => new BaseTrait(260));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50260\"><strong>Rage of Halone Mastery</strong></see> (PLD) [260]\r\n /// <para>Upgrades Rage of Halone to Royal Authority.</para>\r\n /// </summary>\r\n public IBaseTrait RageOfHaloneMasteryTrait => _RageOfHaloneMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedProminenceTraitCreator = new(() => new BaseTrait(261));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50261\"><strong>Enhanced Prominence</strong></see> (PLD) [261]\r\n /// <para>Grants the following effects after successfully completing a combo with Prominence:</para>\n /// <para>Combo Bonus: Restores MP</para>\n /// <para>Combo Bonus: Grants Divine Might</para>\n /// <para>Divine Might Effect: Allows next Holy Spirit or Holy Circle to be cast immediately with increased potency</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedProminenceTrait => _EnhancedProminenceTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSheltronTraitCreator = new(() => new BaseTrait(262));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50262\"><strong>Enhanced Sheltron</strong></see> (PLD) [262]\r\n /// <para>Extends the duration of Sheltron to 6 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSheltronTrait => _EnhancedSheltronTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedRequiescatTraitCreator = new(() => new BaseTrait(263));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50263\"><strong>Enhanced Requiescat</strong></see> (PLD) [263]\r\n /// <para>Grants the effect of Confiteor Ready upon landing Requiescat.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedRequiescatTrait => _EnhancedRequiescatTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SwordOathTraitCreator = new(() => new BaseTrait(264));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50264\"><strong>Sword Oath</strong></see> (PLD) [264]\r\n /// <para>Grants three stacks of Sword Oath after successfully completing a combo with Royal Authority.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait SwordOathTrait => _SwordOathTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TankMasteryTraitCreator = new(() => new BaseTrait(317));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50317\"><strong>Tank Mastery</strong></see> (GLA PLD) [317]\r\n /// <para>Reduces damage taken by 20%. Furthermore, grants a bonus to maximum HP based on your vitality attribute, and a bonus to damage dealt based on your strength attribute.</para>\r\n /// </summary>\r\n public IBaseTrait TankMasteryTrait => _TankMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SheltronMasteryTraitCreator = new(() => new BaseTrait(412));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50412\"><strong>Sheltron Mastery</strong></see> (PLD) [412]\r\n /// <para>Upgrades Sheltron to Holy Sheltron.</para>\r\n /// </summary>\r\n public IBaseTrait SheltronMasteryTrait => _SheltronMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedInterventionTraitCreator = new(() => new BaseTrait(413));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50413\"><strong>Enhanced Intervention</strong></see> (PLD) [413]\r\n /// <para>Extends the duration of Intervention to 8 seconds.</para>\n /// <para>Grants Knight's Resolve to target, reducing damage taken by 10%.</para>\n /// <para>Duration: 4s</para>\n /// <para>Grants Knight's Benediction to target, gradually restoring HP over time.</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedInterventionTrait => _EnhancedInterventionTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DivineMagicMasteryIiTraitCreator = new(() => new BaseTrait(414));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50414\"><strong>Divine Magic Mastery II</strong></see> (PLD) [414]\r\n /// <para>Adds a healing effect to Holy Spirit, Holy Circle, and Confiteor.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseTrait DivineMagicMasteryIiTrait => _DivineMagicMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SpiritsWithinMasteryTraitCreator = new(() => new BaseTrait(415));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50415\"><strong>Spirits Within Mastery</strong></see> (PLD) [415]\r\n /// <para>Upgrades Spirits Within to Expiacion.</para>\r\n /// </summary>\r\n public IBaseTrait SpiritsWithinMasteryTrait => _SpiritsWithinMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDivineVeilTraitCreator = new(() => new BaseTrait(416));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50416\"><strong>Enhanced Divine Veil</strong></see> (PLD) [416]\r\n /// <para>Adds a healing effect to Divine Veil.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDivineVeilTrait => _EnhancedDivineVeilTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(504));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50504\"><strong>Melee Mastery</strong></see> (PLD) [504]\r\n /// <para>Increases the potency of Fast Blade to 200, Riot Blade to 140, Royal Authority to 140, Holy Spirit to 350, and Atonement to 400.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "MonkRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/monk\"><strong>Monk</strong></see>\r\n/// </summary>\r\npublic abstract partial class MonkRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.MNK, Job.PGL };\r\n static MNKGauge JobGauge => Svc.Gauges.Get<MNKGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bootshine_PvECreator = new(ActionFactory.Create53);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/53\"><strong>Bootshine</strong></see> <i>PvE</i> (PGL MNK) [53] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Leaden Fist Potency: </para>\n /// <para>Opo-opo Form Bonus: Guarantees a critical hit</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Additional Effect: Changes form to raptor</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Bootshine_PvE => _Bootshine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueStrike_PvECreator = new(ActionFactory.Create54);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/54\"><strong>True Strike</strong></see> <i>PvE</i> (PGL MNK) [54] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Can only be executed when in raptor form.</para>\n /// <para>Additional Effect: Changes form to coeurl</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction TrueStrike_PvE => _TrueStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SnapPunch_PvECreator = new(ActionFactory.Create56);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/56\"><strong>Snap Punch</strong></see> <i>PvE</i> (PGL MNK) [56] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's flank.</para>\n /// <para>Can only be executed when in coeurl form.</para>\n /// <para>Additional Effect: Changes form to opo-opo</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction SnapPunch_PvE => _SnapPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TwinSnakes_PvECreator = new(ActionFactory.Create61);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/61\"><strong>Twin Snakes</strong></see> <i>PvE</i> (PGL MNK) [61] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Can only be executed when in raptor form.</para>\n /// <para>Additional Effect: Grants Disciplined Fist</para>\n /// <para>Disciplined Fist Effect: Increases damage dealt by %</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Changes form to coeurl</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction TwinSnakes_PvE => _TwinSnakes_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmOfTheDestroyer_PvECreator = new(ActionFactory.Create62);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/62\"><strong>Arm of the Destroyer</strong></see> <i>PvE</i> (PGL MNK) [62] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby targets.</para>\n /// <para>Opo-opo Form Potency: 110</para>\n /// <para>Additional Effect: Changes form to raptor</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction ArmOfTheDestroyer_PvE => _ArmOfTheDestroyer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mantra_PvECreator = new(ActionFactory.Create65);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/65\"><strong>Mantra</strong></see> <i>PvE</i> (PGL MNK) [65] [Ability]\r\n /// <para>Increases HP recovery via healing actions by 10% for self and nearby party members.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Mantra_PvE => _Mantra_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Demolish_PvECreator = new(ActionFactory.Create66);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/66\"><strong>Demolish</strong></see> <i>PvE</i> (PGL MNK) [66] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's rear.</para>\n /// <para>Can only be executed when in coeurl form.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Changes form to opo-opo</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Demolish_PvE => _Demolish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectBalance_PvECreator = new(ActionFactory.Create69);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/69\"><strong>Perfect Balance</strong></see> <i>PvE</i> (MNK) [69] [Ability]\r\n /// <para>Grants 3 stacks of Perfect Balance, each stack allowing the execution of a weaponskill that requires a certain form, without being in that form.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Opo-opo Chakra, Coeurl Chakra, or Raptor Chakra depending on the form required by actions executed</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while in combat and when not under the effect of any Beast Chakra.Can only be executed while in combat.Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction PerfectBalance_PvE => _PerfectBalance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rockbreaker_PvECreator = new(ActionFactory.Create70);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/70\"><strong>Rockbreaker</strong></see> <i>PvE</i> (MNK) [70] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 130 to all nearby enemies.</para>\n /// <para>Can only be executed when in coeurl form.</para>\n /// <para>Additional Effect: Changes form to opo-opo</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Rockbreaker_PvE => _Rockbreaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonKick_PvECreator = new(ActionFactory.Create74);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/74\"><strong>Dragon Kick</strong></see> <i>PvE</i> (PGL MNK) [74] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Opo-opo Form Bonus: Grants Leaden Fist</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Changes form to raptor</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction DragonKick_PvE => _DragonKick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TornadoKick_PvECreator = new(ActionFactory.Create3543);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3543\"><strong>Tornado Kick</strong></see> <i>PvE</i> (MNK) [3543] [Weaponskill]\r\n /// <para>Delivers an attack to target and all enemies nearby it with a potency of 850 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of Lunar Nadi and Solar Nadi, as well as three Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TornadoKick_PvE => _TornadoKick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElixirField_PvECreator = new(ActionFactory.Create3545);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3545\"><strong>Elixir Field</strong></see> <i>PvE</i> (MNK) [3545] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.</para>\n /// <para>Additional Effect: Opens the Lunar Nadi</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of three of the same Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ElixirField_PvE => _ElixirField_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meditation_PvECreator = new(ActionFactory.Create3546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3546\"><strong>Meditation</strong></see> <i>PvE</i> (PGL MNK) [3546] [Ability]\r\n /// <para>Opens a chakra. Up to five chakra can be opened at once.</para>\n /// <para>Opens all five chakra when used outside of combat.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\n /// <para></para>\n /// <para>※Action changes to The Forbidden ChakraSteel PeakSteel Peak when all five chakra are open.</para>\r\n /// </summary>\r\n public IBaseAction Meditation_PvE => _Meditation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheForbiddenChakra_PvECreator = new(ActionFactory.Create3547);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3547\"><strong>the Forbidden Chakra</strong></see> <i>PvE</i> (MNK) [3547] [Ability]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para>\n /// <para>Shares a recast timer with EnlightenmentHowling FistHowling Fist.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheForbiddenChakra_PvE => _TheForbiddenChakra_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FormShift_PvECreator = new(ActionFactory.Create4262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4262\"><strong>Form Shift</strong></see> <i>PvE</i> (MNK) [4262] [Weaponskill]\r\n /// <para>Grants Formless Fist to self, allowing the execution of a weaponskill that requires a certain form, without being in that form.</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\r\n /// </summary>\r\n public IBaseAction FormShift_PvE => _FormShift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RiddleOfEarth_PvECreator = new(ActionFactory.Create7394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7394\"><strong>Riddle of Earth</strong></see> <i>PvE</i> (MNK) [7394] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Earth's Reply upon taking damage</para>\n /// <para>Earth's Reply Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RiddleOfEarth_PvE => _RiddleOfEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RiddleOfFire_PvECreator = new(ActionFactory.Create7395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7395\"><strong>Riddle of Fire</strong></see> <i>PvE</i> (MNK) [7395] [Ability]\r\n /// <para>Increases damage dealt by 15%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction RiddleOfFire_PvE => _RiddleOfFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Brotherhood_PvECreator = new(ActionFactory.Create7396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7396\"><strong>Brotherhood</strong></see> <i>PvE</i> (MNK) [7396] [Ability]\r\n /// <para>Grants Brotherhood and Meditative Brotherhood to self and all nearby party members.</para>\n /// <para>Brotherhood Effect: Increases damage dealt by 5%</para>\n /// <para>Meditative Brotherhood Effect: 20% chance you open a chakra when party members under this effect successfully land a weaponskill or cast a spell</para>\n /// <para>Chance is 100% when you successfully land a weaponskill or cast a spell while under the effect of Meditative Brotherhood.20% chance you open a chakra when you or party members under this effect successfully land a weaponskill or cast a spell20% chance you open a chakra when you or party members under this effect successfully land a weaponskill or cast a spell</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Brotherhood_PvE => _Brotherhood_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create7542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7542\"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueNorth_PvECreator = new(ActionFactory.Create7546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7546\"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability]\r\n /// <para>Nullifies all action direction requirements.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction TrueNorth_PvE => _TrueNorth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Feint_PvECreator = new(ActionFactory.Create7549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7549\"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Feint_PvE => _Feint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegSweep_PvECreator = new(ActionFactory.Create7863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7863\"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction LegSweep_PvE => _LegSweep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheDuelist_PvECreator = new(ActionFactory.Create14478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14478\"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell]\r\n /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheDuelist_PvE => _WisdomOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FourpointFury_PvECreator = new(ActionFactory.Create16473);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16473\"><strong>Four-point Fury</strong></see> <i>PvE</i> (MNK) [16473] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 120 to all nearby enemies.</para>\n /// <para>Can only be executed when in raptor form.</para>\n /// <para>Additional Effect: Grants Disciplined Fist</para>\n /// <para>Disciplined Fist Effect: Increases damage dealt by %</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Changes form to coeurl</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction FourpointFury_PvE => _FourpointFury_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Enlightenment_PvECreator = new(ActionFactory.Create16474);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16474\"><strong>Enlightenment</strong></see> <i>PvE</i> (MNK) [16474] [Ability]\r\n /// <para>Delivers an attack with a potency of 170 to all enemies in a straight line before you.</para>\n /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para>\n /// <para>Shares a recast timer with The Forbidden Chakra.</para>\r\n /// </summary>\r\n public IBaseAction Enlightenment_PvE => _Enlightenment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Anatman_PvECreator = new(ActionFactory.Create16475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16475\"><strong>Anatman</strong></see> <i>PvE</i> (MNK) [16475] [Ability]\r\n /// <para>Extends the duration of Disciplined Fist and your present form to maximum and halts their expiration.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution. Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction Anatman_PvE => _Anatman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SixsidedStar_PvECreator = new(ActionFactory.Create16476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16476\"><strong>Six-sided Star</strong></see> <i>PvE</i> (MNK) [16476] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Increases movement speed</para>\n /// <para>Duration: 5s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction SixsidedStar_PvE => _SixsidedStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDuelist_PvECreator = new(ActionFactory.Create22348);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22348\"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDuelist_PvE => _PureEssenceOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRendArmor_PvECreator = new(ActionFactory.Create22353);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22353\"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 100.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostRendArmor_PvE => _LostRendArmor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SteelPeak_PvECreator = new(ActionFactory.Create25761);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25761\"><strong>Steel Peak</strong></see> <i>PvE</i> (PGL MNK) [25761] [Ability]\r\n /// <para>Delivers an attack with a potency of 180.</para>\n /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para>\n /// <para>Shares a recast timer with Howling Fist.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SteelPeak_PvE => _SteelPeak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Thunderclap_PvECreator = new(ActionFactory.Create25762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25762\"><strong>Thunderclap</strong></see> <i>PvE</i> (MNK) [25762] [Ability]\r\n /// <para>Rush to a targeted enemy's or party member's location.</para>\n /// <para>Maximum Charges: </para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Thunderclap_PvE => _Thunderclap_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HowlingFist_PvECreator = new(ActionFactory.Create25763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25763\"><strong>Howling Fist</strong></see> <i>PvE</i> (MNK) [25763] [Ability]\r\n /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para>\n /// <para>Can only be executed while in combat and under the effect of the Fifth Chakra. The five chakra close upon execution.</para>\n /// <para>Shares a recast timer with The Forbidden ChakraSteel PeakSteel Peak.</para>\r\n /// </summary>\r\n public IBaseAction HowlingFist_PvE => _HowlingFist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterfulBlitz_PvECreator = new(ActionFactory.Create25764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25764\"><strong>Masterful Blitz</strong></see> <i>PvE</i> (MNK) [25764] [Weaponskill]\r\n /// <para>Strike the enemy with a technique fueled by the power of your Beast Chakra.</para>\n /// <para>The technique used is determined by the number of different types of Beast Chakra opened.</para>\n /// <para>1 Beast Chakra Type: Elixir Field</para>\n /// <para>2 Beast Chakra Types: Celestial Revolution</para>\n /// <para>3 Beast Chakra Types: Rising PhoenixFlint StrikeFlint Strike</para>\n /// <para>3 Beast Chakra and Both Nadi: Phantom RushTornado KickTornado Kick</para>\r\n /// </summary>\r\n public IBaseAction MasterfulBlitz_PvE => _MasterfulBlitz_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CelestialRevolution_PvECreator = new(ActionFactory.Create25765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25765\"><strong>Celestial Revolution</strong></see> <i>PvE</i> (MNK) [25765] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 450.</para>\n /// <para>Additional Effect: Opens the Lunar Nadi</para>\n /// <para>If the Lunar Nadi is already open, opens the Solar Nadi instead.</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of three Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CelestialRevolution_PvE => _CelestialRevolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RiddleOfWind_PvECreator = new(ActionFactory.Create25766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25766\"><strong>Riddle of Wind</strong></see> <i>PvE</i> (MNK) [25766] [Ability]\r\n /// <para>Reduces auto-attack delay by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RiddleOfWind_PvE => _RiddleOfWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShadowOfTheDestroyer_PvECreator = new(ActionFactory.Create25767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25767\"><strong>Shadow of the Destroyer</strong></see> <i>PvE</i> (MNK) [25767] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 110 to all nearby enemies.</para>\n /// <para>Opo-opo Form Bonus: Guarantees a critical hit</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Additional Effect: Changes form to raptor</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction ShadowOfTheDestroyer_PvE => _ShadowOfTheDestroyer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RisingPhoenix_PvECreator = new(ActionFactory.Create25768);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25768\"><strong>Rising Phoenix</strong></see> <i>PvE</i> (MNK) [25768] [Weaponskill]\r\n /// <para>Deals physical fire damage to all nearby enemies with a potency of 700 for the first enemy, and 70% less for all remaining enemies.</para>\n /// <para>Additional Effect: Opens the Solar Nadi</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of three distinct Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RisingPhoenix_PvE => _RisingPhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhantomRush_PvECreator = new(ActionFactory.Create25769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25769\"><strong>Phantom Rush</strong></see> <i>PvE</i> (MNK) [25769] [Weaponskill]\r\n /// <para>Delivers an attack to target and all enemies nearby it with a potency of 1,150 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of Lunar Nadi and Solar Nadi, as well as three Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PhantomRush_PvE => _PhantomRush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FlintStrike_PvECreator = new(ActionFactory.Create25882);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25882\"><strong>Flint Strike</strong></see> <i>PvE</i> (MNK) [25882] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies with a potency of 600 for the first enemy, and 70% less for all remaining enemies.</para>\n /// <para>Additional Effect: Opens the Solar Nadi</para>\n /// <para>Additional Effect: Grants Formless Fist, allowing the execution of a weaponskill that requires a certain form, without being in that form</para>\n /// <para>Duration: 30s</para>\n /// <para>Any additional effects associated with the executed action will also be applied.</para>\n /// <para>Can only be executed while under the effect of three distinct Beast Chakra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FlintStrike_PvE => _FlintStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bootshine_PvPCreator = new(ActionFactory.Create29472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29472\"><strong>Bootshine</strong></see> <i>PvP</i> (MNK) [29472] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Bootshine_PvP => _Bootshine_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TrueStrike_PvPCreator = new(ActionFactory.Create29473);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29473\"><strong>True Strike</strong></see> <i>PvP</i> (MNK) [29473] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Bootshine</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TrueStrike_PvP => _TrueStrike_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SnapPunch_PvPCreator = new(ActionFactory.Create29474);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29474\"><strong>Snap Punch</strong></see> <i>PvP</i> (MNK) [29474] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 6,000.</para>\n /// <para>Combo Action: True Strike</para>\n /// <para>Additional Effect: Extends Wind Resonance duration by 5s to a maximum of 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SnapPunch_PvP => _SnapPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DragonKick_PvPCreator = new(ActionFactory.Create29475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29475\"><strong>Dragon Kick</strong></see> <i>PvP</i> (MNK) [29475] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Combo Action: Snap Punch</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction DragonKick_PvP => _DragonKick_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TwinSnakes_PvPCreator = new(ActionFactory.Create29476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29476\"><strong>Twin Snakes</strong></see> <i>PvP</i> (MNK) [29476] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Dragon Kick</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TwinSnakes_PvP => _TwinSnakes_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Demolish_PvPCreator = new(ActionFactory.Create29477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29477\"><strong>Demolish</strong></see> <i>PvP</i> (MNK) [29477] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 6,000.</para>\n /// <para>Combo Action: Twin Snakes</para>\n /// <para>Additional Effect: Extends Wind Resonance duration by 5s to a maximum of 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Demolish_PvP => _Demolish_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PhantomRush_PvPCreator = new(ActionFactory.Create29478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29478\"><strong>Phantom Rush</strong></see> <i>PvP</i> (MNK) [29478] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para>Combo Action: Demolish</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PhantomRush_PvP => _PhantomRush_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SixsidedStar_PvPCreator = new(ActionFactory.Create29479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29479\"><strong>Six-sided Star</strong></see> <i>PvP</i> (MNK) [29479] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\n /// <para>Additional Effect: Increases movement speed by 25%</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction SixsidedStar_PvP => _SixsidedStar_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Enlightenment_PvPCreator = new(ActionFactory.Create29480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29480\"><strong>Enlightenment</strong></see> <i>PvP</i> (MNK) [29480] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: 15-yalm knockback to first target</para>\n /// <para>Also afflicts first target with Pressure Point if successfully knocked back.</para>\n /// <para>Pressure Point Effect: Next weaponskill or Meteodrive used on target will deal additional damage with a potency of 8,000</para>\n /// <para>Duration: 3s</para>\n /// <para>Effect of Pressure Point expires upon dealing additional damage.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Enlightenment_PvP => _Enlightenment_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RisingPhoenix_PvPCreator = new(ActionFactory.Create29481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29481\"><strong>Rising Phoenix</strong></see> <i>PvP</i> (MNK) [29481] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Grants Fire Resonance</para>\n /// <para>Fire Resonance Effect: Increases damage dealt by next weaponskill by 50%</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction RisingPhoenix_PvP => _RisingPhoenix_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RiddleOfEarth_PvPCreator = new(ActionFactory.Create29482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29482\"><strong>Riddle of Earth</strong></see> <i>PvP</i> (MNK) [29482] [Ability]\r\n /// <para>Grants Earth Resonance, changing Riddle of Earth to Earth's Reply, and allowing you to compile damage each time you are struck by an enemy.</para>\n /// <para>Duration: 8s</para>\n /// <para>Executing Earth's Reply deals physical damage to all nearby enemies and restores your HP.</para>\n /// <para>Damage Potency: 2,000 plus 25% of compiled damage</para>\n /// <para>Cure Potency: 4,000 plus 50% of compiled damage</para>\r\n /// </summary>\r\n public IBaseAction RiddleOfEarth_PvP => _RiddleOfEarth_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EarthsReply_PvPCreator = new(ActionFactory.Create29483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29483\"><strong>Earth's Reply</strong></see> <i>PvP</i> (MNK) [29483] [Ability]\r\n /// <para>Deals physical damage to all nearby enemies and restores your HP.</para>\n /// <para>Damage Potency: 2,000 plus 25% of compiled damage</para>\n /// <para>Cure Potency: 4,000 plus 50% of compiled damage</para>\n /// <para>Can only be executed while under the effect of Earth Resonance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EarthsReply_PvP => _EarthsReply_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Thunderclap_PvPCreator = new(ActionFactory.Create29484);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29484\"><strong>Thunderclap</strong></see> <i>PvP</i> (MNK) [29484] [Ability]\r\n /// <para>Rush to a targeted enemy's or party member's location.</para>\n /// <para>Additional Effect: Grants Wind Resonance</para>\n /// <para>Wind Resonance Effect: Reduces weaponskill recast time by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>If already under the effect of Wind Resonance, extends duration by 10s to a maximum of 15s.</para>\n /// <para>Additional Effect: Creates a barrier around target party member that nullifies damage equivalent to a heal of 6,000 potency</para>\n /// <para>If the target selected was an enemy, creates a barrier around self instead.</para>\n /// <para>Duration: 5s</para>\n /// <para>Maximum Charges: 3</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Thunderclap_PvP => _Thunderclap_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Meteodrive_PvPCreator = new(ActionFactory.Create29485);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29485\"><strong>Meteodrive</strong></see> <i>PvP</i> (MNK) [29485] [Limit Break]\r\n /// <para>Rushes target and delivers an attack with a potency of 12,000.</para>\n /// <para>Additional Effect: Removes target's Guard</para>\n /// <para>Additional Effect: Afflicts target with Meteodrive, rendering them unable to move</para>\n /// <para>Duration: 3s</para>\n /// <para>If target does not have an active Guard effect, deals additional damage with a potency of 12,000.</para>\n /// <para>Effect cannot be applied to players riding machina or non-player combatants.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 75s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Meteodrive_PvP => _Meteodrive_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvE_33013Creator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE_33013 => _Bloodbath_PvE_33013Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _DeepMeditationTraitCreator = new(() => new BaseTrait(160));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50160\"><strong>Deep Meditation</strong></see> (MNK) [160]\r\n /// <para>Grants an 80% chance that a chakra will open upon dealing critical damage with a weaponskill.</para>\r\n /// </summary>\r\n public IBaseTrait DeepMeditationTrait => _DeepMeditationTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DeepMeditationIiTraitCreator = new(() => new BaseTrait(245));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50245\"><strong>Deep Meditation II</strong></see> (MNK) [245]\r\n /// <para>Guarantees that a chakra will open upon dealing critical damage with a weaponskill.</para>\r\n /// </summary>\r\n public IBaseTrait DeepMeditationIiTrait => _DeepMeditationIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _GreasedLightningTraitCreator = new(() => new BaseTrait(364));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50364\"><strong>Greased Lightning</strong></see> (PGL MNK) [364]\r\n /// <para>Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 5%.</para>\r\n /// </summary>\r\n public IBaseTrait GreasedLightningTrait => _GreasedLightningTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedGreasedLightningTraitCreator = new(() => new BaseTrait(365));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50365\"><strong>Enhanced Greased Lightning</strong></see> (PGL MNK) [365]\r\n /// <para>Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedGreasedLightningTrait => _EnhancedGreasedLightningTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedGreasedLightningIiTraitCreator = new(() => new BaseTrait(366));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50366\"><strong>Enhanced Greased Lightning II</strong></see> (MNK) [366]\r\n /// <para>Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 15%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedGreasedLightningIiTrait => _EnhancedGreasedLightningIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedGreasedLightningIiiTraitCreator = new(() => new BaseTrait(367));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50367\"><strong>Enhanced Greased Lightning III</strong></see> (MNK) [367]\r\n /// <para>Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%. Also improves Disciplined Fist's damage increase to 15%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedGreasedLightningIiiTrait => _EnhancedGreasedLightningIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SteelPeakMasteryTraitCreator = new(() => new BaseTrait(428));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50428\"><strong>Steel Peak Mastery</strong></see> (MNK) [428]\r\n /// <para>Upgrades Steel Peak to The Forbidden Chakra.</para>\r\n /// </summary>\r\n public IBaseTrait SteelPeakMasteryTrait => _SteelPeakMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HowlingFistMasteryTraitCreator = new(() => new BaseTrait(429));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50429\"><strong>Howling Fist Mastery</strong></see> (MNK) [429]\r\n /// <para>Upgrades Howling Fist to Enlightenment.</para>\r\n /// </summary>\r\n public IBaseTrait HowlingFistMasteryTrait => _HowlingFistMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ArmOfTheDestroyerMasteryTraitCreator = new(() => new BaseTrait(430));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50430\"><strong>Arm of the Destroyer Mastery</strong></see> (MNK) [430]\r\n /// <para>Upgrades Arm of the Destroyer to Shadow of the Destroyer.</para>\r\n /// </summary>\r\n public IBaseTrait ArmOfTheDestroyerMasteryTrait => _ArmOfTheDestroyerMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedThunderclapTraitCreator = new(() => new BaseTrait(431));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50431\"><strong>Enhanced Thunderclap</strong></see> (MNK) [431]\r\n /// <para>Allows a third charge of Thunderclap.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedThunderclapTrait => _EnhancedThunderclapTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedBrotherhoodTraitCreator = new(() => new BaseTrait(432));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50432\"><strong>Enhanced Brotherhood</strong></see> (MNK) [432]\r\n /// <para>Guarantees that a chakra will open when you are under the effect of Meditative Brotherhood and execute a weaponskill or cast a spell.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedBrotherhoodTrait => _EnhancedBrotherhoodTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedPerfectBalanceTraitCreator = new(() => new BaseTrait(433));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50433\"><strong>Enhanced Perfect Balance</strong></see> (MNK) [433]\r\n /// <para>When under the effect of Perfect Balance, grants Beast Chakra in accordance with the form normally required to execute weaponskills.</para>\n /// <para>Weaponskills requiring opo-opo form grant Opo-opo Chakra.</para>\n /// <para>Weaponskills requiring coeurl form grant Coeurl Chakra.</para>\n /// <para>Weaponskills requiring raptor form grant Raptor Chakra.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedPerfectBalanceTrait => _EnhancedPerfectBalanceTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FlintStrikeMasteryTraitCreator = new(() => new BaseTrait(512));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50512\"><strong>Flint Strike Mastery</strong></see> (MNK) [512]\r\n /// <para>Upgrades Flint Strike to Rising Phoenix.</para>\r\n /// </summary>\r\n public IBaseTrait FlintStrikeMasteryTrait => _FlintStrikeMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TornadoKickMasteryTraitCreator = new(() => new BaseTrait(513));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50513\"><strong>Tornado Kick Mastery</strong></see> (MNK) [513]\r\n /// <para>Upgrades Tornado Kick to Phantom Rush.</para>\r\n /// </summary>\r\n public IBaseTrait TornadoKickMasteryTrait => _TornadoKickMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(518));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50518\"><strong>Melee Mastery</strong></see> (MNK) [518]\r\n /// <para>Increases the potency of Bootshine to 210, True Strike to 300, Snap Punch to 250, Twin Snakes to 280, Demolish to 70, Dragon Kick to 320, The Forbidden Chakra to 340, and Six-sided Star to 550.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "WarriorRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/warrior\"><strong>Warrior</strong></see>\r\n/// </summary>\r\npublic abstract partial class WarriorRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.WAR, Job.MRD };\r\n static WARGauge JobGauge => Svc.Gauges.Get<WARGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavySwing_PvECreator = new(ActionFactory.Create31);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31\"><strong>Heavy Swing</strong></see> <i>PvE</i> (MRD WAR) [31] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction HeavySwing_PvE => _HeavySwing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Maim_PvECreator = new(ActionFactory.Create37);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/37\"><strong>Maim</strong></see> <i>PvE</i> (MRD WAR) [37] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Heavy Swing</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Beast Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction Maim_PvE => _Maim_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Berserk_PvECreator = new(ActionFactory.Create38);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/38\"><strong>Berserk</strong></see> <i>PvE</i> (MRD WAR) [38] [Ability]\r\n /// <para>Grants 3 stacks of Berserk, each stack guaranteeing weaponskill attacks are critical and direct hits.</para>\n /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s</para>\n /// <para>Additional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s</para>\r\n /// </summary>\r\n public IBaseAction Berserk_PvE => _Berserk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThrillOfBattle_PvECreator = new(ActionFactory.Create40);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/40\"><strong>Thrill of Battle</strong></see> <i>PvE</i> (MRD WAR) [40] [Ability]\r\n /// <para>Increases maximum HP by 20% and restores the amount increased.</para>\n /// <para>Additional Effect: Increases HP recovery via healing actions on self by 20%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ThrillOfBattle_PvE => _ThrillOfBattle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Overpower_PvECreator = new(ActionFactory.Create41);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/41\"><strong>Overpower</strong></see> <i>PvE</i> (MRD WAR) [41] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 110 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Overpower_PvE => _Overpower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StormsPath_PvECreator = new(ActionFactory.Create42);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/42\"><strong>Storm's Path</strong></see> <i>PvE</i> (MRD WAR) [42] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Maim</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Restores own HP</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Combo Bonus: Increases Beast Gauge by 20</para>\r\n /// </summary>\r\n public IBaseAction StormsPath_PvE => _StormsPath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Holmgang_PvECreator = new(ActionFactory.Create43);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/43\"><strong>Holmgang</strong></see> <i>PvE</i> (MRD WAR) [43] [Ability]\r\n /// <para>Brace yourself for an enemy onslaught, preventing most attacks from reducing your HP to less than 1.</para>\n /// <para>Duration: 10s</para>\n /// <para>When a target is selected, halts their movement with chains.</para>\r\n /// </summary>\r\n public IBaseAction Holmgang_PvE => _Holmgang_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vengeance_PvECreator = new(ActionFactory.Create44);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/44\"><strong>Vengeance</strong></see> <i>PvE</i> (MRD WAR) [44] [Ability]\r\n /// <para>Reduces damage taken by 30% and delivers an attack with a potency of 55 every time you suffer physical damage.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Vengeance_PvE => _Vengeance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StormsEye_PvECreator = new(ActionFactory.Create45);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/45\"><strong>Storm's Eye</strong></see> <i>PvE</i> (MRD WAR) [45] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Maim</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Grants Surging Tempest, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Surging Tempest duration by 30s to a maximum of 60s.</para>\n /// <para>Combo Bonus: Increases Beast Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction StormsEye_PvE => _StormsEye_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tomahawk_PvECreator = new(ActionFactory.Create46);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/46\"><strong>Tomahawk</strong></see> <i>PvE</i> (MRD WAR) [46] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 150.</para>\n /// <para>Additional Effect: Increased enmity</para>\r\n /// </summary>\r\n public IBaseAction Tomahawk_PvE => _Tomahawk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Defiance_PvECreator = new(ActionFactory.Create48);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/48\"><strong>Defiance</strong></see> <i>PvE</i> (MRD WAR) [48] [Ability]\r\n /// <para>Significantly increases enmity generation.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction Defiance_PvE => _Defiance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InnerBeast_PvECreator = new(ActionFactory.Create49);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/49\"><strong>Inner Beast</strong></see> <i>PvE</i> (WAR) [49] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 330.</para>\n /// <para>Beast Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction InnerBeast_PvE => _InnerBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SteelCyclone_PvECreator = new(ActionFactory.Create51);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/51\"><strong>Steel Cyclone</strong></see> <i>PvE</i> (WAR) [51] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 170 to all nearby enemies.</para>\n /// <para>Beast Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction SteelCyclone_PvE => _SteelCyclone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Infuriate_PvECreator = new(ActionFactory.Create52);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/52\"><strong>Infuriate</strong></see> <i>PvE</i> (WAR) [52] [Ability]\r\n /// <para>Increases Beast Gauge by 50.</para>\n /// <para>Additional Effect: Grants Nascent Chaos</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Infuriate_PvE => _Infuriate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FellCleave_PvECreator = new(ActionFactory.Create3549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3549\"><strong>Fell Cleave</strong></see> <i>PvE</i> (WAR) [3549] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 520.</para>\n /// <para>Beast Gauge Cost: 50</para>\n /// <para></para>\n /// <para>※Action changes to Inner Chaos while under the effect of Nascent Chaos.</para>\r\n /// </summary>\r\n public IBaseAction FellCleave_PvE => _FellCleave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Decimate_PvECreator = new(ActionFactory.Create3550);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3550\"><strong>Decimate</strong></see> <i>PvE</i> (WAR) [3550] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies with a potency of 200.</para>\n /// <para>Beast Gauge Cost: 50</para>\n /// <para></para>\n /// <para>※Action changes to Chaotic Cyclone while under the effect of Nascent Chaos.</para>\r\n /// </summary>\r\n public IBaseAction Decimate_PvE => _Decimate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RawIntuition_PvECreator = new(ActionFactory.Create3551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3551\"><strong>Raw Intuition</strong></see> <i>PvE</i> (WAR) [3551] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Restores HP with each weaponskill successfully delivered</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Shares a recast timer with Nascent Flash.</para>\r\n /// </summary>\r\n public IBaseAction RawIntuition_PvE => _RawIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Equilibrium_PvECreator = new(ActionFactory.Create3552);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3552\"><strong>Equilibrium</strong></see> <i>PvE</i> (WAR) [3552] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,200</para>\n /// <para>Additional Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Equilibrium_PvE => _Equilibrium_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Onslaught_PvECreator = new(ActionFactory.Create7386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7386\"><strong>Onslaught</strong></see> <i>PvE</i> (WAR) [7386] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 150.</para>\n /// <para>Maximum Charges: </para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Onslaught_PvE => _Onslaught_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Upheaval_PvECreator = new(ActionFactory.Create7387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7387\"><strong>Upheaval</strong></see> <i>PvE</i> (WAR) [7387] [Ability]\r\n /// <para>Delivers an attack with a potency of 400.</para>\n /// <para>Shares a recast timer with Orogeny.</para>\r\n /// </summary>\r\n public IBaseAction Upheaval_PvE => _Upheaval_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShakeItOff_PvECreator = new(ActionFactory.Create7388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7388\"><strong>Shake It Off</strong></see> <i>PvE</i> (WAR) [7388] [Ability]\r\n /// <para>Creates a barrier around self and all nearby party members that absorbs damage totaling 15% of maximum HP.</para>\n /// <para>Dispels Thrill of Battle, Vengeance, and BloodwhettingRaw IntuitionRaw Intuition, increasing damage absorbed by 2% for each effect removed. </para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Restores target's HP</para>\n /// <para>Cure Potency: 300</para>\r\n /// </summary>\r\n public IBaseAction ShakeItOff_PvE => _ShakeItOff_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InnerRelease_PvECreator = new(ActionFactory.Create7389);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7389\"><strong>Inner Release</strong></see> <i>PvE</i> (WAR) [7389] [Ability]\r\n /// <para>Grants 3 stacks of Inner Release, each stack allowing the use of Fell Cleave or Decimate without cost and guaranteeing they are critical and direct hits.</para>\n /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Additional Effect: Grants Inner Strength, nullifying Stun, Sleep, Bind, Heavy, and most knockback and draw-in effects</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Extends Surging Tempest duration by 10s to a maximum of 60s</para>\n /// <para>Additional Effect: Grants Primal Rend Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction InnerRelease_PvE => _InnerRelease_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create7531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7531\"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Provoke_PvECreator = new(ActionFactory.Create7533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7533\"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list while gaining additional enmity.</para>\r\n /// </summary>\r\n public IBaseAction Provoke_PvE => _Provoke_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reprisal_PvECreator = new(ActionFactory.Create7535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7535\"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability]\r\n /// <para>Reduces damage dealt by nearby enemies by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Reprisal_PvE => _Reprisal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shirk_PvECreator = new(ActionFactory.Create7537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7537\"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability]\r\n /// <para>Diverts 25% of enmity to target party member.</para>\r\n /// </summary>\r\n public IBaseAction Shirk_PvE => _Shirk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create7538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7538\"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowBlow_PvECreator = new(ActionFactory.Create7540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7540\"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction LowBlow_PvE => _LowBlow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheMartialist_PvECreator = new(ActionFactory.Create12959);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12959\"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheMartialist_PvE => _WisdomOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheGuardian_PvECreator = new(ActionFactory.Create12961);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12961\"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell]\r\n /// <para>Reduces damage taken by 45% while increasing maximum HP by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheGuardian_PvE => _WisdomOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheWatcher_PvECreator = new(ActionFactory.Create12964);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12964\"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell]\r\n /// <para>Increases evasion by 25% while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheWatcher_PvE => _WisdomOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HaymakerL_PvECreator = new(ActionFactory.Create12987);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12987\"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Can only be executed immediately after evading an attack.</para>\n /// <para>Additional Effect: Slow +20%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HaymakerL_PvE => _HaymakerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmiteL_PvECreator = new(ActionFactory.Create13001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13001\"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Can only be executed when your HP is below 50%.</para>\n /// <para>Additional Effect: Restores an amount of own HP proportional to damage dealt</para>\r\n /// </summary>\r\n public IBaseAction SmiteL_PvE => _SmiteL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIndomitable_PvECreator = new(ActionFactory.Create14480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14480\"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell]\r\n /// <para>Reduces damage taken by 64%.</para>\n /// <para>Grants one stack of HP Boost each time damage equal to or greater than half of maximum HP is taken from a single-target attack.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIndomitable_PvE => _WisdomOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvE_15537Creator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE_15537 => _Interject_PvE_15537Creator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MythrilTempest_PvECreator = new(ActionFactory.Create16462);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16462\"><strong>Mythril Tempest</strong></see> <i>PvE</i> (WAR) [16462] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Overpower</para>\n /// <para>Combo Potency: 150</para>\n /// <para>Combo Bonus: Grants Surging Tempest, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Surging Tempest duration by 30s to a maximum of 60s.</para>\n /// <para>Combo Bonus: Increases Beast Gauge by 20</para>\r\n /// </summary>\r\n public IBaseAction MythrilTempest_PvE => _MythrilTempest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChaoticCyclone_PvECreator = new(ActionFactory.Create16463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16463\"><strong>Chaotic Cyclone</strong></see> <i>PvE</i> (WAR) [16463] [Weaponskill]\r\n /// <para>Delivers a critical direct hit with a potency of 320 to all nearby enemies.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Additional Effect: Reduces the recast time of Infuriate by 5 seconds</para>\n /// <para>Beast Gauge Cost: 50</para>\n /// <para>Can only be executed while under the effect of Nascent Chaos. Effect fades upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ChaoticCyclone_PvE => _ChaoticCyclone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NascentFlash_PvECreator = new(ActionFactory.Create16464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16464\"><strong>Nascent Flash</strong></see> <i>PvE</i> (WAR) [16464] [Ability]\r\n /// <para>Grants Nascent Flash to self and Nascent Glint to target party member.</para>\n /// <para>Nascent Flash Effect: Restores HP with each weaponskill successfully delivered</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Nascent Glint Effect: Restores HP equaling 100% of that recovered by Nascent Flash while also reducing damage taken by 10%</para>\n /// <para>Duration: s</para>\n /// <para>Additional Effect: Grants Stem the Flow to target, reducing damage taken by 10%</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Grants Stem the Tide to target, nullifying damage equivalent to a heal of 400 potency</para>\n /// <para>Duration: 20s</para>\n /// <para>Shares a recast timer with BloodwhettingRaw IntuitionRaw Intuition.</para>\r\n /// </summary>\r\n public IBaseAction NascentFlash_PvE => _NascentFlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InnerChaos_PvECreator = new(ActionFactory.Create16465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16465\"><strong>Inner Chaos</strong></see> <i>PvE</i> (WAR) [16465] [Weaponskill]\r\n /// <para>Delivers a critical direct hit with a potency of 660.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Additional Effect: Reduces the recast time of Infuriate by 5 seconds</para>\n /// <para>Beast Gauge Cost: 50</para>\n /// <para>Can only be executed while under the effect of Nascent Chaos. Effect fades upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction InnerChaos_PvE => _InnerChaos_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfTirelessConviction_PvECreator = new(ActionFactory.Create20722);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20722\"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability]\r\n /// <para>Storm the field under the Banner of Tireless Conviction, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Tireless Conviction Effect: Increases damage taken by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfTirelessConviction_PvE => _BannerOfTirelessConviction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20742);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20742\"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item]\r\n /// <para>Increases damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheMartialist_PvE => _EssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20746);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20746\"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item]\r\n /// <para>Increases defense by 30% and maximum HP by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheGuardian_PvE => _EssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20751);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20751\"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item]\r\n /// <para>Increases damage dealt by 90% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheIrregular_PvE => _EssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20753);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20753\"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBloodsucker_PvE => _EssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20757);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20757\"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item]\r\n /// <para>Increases damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheMartialist_PvE => _DeepEssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20761);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20761\"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item]\r\n /// <para>Increases defense by 36% and maximum HP by 12%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheGuardian_PvE => _DeepEssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20766\"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item]\r\n /// <para>Increases damage dealt by 108% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheIrregular_PvE => _DeepEssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20768);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20768\"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item]\r\n /// <para>Increases damage dealt by 48%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBloodsucker_PvE => _DeepEssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheIndomitable_PvECreator = new(ActionFactory.Create22350);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22350\"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item]\r\n /// <para>Increases defense by 40%, damage dealt by 72%, and maximum HP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheIndomitable_PvE => _PureEssenceOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAethershield_PvECreator = new(ActionFactory.Create22355);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22355\"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction LostAethershield_PvE => _LostAethershield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBloodRage_PvECreator = new(ActionFactory.Create23921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23921\"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability]\r\n /// <para>Increases damage dealt by 15% and reduces damage taken by 5% per stack. Stacks increase with each use of a dash attack while effect is active, to a maximum of 4.</para>\n /// <para>Duration: 18s</para>\n /// <para>Maximum stacks grant the effect of Blood Rush.</para>\n /// <para>Blood Rush Effect: Increases damage dealt by 60%, shortens recast times of abilities by 75%, and gradually restores HP and MP. Recast time reduction does not apply to charged actions.</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostBloodRage_PvE => _LostBloodRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodwhetting_PvECreator = new(ActionFactory.Create25751);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25751\"><strong>Bloodwhetting</strong></see> <i>PvE</i> (WAR) [25751] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 8s</para>\n /// <para>Additional Effect: Restores HP with each weaponskill successfully delivered</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Grants Stem the Flow</para>\n /// <para>Stem the Flow Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Grants Stem the Tide</para>\n /// <para>Stem the Tide Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 400 potency</para>\n /// <para>Duration: 20s</para>\n /// <para>Shares a recast timer with Nascent Flash.</para>\r\n /// </summary>\r\n public IBaseAction Bloodwhetting_PvE => _Bloodwhetting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Orogeny_PvECreator = new(ActionFactory.Create25752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25752\"><strong>Orogeny</strong></see> <i>PvE</i> (WAR) [25752] [Ability]\r\n /// <para>Delivers an attack with a potency of 150 to all nearby enemies.</para>\n /// <para>Shares a recast timer with Upheaval.</para>\r\n /// </summary>\r\n public IBaseAction Orogeny_PvE => _Orogeny_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PrimalRend_PvECreator = new(ActionFactory.Create25753);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25753\"><strong>Primal Rend</strong></see> <i>PvE</i> (WAR) [25753] [Weaponskill]\r\n /// <para>Jumps to the target and delivers a critical direct hit to target and all enemies nearby it with a potency of 700 for the first enemy, and 70% less for all remaining enemies.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Stacks of Inner Release are not consumed upon execution.</para>\n /// <para>Can only be executed while under the effect of Primal Rend Ready, granted by Inner Release.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction PrimalRend_PvE => _PrimalRend_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvE_26253Creator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE_26253 => _Rampart_PvE_26253Creator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HeavySwing_PvPCreator = new(ActionFactory.Create29074);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29074\"><strong>Heavy Swing</strong></see> <i>PvP</i> (WAR) [29074] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HeavySwing_PvP => _HeavySwing_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Maim_PvPCreator = new(ActionFactory.Create29075);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29075\"><strong>Maim</strong></see> <i>PvP</i> (WAR) [29075] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Heavy Swing</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Maim_PvP => _Maim_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StormsPath_PvPCreator = new(ActionFactory.Create29076);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29076\"><strong>Storm's Path</strong></see> <i>PvP</i> (WAR) [29076] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Maim</para>\n /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction StormsPath_PvP => _StormsPath_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FellCleave_PvPCreator = new(ActionFactory.Create29078);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29078\"><strong>Fell Cleave</strong></see> <i>PvP</i> (WAR) [29078] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 12,000.</para>\n /// <para>Can only be executed while under the effect of Inner Release.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FellCleave_PvP => _FellCleave_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Onslaught_PvPCreator = new(ActionFactory.Create29079);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29079\"><strong>Onslaught</strong></see> <i>PvP</i> (WAR) [29079] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 500.</para>\n /// <para>Potency increases up to 5,000 as HP nears maximum.</para>\n /// <para>Consumes 10% of current HP when executed.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Onslaught_PvP => _Onslaught_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Orogeny_PvPCreator = new(ActionFactory.Create29080);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29080\"><strong>Orogeny</strong></see> <i>PvP</i> (WAR) [29080] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000 to all nearby enemies.</para>\n /// <para>Potency increases up to 10,000 as HP nears maximum.</para>\n /// <para>Consumes 10% of current HP when executed.</para>\n /// <para>Additional Effect: Reduces target's damage dealt by 10%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Orogeny_PvP => _Orogeny_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Blota_PvPCreator = new(ActionFactory.Create29081);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29081\"><strong>Blota</strong></see> <i>PvP</i> (WAR) [29081] [Ability]\r\n /// <para>Instantly draws target to your side.</para>\n /// <para>Additional Effect: Heavy +75%</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction Blota_PvP => _Blota_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bloodwhetting_PvPCreator = new(ActionFactory.Create29082);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29082\"><strong>Bloodwhetting</strong></see> <i>PvP</i> (WAR) [29082] [Ability]\r\n /// <para>Grants Bloodwhetting, Stem the Tide, and Nascent Chaos.</para>\n /// <para>Bloodwhetting Effect: Converts 100% of weaponskill damage dealt into HP</para>\n /// <para>Duration: 10s</para>\n /// <para>Stem the Tide Effect: Creates a barrier around self that absorbs damage totaling 10% of your maximum HP</para>\n /// <para>Duration: 10s</para>\n /// <para>Nascent Chaos Effect: Bloodwhetting changes to Chaotic Cyclone</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Bloodwhetting_PvP => _Bloodwhetting_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PrimalScream_PvPCreator = new(ActionFactory.Create29083);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29083\"><strong>Primal Scream</strong></see> <i>PvP</i> (WAR) [29083] [Limit Break]\r\n /// <para>Let out a bloodcurdling cry in a cone before you, rendering enemies unable to use Guard.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Inner Release and Thrill of Battle</para>\n /// <para>Inner Release Effect: Increases the potency of Primal Rend and Chaotic Cyclone, while also increasing movement speed by 25%, and granting immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot execute Guard while under the effect of Inner Release.</para>\n /// <para>Thrill of Battle Effect: Increases maximum HP by 20% and restores the amount increased</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\n /// <para></para>\n /// <para>※Storm's Path Combo changes to Fell Cleave while under the effect of Inner Release.</para>\r\n /// </summary>\r\n public IBaseAction PrimalScream_PvP => _PrimalScream_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PrimalRend_PvPCreator = new(ActionFactory.Create29084);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29084\"><strong>Primal Rend</strong></see> <i>PvP</i> (WAR) [29084] [Weaponskill]\r\n /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 8,000.</para>\n /// <para>Inner Release Potency: 16,000</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction PrimalRend_PvP => _PrimalRend_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _ChaoticCyclone_PvPCreator = new(ActionFactory.Create29736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29736\"><strong>Chaotic Cyclone</strong></see> <i>PvP</i> (WAR) [29736] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para>\n /// <para>Inner Release Potency: 16,000</para>\n /// <para>Can only be executed while under the effect of Nascent Chaos.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ChaoticCyclone_PvP => _ChaoticCyclone_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReleaseDefiance_PvECreator = new(ActionFactory.Create32066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32066\"><strong>Release Defiance</strong></see> <i>PvE</i> (MRD WAR) [32066] [Ability]\r\n /// <para>Cancels the effect of Defiance.</para>\r\n /// </summary>\r\n public IBaseAction ReleaseDefiance_PvE => _ReleaseDefiance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _EnhancedInfuriateTraitCreator = new(() => new BaseTrait(157));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50157\"><strong>Enhanced Infuriate</strong></see> (WAR) [157]\r\n /// <para>Reduces Infuriate recast time by 5 seconds upon landing Inner Beast, Steel Cyclone, Fell Cleave, or Decimate on most targets.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedInfuriateTrait => _EnhancedInfuriateTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BerserkMasteryTraitCreator = new(() => new BaseTrait(218));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50218\"><strong>Berserk Mastery</strong></see> (WAR) [218]\r\n /// <para>Upgrades Berserk to Inner Release.</para>\r\n /// </summary>\r\n public IBaseTrait BerserkMasteryTrait => _BerserkMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TheBeastWithinTraitCreator = new(() => new BaseTrait(249));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50249\"><strong>The Beast Within</strong></see> (WAR) [249]\r\n /// <para>Increases Beast Gauge when landing Maim or Storm's Path in a combo.</para>\r\n /// </summary>\r\n public IBaseTrait TheBeastWithinTrait => _TheBeastWithinTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _InnerBeastMasteryTraitCreator = new(() => new BaseTrait(265));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50265\"><strong>Inner Beast Mastery</strong></see> (WAR) [265]\r\n /// <para>Upgrades Inner Beast to Fell Cleave.</para>\r\n /// </summary>\r\n public IBaseTrait InnerBeastMasteryTrait => _InnerBeastMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SteelCycloneMasteryTraitCreator = new(() => new BaseTrait(266));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50266\"><strong>Steel Cyclone Mastery</strong></see> (WAR) [266]\r\n /// <para>Upgrades Steel Cyclone to Decimate.</para>\r\n /// </summary>\r\n public IBaseTrait SteelCycloneMasteryTrait => _SteelCycloneMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _NascentChaosTraitCreator = new(() => new BaseTrait(267));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50267\"><strong>Nascent Chaos</strong></see> (WAR) [267]\r\n /// <para>Infuriate grants the effect of Nascent Chaos, upgrading Decimate to Chaotic Cyclone. Upon reaching level 80, Nascent Chaos will also upgrade Fell Cleave to Inner Chaos. </para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait NascentChaosTrait => _NascentChaosTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MasteringTheBeastTraitCreator = new(() => new BaseTrait(268));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50268\"><strong>Mastering the Beast</strong></see> (WAR) [268]\r\n /// <para>Increases Beast Gauge when landing Mythril Tempest in a combo.</para>\r\n /// </summary>\r\n public IBaseTrait MasteringTheBeastTrait => _MasteringTheBeastTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedThrillOfBattleTraitCreator = new(() => new BaseTrait(269));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50269\"><strong>Enhanced Thrill of Battle</strong></see> (WAR) [269]\r\n /// <para>Adds an additional effect to Thrill of Battle that increases HP recovery via healing actions by 20%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedThrillOfBattleTrait => _EnhancedThrillOfBattleTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TankMasteryTraitCreator = new(() => new BaseTrait(318));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50318\"><strong>Tank Mastery</strong></see> (MRD WAR) [318]\r\n /// <para>Reduces damage taken by 20%. Furthermore, grants a bonus to maximum HP based on your vitality attribute, and a bonus to damage dealt based on your strength attribute.</para>\r\n /// </summary>\r\n public IBaseTrait TankMasteryTrait => _TankMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedShakeItOffTraitCreator = new(() => new BaseTrait(417));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50417\"><strong>Enhanced Shake It Off</strong></see> (WAR) [417]\r\n /// <para>Adds a healing effect to Shake It Off.</para>\n /// <para>Cure Potency: 300</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedShakeItOffTrait => _EnhancedShakeItOffTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RawIntuitionMasteryTraitCreator = new(() => new BaseTrait(418));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50418\"><strong>Raw Intuition Mastery</strong></see> (WAR) [418]\r\n /// <para>Upgrades Raw Intuition to Bloodwhetting.</para>\r\n /// </summary>\r\n public IBaseTrait RawIntuitionMasteryTrait => _RawIntuitionMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedNascentFlashTraitCreator = new(() => new BaseTrait(419));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50419\"><strong>Enhanced Nascent Flash</strong></see> (WAR) [419]\r\n /// <para>Extends the duration of Nascent Flash and Nascent Glint to 8 seconds.</para>\n /// <para>Grants Stem the Flow to target, reducing damage taken by 10%.</para>\n /// <para>Duration: 4s</para>\n /// <para>Grants Stem the Tide to target, nullifying damage equivalent to a heal of 400 potency.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedNascentFlashTrait => _EnhancedNascentFlashTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEquilibriumTraitCreator = new(() => new BaseTrait(420));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50420\"><strong>Enhanced Equilibrium</strong></see> (WAR) [420]\r\n /// <para>Grants healing over time to self.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEquilibriumTrait => _EnhancedEquilibriumTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedOnslaughtTraitCreator = new(() => new BaseTrait(421));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50421\"><strong>Enhanced Onslaught</strong></see> (WAR) [421]\r\n /// <para>Allows a third charge of Onslaught.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedOnslaughtTrait => _EnhancedOnslaughtTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(505));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50505\"><strong>Melee Mastery</strong></see> (WAR) [505]\r\n /// <para>Increases the potency of Heavy Swing to 200, Maim to 150, Storm's Path to 160, and Storm's Eye to 160.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "DragoonRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/dragoon\"><strong>Dragoon</strong></see>\r\n/// </summary>\r\npublic abstract partial class DragoonRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.DRG, Job.LNC };\r\n static DRGGauge JobGauge => Svc.Gauges.Get<DRGGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueThrust_PvECreator = new(ActionFactory.Create75);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/75\"><strong>True Thrust</strong></see> <i>PvE</i> (LNC DRG) [75] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para></para>\n /// <para>※Action changes to Raiden Thrust while under the effect of Draconian Fire.</para>\r\n /// </summary>\r\n public IBaseAction TrueThrust_PvE => _TrueThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VorpalThrust_PvECreator = new(ActionFactory.Create78);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/78\"><strong>Vorpal Thrust</strong></see> <i>PvE</i> (LNC DRG) [78] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: True Thrust</para>\n /// <para>Combo Potency: </para>\r\n /// </summary>\r\n public IBaseAction VorpalThrust_PvE => _VorpalThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LifeSurge_PvECreator = new(ActionFactory.Create83);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/83\"><strong>Life Surge</strong></see> <i>PvE</i> (LNC DRG) [83] [Ability]\r\n /// <para>Ensures critical damage for first weaponskill used while Life Surge is active.</para>\n /// <para>Duration: 5s</para>\n /// <para>Increases damage dealt when under an effect that raises critical hit rate.</para>\n /// <para>Effect cannot be applied to damage over time.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction LifeSurge_PvE => _LifeSurge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FullThrust_PvECreator = new(ActionFactory.Create84);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/84\"><strong>Full Thrust</strong></see> <i>PvE</i> (LNC DRG) [84] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Vorpal Thrust</para>\n /// <para>Combo Potency: 400</para>\n /// <para>Combo Bonus: Grants Fang and Claw Bared</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Fang and Claw Bared ends upon execution of any melee weaponskill.</para>\r\n /// </summary>\r\n public IBaseAction FullThrust_PvE => _FullThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LanceCharge_PvECreator = new(ActionFactory.Create85);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/85\"><strong>Lance Charge</strong></see> <i>PvE</i> (LNC DRG) [85] [Ability]\r\n /// <para>Increases damage dealt by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LanceCharge_PvE => _LanceCharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create86);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/86\"><strong>Doom Spike</strong></see> <i>PvE</i> (DRG) [86] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 110 to all enemies in a straight line before you.</para>\n /// <para></para>\n /// <para>※Action changes to Draconian Fury when under the effect of Draconian Fire.</para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Disembowel_PvECreator = new(ActionFactory.Create87);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/87\"><strong>Disembowel</strong></see> <i>PvE</i> (LNC DRG) [87] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: True Thrust</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Grants Power Surge</para>\n /// <para>Power Surge Effect: Increases damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Disembowel_PvE => _Disembowel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChaosThrust_PvECreator = new(ActionFactory.Create88);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/88\"><strong>Chaos Thrust</strong></see> <i>PvE</i> (LNC DRG) [88] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>140 when executed from a target's rear.</para>\n /// <para>Combo Action: Disembowel</para>\n /// <para>Combo Potency: 220</para>\n /// <para>Rear Combo Potency: 260</para>\n /// <para>Combo Bonus: Damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\n /// <para>Combo Bonus: Grants Wheel in Motion</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Wheel in Motion ends upon execution of any melee weaponskill.</para>\r\n /// </summary>\r\n public IBaseAction ChaosThrust_PvE => _ChaosThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PiercingTalon_PvECreator = new(ActionFactory.Create90);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/90\"><strong>Piercing Talon</strong></see> <i>PvE</i> (LNC DRG) [90] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction PiercingTalon_PvE => _PiercingTalon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Jump_PvECreator = new(ActionFactory.Create92);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/92\"><strong>Jump</strong></see> <i>PvE</i> (DRG) [92] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of . Returns you to your original position after the attack is made.</para>\n /// <para>Additional Effect: Grants Dive Ready</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Jump_PvE => _Jump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElusiveJump_PvECreator = new(ActionFactory.Create94);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/94\"><strong>Elusive Jump</strong></see> <i>PvE</i> (DRG) [94] [Ability]\r\n /// <para>Executes a jump to a location 15 yalms behind you.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction ElusiveJump_PvE => _ElusiveJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpineshatterDive_PvECreator = new(ActionFactory.Create95);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/95\"><strong>Spineshatter Dive</strong></see> <i>PvE</i> (DRG) [95] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of .</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction SpineshatterDive_PvE => _SpineshatterDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonfireDive_PvECreator = new(ActionFactory.Create96);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/96\"><strong>Dragonfire Dive</strong></see> <i>PvE</i> (DRG) [96] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction DragonfireDive_PvE => _DragonfireDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FangAndClaw_PvECreator = new(ActionFactory.Create3554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3554\"><strong>Fang and Claw</strong></see> <i>PvE</i> (DRG) [3554] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 260.</para>\n /// <para>300 when executed from a target's flank.</para>\n /// <para>Can only be executed while under the effect of Fang and Claw Bared, granted by Heavens' ThrustFull ThrustFull Thrust.</para>\r\n /// </summary>\r\n public IBaseAction FangAndClaw_PvE => _FangAndClaw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Geirskogul_PvECreator = new(ActionFactory.Create3555);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3555\"><strong>Geirskogul</strong></see> <i>PvE</i> (DRG) [3555] [Ability]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of for the first enemy, and 30% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Life of the Dragon while under the full gaze of the first brood</para>\n /// <para></para>\n /// <para>※Action changes to Nastrond while under the effect of Life of the Dragon.</para>\r\n /// </summary>\r\n public IBaseAction Geirskogul_PvE => _Geirskogul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WheelingThrust_PvECreator = new(ActionFactory.Create3556);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3556\"><strong>Wheeling Thrust</strong></see> <i>PvE</i> (DRG) [3556] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 260.</para>\n /// <para>300 when executed from a target's rear.</para>\n /// <para>Can only be executed while under the effect of Wheel in Motion, granted by Chaotic SpringChaos ThrustChaos Thrust.</para>\r\n /// </summary>\r\n public IBaseAction WheelingThrust_PvE => _WheelingThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BattleLitany_PvECreator = new(ActionFactory.Create3557);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3557\"><strong>Battle Litany</strong></see> <i>PvE</i> (DRG) [3557] [Ability]\r\n /// <para>Increases critical hit rate of self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction BattleLitany_PvE => _BattleLitany_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create7397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7397\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (DRG) [7397] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para>\n /// <para>Combo Action: Doom Spike</para>\n /// <para>Combo Potency: 120</para>\n /// <para>Combo Bonus: Grants Power Surge</para>\n /// <para>Power Surge Effect: Increases damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonSight_PvECreator = new(ActionFactory.Create7398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7398\"><strong>Dragon Sight</strong></see> <i>PvE</i> (DRG) [7398] [Ability]\r\n /// <para>Grants Right Eye to self, increasing damage dealt by 10% and nullifying all action direction requirements. Also grants target party member Left Eye, increasing damage dealt by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction DragonSight_PvE => _DragonSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MirageDive_PvECreator = new(ActionFactory.Create7399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7399\"><strong>Mirage Dive</strong></see> <i>PvE</i> (DRG) [7399] [Ability]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Additional Effect: Strengthens the gaze of your Dragon Gauge by 1</para>\n /// <para>Can only be executed when Dive Ready.</para>\r\n /// </summary>\r\n public IBaseAction MirageDive_PvE => _MirageDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nastrond_PvECreator = new(ActionFactory.Create7400);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7400\"><strong>Nastrond</strong></see> <i>PvE</i> (DRG) [7400] [Ability]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of for the first enemy, and 30% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Life of the Dragon.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Nastrond_PvE => _Nastrond_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create7542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7542\"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueNorth_PvECreator = new(ActionFactory.Create7546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7546\"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability]\r\n /// <para>Nullifies all action direction requirements.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction TrueNorth_PvE => _TrueNorth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Feint_PvECreator = new(ActionFactory.Create7549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7549\"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Feint_PvE => _Feint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegSweep_PvECreator = new(ActionFactory.Create7863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7863\"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction LegSweep_PvE => _LegSweep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheDuelist_PvECreator = new(ActionFactory.Create14478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14478\"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell]\r\n /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheDuelist_PvE => _WisdomOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create16477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16477\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (DRG) [16477] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para>\n /// <para>Combo Action: Sonic Thrust</para>\n /// <para>Combo Potency: 150</para>\n /// <para>Combo Bonus: Grants Draconian Fire</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighJump_PvECreator = new(ActionFactory.Create16478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16478\"><strong>High Jump</strong></see> <i>PvE</i> (DRG) [16478] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 400. Returns you to your original position after the attack is made.</para>\n /// <para>Additional Effect: Grants Dive Ready</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction HighJump_PvE => _HighJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaidenThrust_PvECreator = new(ActionFactory.Create16479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16479\"><strong>Raiden Thrust</strong></see> <i>PvE</i> (DRG) [16479] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 280.</para>\n /// <para>Additional Effect: Sharpens the Firstminds' Focus by 1</para>\n /// <para>Can only be executed while under the effect of Draconian Fire.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RaidenThrust_PvE => _RaidenThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create16480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16480\"><strong>Stardiver</strong></see> <i>PvE</i> (DRG) [16480] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 620 for the first enemy, and 30% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Life of the Dragon.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvE_18772Creator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE_18772 => _DoomSpike_PvE_18772Creator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvE_18773Creator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE_18773 => _SonicThrust_PvE_18773Creator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvE_18774Creator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE_18774 => _CoerthanTorment_PvE_18774Creator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvE_18780Creator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE_18780 => _Stardiver_PvE_18780Creator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDuelist_PvECreator = new(ActionFactory.Create22348);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22348\"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDuelist_PvE => _PureEssenceOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRendArmor_PvECreator = new(ActionFactory.Create22353);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22353\"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 100.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostRendArmor_PvE => _LostRendArmor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DraconianFury_PvECreator = new(ActionFactory.Create25770);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25770\"><strong>Draconian Fury</strong></see> <i>PvE</i> (DRG) [25770] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 130 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Sharpens the Firstminds' Focus by 1</para>\n /// <para>Can only be executed while under the effect of Draconian Fire.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction DraconianFury_PvE => _DraconianFury_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavensThrust_PvECreator = new(ActionFactory.Create25771);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25771\"><strong>Heavens' Thrust</strong></see> <i>PvE</i> (DRG) [25771] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Vorpal Thrust</para>\n /// <para>Combo Potency: 480</para>\n /// <para>Combo Bonus: Grants Fang and Claw Bared</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Fang and Claw Bared ends upon execution of any melee weaponskill.</para>\r\n /// </summary>\r\n public IBaseAction HeavensThrust_PvE => _HeavensThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChaoticSpring_PvECreator = new(ActionFactory.Create25772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25772\"><strong>Chaotic Spring</strong></see> <i>PvE</i> (DRG) [25772] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>140 when executed from a target's rear.</para>\n /// <para>Combo Action: Disembowel</para>\n /// <para>Combo Potency: 260</para>\n /// <para>Rear Combo Potency: 300</para>\n /// <para>Combo Bonus: Damage over time</para>\n /// <para>Potency: 45</para>\n /// <para>Duration: 24s</para>\n /// <para>Combo Bonus: Grants Wheel in Motion</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Wheel in Motion ends upon execution of any melee weaponskill.</para>\r\n /// </summary>\r\n public IBaseAction ChaoticSpring_PvE => _ChaoticSpring_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WyrmwindThrust_PvECreator = new(ActionFactory.Create25773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25773\"><strong>Wyrmwind Thrust</strong></see> <i>PvE</i> (DRG) [25773] [Ability]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 420 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Firstminds' Focus Cost: 2</para>\r\n /// </summary>\r\n public IBaseAction WyrmwindThrust_PvE => _WyrmwindThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaidenThrust_PvPCreator = new(ActionFactory.Create29486);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29486\"><strong>Raiden Thrust</strong></see> <i>PvP</i> (DRG) [29486] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RaidenThrust_PvP => _RaidenThrust_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FangAndClaw_PvPCreator = new(ActionFactory.Create29487);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29487\"><strong>Fang and Claw</strong></see> <i>PvP</i> (DRG) [29487] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Raiden Thrust</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FangAndClaw_PvP => _FangAndClaw_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _WheelingThrust_PvPCreator = new(ActionFactory.Create29488);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29488\"><strong>Wheeling Thrust</strong></see> <i>PvP</i> (DRG) [29488] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Fang and Claw</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WheelingThrust_PvP => _WheelingThrust_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HeavensThrust_PvPCreator = new(ActionFactory.Create29489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29489\"><strong>Heavens' Thrust</strong></see> <i>PvP</i> (DRG) [29489] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 12,000.</para>\n /// <para>Can only be executed while under the effect of Heavensent.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HeavensThrust_PvP => _HeavensThrust_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ChaoticSpring_PvPCreator = new(ActionFactory.Create29490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29490\"><strong>Chaotic Spring</strong></see> <i>PvP</i> (DRG) [29490] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000.</para>\n /// <para>Additional Effect: Absorbs 150% of damage dealt as HP</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction ChaoticSpring_PvP => _ChaoticSpring_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Geirskogul_PvPCreator = new(ActionFactory.Create29491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29491\"><strong>Geirskogul</strong></see> <i>PvP</i> (DRG) [29491] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Life of the Dragon</para>\n /// <para>Life of the Dragon Effect: Increases damage dealt and damage suffered by 25%</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Nastrond upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Geirskogul_PvP => _Geirskogul_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Nastrond_PvPCreator = new(ActionFactory.Create29492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29492\"><strong>Nastrond</strong></see> <i>PvP</i> (DRG) [29492] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para>\n /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para>\n /// <para>Can only be executed while under the effect of Life of the Dragon. Effect fades upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Nastrond_PvP => _Nastrond_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HighJump_PvPCreator = new(ActionFactory.Create29493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29493\"><strong>High Jump</strong></see> <i>PvP</i> (DRG) [29493] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Grants Heavensent</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Wheeling Thrust Combo changes to Heavens' Thrust while under the effect of Heavensent.</para>\r\n /// </summary>\r\n public IBaseAction HighJump_PvP => _HighJump_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElusiveJump_PvPCreator = new(ActionFactory.Create29494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29494\"><strong>Elusive Jump</strong></see> <i>PvP</i> (DRG) [29494] [Ability]\r\n /// <para>Executes a jump to a location 15 yalms behind you.</para>\n /// <para>Additional Effect: Removes Heavy and Bind</para>\n /// <para>Additional Effect: Increases movement speed by 25%</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Grants Firstminds' Focus</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Wyrmwind Thrust while under the effect of Firstminds' Focus.</para>\r\n /// </summary>\r\n public IBaseAction ElusiveJump_PvP => _ElusiveJump_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _WyrmwindThrust_PvPCreator = new(ActionFactory.Create29495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29495\"><strong>Wyrmwind Thrust</strong></see> <i>PvP</i> (DRG) [29495] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>Potency increases up to 16,000 the farther away you are from the target, reaching its maximum value when the target is 15 yalms away.</para>\n /// <para>Can only be executed while under the effect of Firstminds' Focus.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WyrmwindThrust_PvP => _WyrmwindThrust_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvPCreator = new(ActionFactory.Create29496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29496\"><strong>Horrid Roar</strong></see> <i>PvP</i> (DRG) [29496] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 4,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Horrid Roar</para>\n /// <para>Horrid Roar Effect: Reduces damage target deals to you by 50%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvP => _HorridRoar_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SkyHigh_PvPCreator = new(ActionFactory.Create29497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29497\"><strong>Sky High</strong></see> <i>PvP</i> (DRG) [29497] [Limit Break]\r\n /// <para>Jump high into the air, preventing enemies from targeting you. Movement is still possible before landing.</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Removes Heavy, Bind, and Half-asleep</para>\n /// <para>Executes Sky Shatter automatically when effect duration expires.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\n /// <para></para>\n /// <para>※Action changes to Sky Shatter upon execution.</para>\r\n /// </summary>\r\n public IBaseAction SkyHigh_PvP => _SkyHigh_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SkyShatter_PvPCreator = new(ActionFactory.Create29498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29498\"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29498] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SkyShatter_PvP => _SkyShatter_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SkyShatter_PvP_29499Creator = new(ActionFactory.Create29499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29499\"><strong>Sky Shatter</strong></see> <i>PvP</i> (DRG) [29499] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 16,000 to all nearby enemies.</para>\n /// <para>Potency is doubled when targets are within 5 yalms.</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 24,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Sky High.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SkyShatter_PvP_29499 => _SkyShatter_PvP_29499Creator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvE_33013Creator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE_33013 => _Bloodbath_PvE_33013Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _LanceMasteryTraitCreator = new(() => new BaseTrait(162));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50162\"><strong>Lance Mastery</strong></see> (DRG) [162]\r\n /// <para>Allows for immediate execution of Wheeling Thrust after landing Fang and Claw, or Fang and Claw after landing Wheeling Thrust, increasing potency by 100.</para>\r\n /// </summary>\r\n public IBaseTrait LanceMasteryTrait => _LanceMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _LifeOfTheDragonTraitCreator = new(() => new BaseTrait(163));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50163\"><strong>Life of the Dragon</strong></see> (DRG) [163]\r\n /// <para>Allows for the strengthening of the gaze of the first brood upon successfully landing Mirage Dive. When the gaze is its strongest (2 units), Geirskogul will grant you the Life of the Dragon status. While under the effect of Life of the Dragon, Geirskogul will change to Nastrond.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseTrait LifeOfTheDragonTrait => _LifeOfTheDragonTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _LanceMasteryIiTraitCreator = new(() => new BaseTrait(247));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50247\"><strong>Lance Mastery II</strong></see> (DRG) [247]\r\n /// <para>Increases the potency of True Thrust to 230, Vorpal Thrust to 130, and Disembowel to 140.</para>\n /// <para>Grants Draconian Fire if Fang and Claw is executed following Wheeling Thrust, or vice versa.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Draconian Fire ends upon execution of any melee weaponskill.</para>\n /// <para>Upgrades True Thrust to Raiden Thrust while under the effect of Draconian Fire.</para>\r\n /// </summary>\r\n public IBaseTrait LanceMasteryIiTrait => _LanceMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _JumpMasteryTraitCreator = new(() => new BaseTrait(275));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50275\"><strong>Jump Mastery</strong></see> (DRG) [275]\r\n /// <para>Upgrades Jump to High Jump.</para>\r\n /// </summary>\r\n public IBaseTrait JumpMasteryTrait => _JumpMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _LifeOfTheDragonMasteryTraitCreator = new(() => new BaseTrait(276));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50276\"><strong>Life of the Dragon Mastery</strong></see> (DRG) [276]\r\n /// <para>Extends the duration of Life of the Dragon to 30 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait LifeOfTheDragonMasteryTrait => _LifeOfTheDragonMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BloodOfTheDragonTraitCreator = new(() => new BaseTrait(434));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50434\"><strong>Blood of the Dragon</strong></see> (DRG) [434]\r\n /// <para>Increases the potency of Jump to 320 and Spineshatter Dive to 250.</para>\r\n /// </summary>\r\n public IBaseTrait BloodOfTheDragonTrait => _BloodOfTheDragonTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedCoerthanTormentTraitCreator = new(() => new BaseTrait(435));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50435\"><strong>Enhanced Coerthan Torment</strong></see> (DRG) [435]\r\n /// <para>Grants the effect of Draconian Fire after successfully completing a combo with Coerthan Torment.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Draconian Fire ends upon execution of any melee weaponskill.</para>\n /// <para>Upgrades Doom Spike to Draconian Fury while under the effect of Draconian Fire.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedCoerthanTormentTrait => _EnhancedCoerthanTormentTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSpineshatterDiveTraitCreator = new(() => new BaseTrait(436));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50436\"><strong>Enhanced Spineshatter Dive</strong></see> (DRG) [436]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Spineshatter Dive.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSpineshatterDiveTrait => _EnhancedSpineshatterDiveTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _LanceMasteryIiiTraitCreator = new(() => new BaseTrait(437));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50437\"><strong>Lance Mastery III</strong></see> (DRG) [437]\r\n /// <para>Upgrades Full Thrust to Heavens' Thrust and Chaos Thrust to Chaotic Spring.</para>\r\n /// </summary>\r\n public IBaseTrait LanceMasteryIiiTrait => _LanceMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedLifeSurgeTraitCreator = new(() => new BaseTrait(438));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50438\"><strong>Enhanced Life Surge</strong></see> (DRG) [438]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Life Surge.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedLifeSurgeTrait => _EnhancedLifeSurgeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _LanceMasteryIvTraitCreator = new(() => new BaseTrait(508));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50508\"><strong>Lance Mastery IV</strong></see> (DRG) [508]\r\n /// <para>Increases the potency of Geirskogul to 260 and Nastrond to 360.</para>\n /// <para>Allows for the sharpening of the Firstminds' Focus upon successfully landing Raiden Thrust or Draconian Fury, up to a maximum of 2 units.</para>\r\n /// </summary>\r\n public IBaseTrait LanceMasteryIvTrait => _LanceMasteryIvTraitCreator.Value;\r\n#endregion\r\n}", + "BardRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/bard\"><strong>Bard</strong></see>\r\n/// </summary>\r\npublic abstract partial class BardRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.BRD, Job.ARC };\r\n static BRDGauge JobGauge => Svc.Gauges.Get<BRDGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create97);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/97\"><strong>Heavy Shot</strong></see> <i>PvE</i> (ARC BRD) [97] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 160.</para>\n /// <para>Additional Effect: 20% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: 20% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StraightShot_PvECreator = new(ActionFactory.Create98);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/98\"><strong>Straight Shot</strong></see> <i>PvE</i> (ARC BRD) [98] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Can only be executed when Straight Shot Ready.</para>\r\n /// </summary>\r\n public IBaseAction StraightShot_PvE => _StraightShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VenomousBite_PvECreator = new(ActionFactory.Create100);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/100\"><strong>Venomous Bite</strong></see> <i>PvE</i> (ARC BRD) [100] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Venom</para>\n /// <para>Potency: 15</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction VenomousBite_PvE => _VenomousBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RagingStrikes_PvECreator = new(ActionFactory.Create101);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/101\"><strong>Raging Strikes</strong></see> <i>PvE</i> (ARC BRD) [101] [Ability]\r\n /// <para>Increases damage dealt by 15%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction RagingStrikes_PvE => _RagingStrikes_PvECreator.Value;\n private readonly Lazy<IBaseAction> _QuickNock_PvECreator = new(ActionFactory.Create106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/106\"><strong>Quick Nock</strong></see> <i>PvE</i> (ARC BRD) [106] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 110 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: 35% chance of becoming Shadowbite Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction QuickNock_PvE => _QuickNock_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Barrage_PvECreator = new(ActionFactory.Create107);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/107\"><strong>Barrage</strong></see> <i>PvE</i> (ARC BRD) [107] [Ability]\r\n /// <para>Triples the number of strikes for a single-target weaponskill. Additional effects added only once.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Increases the potency of Shadowbite to 270</para>\n /// <para>Additional Effect: Grants Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Barrage_PvE => _Barrage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodletter_PvECreator = new(ActionFactory.Create110);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/110\"><strong>Bloodletter</strong></see> <i>PvE</i> (ARC BRD) [110] [Ability]\r\n /// <para>Delivers an attack with a potency of 110.</para>\n /// <para>Maximum Charges: </para>\n /// <para>Shares a recast timer with Rain of Death.</para>\r\n /// </summary>\r\n public IBaseAction Bloodletter_PvE => _Bloodletter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RepellingShot_PvECreator = new(ActionFactory.Create112);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/112\"><strong>Repelling Shot</strong></see> <i>PvE</i> (ARC BRD) [112] [Ability]\r\n /// <para>Jump 10 yalms away from current target.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RepellingShot_PvE => _RepellingShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Windbite_PvECreator = new(ActionFactory.Create113);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/113\"><strong>Windbite</strong></see> <i>PvE</i> (ARC BRD) [113] [Weaponskill]\r\n /// <para>Deals wind damage with a potency of 60.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 20</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction Windbite_PvE => _Windbite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagesBallad_PvECreator = new(ActionFactory.Create114);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/114\"><strong>Mage's Ballad</strong></see> <i>PvE</i> (BRD) [114] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100.</para>\n /// <para>Additional Effect: Grants Mage's Ballad to self and all party members within 50 yalms, increasing damage dealt by 1%</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: 80% chance to grant Repertoire</para>\n /// <para>Repertoire Effect: Reduces the recast time of Bloodletter and Rain of Death by 7.5s</para>\n /// <para>Additional Effect: Grants Mage's Coda</para>\r\n /// </summary>\r\n public IBaseAction MagesBallad_PvE => _MagesBallad_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmysPaeon_PvECreator = new(ActionFactory.Create116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/116\"><strong>Army's Paeon</strong></see> <i>PvE</i> (BRD) [116] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100.</para>\n /// <para>Additional Effect: Grants Army's Paeon to self and all party members within 50 yalms, increasing direct hit rate by 3%</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: 80% chance to grant Repertoire</para>\n /// <para>Repertoire Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 4%</para>\n /// <para>Can be stacked up to 4 times.</para>\n /// <para>Additional Effect: Grants Army's Coda</para>\r\n /// </summary>\r\n public IBaseAction ArmysPaeon_PvE => _ArmysPaeon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainOfDeath_PvECreator = new(ActionFactory.Create117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/117\"><strong>Rain of Death</strong></see> <i>PvE</i> (BRD) [117] [Ability]\r\n /// <para>Delivers an attack with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Maximum Charges: </para>\n /// <para>Shares a recast timer with Bloodletter.</para>\r\n /// </summary>\r\n public IBaseAction RainOfDeath_PvE => _RainOfDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BattleVoice_PvECreator = new(ActionFactory.Create118);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/118\"><strong>Battle Voice</strong></see> <i>PvE</i> (BRD) [118] [Ability]\r\n /// <para>Increases direct hit rate of self and all nearby party members by 20%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction BattleVoice_PvE => _BattleVoice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmpyrealArrow_PvECreator = new(ActionFactory.Create3558);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3558\"><strong>Empyreal Arrow</strong></see> <i>PvE</i> (BRD) [3558] [Ability]\r\n /// <para>Delivers an attack with a potency of 240.</para>\r\n /// </summary>\r\n public IBaseAction EmpyrealArrow_PvE => _EmpyrealArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheWanderersMinuet_PvECreator = new(ActionFactory.Create3559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3559\"><strong>the Wanderer's Minuet</strong></see> <i>PvE</i> (BRD) [3559] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100.</para>\n /// <para>Additional Effect: Grants the Wanderer's Minuet to self and all party members within 50 yalms, increasing critical hit rate by 2%</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: 80% chance to grant Repertoire</para>\n /// <para>Repertoire Effect: Allows execution of Pitch Perfect</para>\n /// <para>Can be stacked up to 3 times.</para>\n /// <para>Additional Effect: Grants Wanderer's Coda</para>\n /// <para></para>\n /// <para>※Action changes to Pitch Perfect upon execution.</para>\r\n /// </summary>\r\n public IBaseAction TheWanderersMinuet_PvE => _TheWanderersMinuet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronJaws_PvECreator = new(ActionFactory.Create3560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3560\"><strong>Iron Jaws</strong></see> <i>PvE</i> (BRD) [3560] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: If the target is suffering from a Caustic Bite or StormbiteVenomous Bite or WindbiteVenomous Bite or Windbite effect inflicted by you, the effect timer is reset</para>\n /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction IronJaws_PvE => _IronJaws_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheWardensPaean_PvECreator = new(ActionFactory.Create3561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3561\"><strong>the Warden's Paean</strong></see> <i>PvE</i> (BRD) [3561] [Ability]\r\n /// <para>Removes one select detrimental effect from self or target party member. If the target is not enfeebled, a barrier is created nullifying the target's next detrimental effect suffered.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction TheWardensPaean_PvE => _TheWardensPaean_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sidewinder_PvECreator = new(ActionFactory.Create3562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3562\"><strong>Sidewinder</strong></see> <i>PvE</i> (BRD) [3562] [Ability]\r\n /// <para>Delivers an attack with a potency of 320.</para>\r\n /// </summary>\r\n public IBaseAction Sidewinder_PvE => _Sidewinder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PitchPerfect_PvECreator = new(ActionFactory.Create7404);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7404\"><strong>Pitch Perfect</strong></see> <i>PvE</i> (BRD) [7404] [Ability]\r\n /// <para>Delivers an attack to the target. Potency varies with number of Repertoire stacks.</para>\n /// <para>1 Repertoire Stack: 100</para>\n /// <para>2 Repertoire Stacks: 220</para>\n /// <para>3 Repertoire Stacks: 360</para>\n /// <para>Can only be executed when the Wanderer's Minuet is active.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PitchPerfect_PvE => _PitchPerfect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Troubadour_PvECreator = new(ActionFactory.Create7405);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7405\"><strong>Troubadour</strong></see> <i>PvE</i> (BRD) [7405] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with machinist's Tactician or dancer's Shield Samba.</para>\r\n /// </summary>\r\n public IBaseAction Troubadour_PvE => _Troubadour_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CausticBite_PvECreator = new(ActionFactory.Create7406);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7406\"><strong>Caustic Bite</strong></see> <i>PvE</i> (BRD) [7406] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 150.</para>\n /// <para>Additional Effect: Poison</para>\n /// <para>Potency: 20</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction CausticBite_PvE => _CausticBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stormbite_PvECreator = new(ActionFactory.Create7407);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7407\"><strong>Stormbite</strong></see> <i>PvE</i> (BRD) [7407] [Weaponskill]\r\n /// <para>Deals wind damage with a potency of 100.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 25</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Stormbite_PvE => _Stormbite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NaturesMinne_PvECreator = new(ActionFactory.Create7408);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7408\"><strong>Nature's Minne</strong></see> <i>PvE</i> (BRD) [7408] [Ability]\r\n /// <para>Increases HP recovery via healing actions by 15% for self and nearby party members.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction NaturesMinne_PvE => _NaturesMinne_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RefulgentArrow_PvECreator = new(ActionFactory.Create7409);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7409\"><strong>Refulgent Arrow</strong></see> <i>PvE</i> (BRD) [7409] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 280.</para>\n /// <para>Can only be executed when Straight Shot Ready.</para>\r\n /// </summary>\r\n public IBaseAction RefulgentArrow_PvE => _RefulgentArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeadGraze_PvECreator = new(ActionFactory.Create7551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7551\"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7551] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction HeadGraze_PvE => _HeadGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FootGraze_PvECreator = new(ActionFactory.Create7553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7553\"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7553] [Ability]\r\n /// <para>Binds target.</para>\n /// <para>Duration: 10s</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Target unbound if damage taken.</para>\r\n /// </summary>\r\n public IBaseAction FootGraze_PvE => _FootGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegGraze_PvECreator = new(ActionFactory.Create7554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7554\"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7554] [Ability]\r\n /// <para>Afflicts target with Heavy +40%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LegGraze_PvE => _LegGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Peloton_PvECreator = new(ActionFactory.Create7557);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7557\"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7557] [Ability]\r\n /// <para>Increases movement speed of self and nearby party members.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends when enmity is generated. Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Peloton_PvE => _Peloton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EagleEyeShotL_PvECreator = new(ActionFactory.Create13007);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13007\"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) [13007] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 80. Potency increases up to 1,000% the lower the target's HP.</para>\n /// <para>Generates significant enmity upon use.</para>\r\n /// </summary>\r\n public IBaseAction EagleEyeShotL_PvE => _EagleEyeShotL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheFiendhunter_PvECreator = new(ActionFactory.Create14479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14479\"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [14479] [Spell]\r\n /// <para>Increases physical damage dealt by 25% and evasion by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheFiendhunter_PvE => _WisdomOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shadowbite_PvECreator = new(ActionFactory.Create16494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16494\"><strong>Shadowbite</strong></see> <i>PvE</i> (BRD) [16494] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 170 to target and all enemies nearby it.</para>\n /// <para>Barrage Potency: 270</para>\n /// <para>Can only be executed when Shadowbite Ready.</para>\r\n /// </summary>\r\n public IBaseAction Shadowbite_PvE => _Shadowbite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BurstShot_PvECreator = new(ActionFactory.Create16495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16495\"><strong>Burst Shot</strong></see> <i>PvE</i> (BRD) [16495] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 220.</para>\n /// <para>Additional Effect: 35% chance of becoming Straight Shot Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction BurstShot_PvE => _BurstShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ApexArrow_PvECreator = new(ActionFactory.Create16496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16496\"><strong>Apex Arrow</strong></see> <i>PvE</i> (BRD) [16496] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all enemies in a straight line before you.</para>\n /// <para>Soul Voice Gauge Cost: 20 </para>\n /// <para>Potency increases up to 500 as Soul Voice Gauge exceeds minimum cost.</para>\n /// <para>Additional Effect: Grants Blast Arrow Ready upon execution while Soul Voice Gauge is 80 or higher</para>\n /// <para>Duration: 10s</para>\n /// <para>Consumes Soul Voice Gauge upon execution.</para>\n /// <para></para>\n /// <para>※Action changes to Blast Arrow while under the effect of Blast Arrow Ready.</para>\r\n /// </summary>\r\n public IBaseAction ApexArrow_PvE => _ApexArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvE_17123Creator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE_17123 => _HeavyShot_PvE_17123Creator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheFiendhunter_PvECreator = new(ActionFactory.Create22349);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22349\"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [22349] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 50%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheFiendhunter_PvE => _PureEssenceOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDervish_PvECreator = new(ActionFactory.Create22356);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22356\"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) [22356] [Ability]\r\n /// <para>Increases critical hit rate of self and nearby party members by 10%, increases damage dealt by 7%, and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 1%.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostDervish_PvE => _LostDervish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ladonsbite_PvECreator = new(ActionFactory.Create25783);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25783\"><strong>Ladonsbite</strong></see> <i>PvE</i> (BRD) [25783] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 130 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: 35% chance of becoming Shadowbite Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ladonsbite_PvE => _Ladonsbite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlastArrow_PvECreator = new(ActionFactory.Create25784);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25784\"><strong>Blast Arrow</strong></see> <i>PvE</i> (BRD) [25784] [Weaponskill]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Blast Arrow Ready.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BlastArrow_PvE => _BlastArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantFinale_PvECreator = new(ActionFactory.Create25785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25785\"><strong>Radiant Finale</strong></see> <i>PvE</i> (BRD) [25785] [Ability]\r\n /// <para>Increases damage dealt by self and nearby party members.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effectiveness is determined by the number of different Coda active in the Song Gauge.</para>\n /// <para>1 Coda: 2%</para>\n /// <para>2 Coda: 4%</para>\n /// <para>3 Coda: 6%</para>\n /// <para>Can only be executed when at least 1 coda is active.</para>\r\n /// </summary>\r\n public IBaseAction RadiantFinale_PvE => _RadiantFinale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PowerfulShot_PvPCreator = new(ActionFactory.Create29391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29391\"><strong>Powerful Shot</strong></see> <i>PvP</i> (BRD) [29391] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 4,000.</para>\n /// <para>Potency increases up to 6,000 the further you are from the target, reaching its maximum value when the target is 15 yalms away.</para>\n /// <para>Additional Effect: Reduces the recast time of Empyreal Arrow by 5s</para>\n /// <para>Requires casting time to execute. However, it is possible to walk while casting.</para>\r\n /// </summary>\r\n public IBaseAction PowerfulShot_PvP => _PowerfulShot_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PitchPerfect_PvPCreator = new(ActionFactory.Create29392);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29392\"><strong>Pitch Perfect</strong></see> <i>PvP</i> (BRD) [29392] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 4,000.</para>\n /// <para>Potency increases up to 8,000 the farther away you are from the target, reaching its maximum value when the target is 15 yalms away.</para>\n /// <para>Additional Effect: Reduces the recast time of Empyreal Arrow by 5s</para>\n /// <para>Can only be executed while under the effect of Repertoire.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PitchPerfect_PvP => _PitchPerfect_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ApexArrow_PvPCreator = new(ActionFactory.Create29393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29393\"><strong>Apex Arrow</strong></see> <i>PvP</i> (BRD) [29393] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Blast Arrow Ready</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Frontliner's March</para>\n /// <para>Frontliner's March Effect: Reduces your weaponskill cast time and recast time by 10%, and increases damage dealt by self and all party members within a radius of 30 yalms by 5%</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Blast Arrow while under the effect of Blast Arrow Ready.</para>\r\n /// </summary>\r\n public IBaseAction ApexArrow_PvP => _ApexArrow_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BlastArrow_PvPCreator = new(ActionFactory.Create29394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29394\"><strong>Blast Arrow</strong></see> <i>PvP</i> (BRD) [29394] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 10,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Frontliner's Forte</para>\n /// <para>Frontliner's Forte Effect: Reduces your weaponskill cast time and recast time by 10%, and increases damage dealt by self and all party members within a radius of 30 yalms by 5%</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BlastArrow_PvP => _BlastArrow_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SilentNocturne_PvPCreator = new(ActionFactory.Create29395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29395\"><strong>Silent Nocturne</strong></see> <i>PvP</i> (BRD) [29395] [Ability]\r\n /// <para>Silences target.</para>\n /// <para>Duration: 2s</para>\n /// <para>Additional Effect: Grants Repertoire</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Powerful Shot changes to Pitch Perfect while under the effect of Repertoire.</para>\r\n /// </summary>\r\n public IBaseAction SilentNocturne_PvP => _SilentNocturne_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EmpyrealArrow_PvPCreator = new(ActionFactory.Create29396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29396\"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29396] [Ability]\r\n /// <para>Delivers a ranged attack with a potency of 3,000.</para>\n /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para>\n /// <para>Maximum Charges: 3</para>\r\n /// </summary>\r\n public IBaseAction EmpyrealArrow_PvP => _EmpyrealArrow_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EmpyrealArrow_PvP_29397Creator = new(ActionFactory.Create29397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29397\"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29397] [Ability]\r\n /// <para>Delivers a ranged attack with a potency of 3,000.</para>\n /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para>\n /// <para>Maximum Charges: 3</para>\r\n /// </summary>\r\n public IBaseAction EmpyrealArrow_PvP_29397 => _EmpyrealArrow_PvP_29397Creator.Value;\n private readonly Lazy<IBaseAction> _EmpyrealArrow_PvP_29398Creator = new(ActionFactory.Create29398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29398\"><strong>Empyreal Arrow</strong></see> <i>PvP</i> (BRD) [29398] [Ability]\r\n /// <para>Delivers a ranged attack with a potency of 3,000.</para>\n /// <para>Consumes all charges upon execution, each charge adding an additional strike to the attack.</para>\n /// <para>Maximum Charges: 3</para>\r\n /// </summary>\r\n public IBaseAction EmpyrealArrow_PvP_29398 => _EmpyrealArrow_PvP_29398Creator.Value;\n private readonly Lazy<IBaseAction> _RepellingShot_PvPCreator = new(ActionFactory.Create29399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29399\"><strong>Repelling Shot</strong></see> <i>PvP</i> (BRD) [29399] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: 10-yalm backstep</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 3s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RepellingShot_PvP => _RepellingShot_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TheWardensPaean_PvPCreator = new(ActionFactory.Create29400);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29400\"><strong>the Warden's Paean</strong></see> <i>PvP</i> (BRD) [29400] [Ability]\r\n /// <para>Removes one status affliction from self or target party member that can be removed by Purify. If a status affliction cannot be removed, creates a barrier that will nullify the next status affliction that can be removed by Purify.</para>\n /// <para>Duration: 8s</para>\n /// <para>Grants Warden's Grace upon successfully removing or nullifying a status affliction.</para>\n /// <para>Warden's Grace Effect: Reduces damage taken by 25% while increasing HP recovered by healing actions by 25%</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Grants Repertoire</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Powerful Shot changes to Pitch Perfect while under the effect of Repertoire.</para>\r\n /// </summary>\r\n public IBaseAction TheWardensPaean_PvP => _TheWardensPaean_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FinalFantasia_PvPCreator = new(ActionFactory.Create29401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29401\"><strong>Final Fantasia</strong></see> <i>PvP</i> (BRD) [29401] [Limit Break]\r\n /// <para>Reduces your weaponskill cast time and recast time by 10% while also increasing movement speed by 25%.</para>\n /// <para>Additional Effect: Increases damage dealt by self and all party members within a radius of 30 yalms by 10% while also gradually filling the limit gauge</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 120s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction FinalFantasia_PvP => _FinalFantasia_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _HeavierShotTraitCreator = new(() => new BaseTrait(17));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50017\"><strong>Heavier Shot</strong></see> (ARC BRD) [17]\r\n /// <para>Adds to Heavy Shot a 20% chance that you will become Straight Shot Ready.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait HeavierShotTrait => _HeavierShotTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageTraitCreator = new(() => new BaseTrait(18));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50018\"><strong>Increased Action Damage</strong></see> (ARC BRD) [18]\r\n /// <para>Increases base action damage by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageTrait => _IncreasedActionDamageTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageIiTraitCreator = new(() => new BaseTrait(20));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50020\"><strong>Increased Action Damage II</strong></see> (ARC BRD) [20]\r\n /// <para>Increases base action damage by 20%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageIiTrait => _IncreasedActionDamageIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BiteMasteryTraitCreator = new(() => new BaseTrait(168));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50168\"><strong>Bite Mastery</strong></see> (BRD) [168]\r\n /// <para>Upgrades Venomous Bite and Windbite to Caustic Bite and Stormbite respectively.</para>\r\n /// </summary>\r\n public IBaseTrait BiteMasteryTrait => _BiteMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEmpyrealArrowTraitCreator = new(() => new BaseTrait(169));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50169\"><strong>Enhanced Empyreal Arrow</strong></see> (BRD) [169]\r\n /// <para>Guarantees the trigger of the additional effects for current Mage's Ballad, Army's Paeon, and the Wanderer's Minuet when Empyreal Arrow hits a target.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEmpyrealArrowTrait => _EnhancedEmpyrealArrowTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _StraightShotMasteryTraitCreator = new(() => new BaseTrait(282));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50282\"><strong>Straight Shot Mastery</strong></see> (BRD) [282]\r\n /// <para>Upgrades Straight Shot to Refulgent Arrow.</para>\r\n /// </summary>\r\n public IBaseTrait StraightShotMasteryTrait => _StraightShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedQuickNockTraitCreator = new(() => new BaseTrait(283));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50283\"><strong>Enhanced Quick Nock</strong></see> (BRD) [283]\r\n /// <para>Adds to Quick Nock a 35% chance that you will become Shadowbite Ready.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedQuickNockTrait => _EnhancedQuickNockTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BiteMasteryIiTraitCreator = new(() => new BaseTrait(284));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50284\"><strong>Bite Mastery II</strong></see> (BRD) [284]\r\n /// <para>Adds to Stormbite, Caustic Bite, and Iron Jaws a 35% chance that you will become Straight Shot Ready.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait BiteMasteryIiTrait => _BiteMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HeavyShotMasteryTraitCreator = new(() => new BaseTrait(285));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50285\"><strong>Heavy Shot Mastery</strong></see> (BRD) [285]\r\n /// <para>Upgrades Heavy Shot to Burst Shot.</para>\r\n /// </summary>\r\n public IBaseTrait HeavyShotMasteryTrait => _HeavyShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedArmysPaeonTraitCreator = new(() => new BaseTrait(286));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50286\"><strong>Enhanced Army's Paeon</strong></see> (BRD) [286]\r\n /// <para>While under the effect of Army's Paeon with at least one stack of Repertoire, singing Mage's Ballad or the Wanderer's Minuet will grant Army's Muse, reducing weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay.</para>\n /// <para>Duration: 10s</para>\n /// <para>Allowing the effect of Army's Paeon and accumulated stacks of Repertoire to expire without singing Mage's Ballad or the Wanderer's Minuet will grant Army's Ethos. </para>\n /// <para>Duration: 30s</para>\n /// <para>While under the effect of Army's Ethos, singing Mage's Ballad or the Wanderer's Minuet will grant Army's Muse. Both Army's Ethos and Army's Muse require stacks of Repertoire, the number of which will determine the potency of the latter.</para>\n /// <para>1 Repertoire: 1%</para>\n /// <para>2 Repertoire: 2%</para>\n /// <para>3 Repertoire: 4%</para>\n /// <para>4 Repertoire: 12%</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedArmysPaeonTrait => _EnhancedArmysPaeonTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SoulVoiceTraitCreator = new(() => new BaseTrait(287));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50287\"><strong>Soul Voice</strong></see> (BRD) [287]\r\n /// <para>Increases Soul Voice Gauge by 5 each time Repertoire is granted.</para>\r\n /// </summary>\r\n public IBaseTrait SoulVoiceTrait => _SoulVoiceTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _QuickNockMasteryTraitCreator = new(() => new BaseTrait(444));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50444\"><strong>Quick Nock Mastery</strong></see> (BRD) [444]\r\n /// <para>Upgrades Quick Nock to Ladonsbite.</para>\r\n /// </summary>\r\n public IBaseTrait QuickNockMasteryTrait => _QuickNockMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedBloodletterTraitCreator = new(() => new BaseTrait(445));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50445\"><strong>Enhanced Bloodletter</strong></see> (BRD) [445]\r\n /// <para>Allows a third charge of Bloodletter and Rain of Death.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedBloodletterTrait => _EnhancedBloodletterTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedApexArrowTraitCreator = new(() => new BaseTrait(446));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50446\"><strong>Enhanced Apex Arrow</strong></see> (BRD) [446]\r\n /// <para>Grants Blast Arrow Ready upon executing Apex Arrow after the Soul Voice Gauge has reached 80 or higher.</para>\n /// <para>Duration: 10s</para>\n /// <para>Apex Arrow becomes Blast Arrow while under this effect.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedApexArrowTrait => _EnhancedApexArrowTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedTroubadourTraitCreator = new(() => new BaseTrait(447));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50447\"><strong>Enhanced Troubadour</strong></see> (BRD) [447]\r\n /// <para>Reduces Troubadour recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedTroubadourTrait => _EnhancedTroubadourTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MinstrelsCodaTraitCreator = new(() => new BaseTrait(448));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50448\"><strong>Minstrel's Coda</strong></see> (BRD) [448]\r\n /// <para>Grants Mage's Coda, Army's Coda, or Wanderer's Coda upon singing Mage's Ballad, Army's Paeon, or the Wanderer's Minuet respectively.</para>\r\n /// </summary>\r\n public IBaseTrait MinstrelsCodaTrait => _MinstrelsCodaTraitCreator.Value;\r\n#endregion\r\n}", + "WhiteMageRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/whitemage\"><strong>White Mage</strong></see>\r\n/// </summary>\r\npublic abstract partial class WhiteMageRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.WHM, Job.CNJ };\r\n static WHMGauge JobGauge => Svc.Gauges.Get<WHMGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stone_PvECreator = new(ActionFactory.Create119);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/119\"><strong>Stone</strong></see> <i>PvE</i> (CNJ WHM) [119] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction Stone_PvE => _Stone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cure_PvECreator = new(ActionFactory.Create120);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/120\"><strong>Cure</strong></see> <i>PvE</i> (CNJ WHM) [120] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: 15% chance next Cure II will cost no MP</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: 15% chance next Cure II will cost no MP</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Cure_PvE => _Cure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aero_PvECreator = new(ActionFactory.Create121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/121\"><strong>Aero</strong></see> <i>PvE</i> (CNJ WHM) [121] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Aero_PvE => _Aero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Medica_PvECreator = new(ActionFactory.Create124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/124\"><strong>Medica</strong></see> <i>PvE</i> (CNJ WHM) [124] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Medica_PvE => _Medica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Raise_PvECreator = new(ActionFactory.Create125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/125\"><strong>Raise</strong></see> <i>PvE</i> (CNJ WHM) [125] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Raise_PvE => _Raise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIi_PvECreator = new(ActionFactory.Create127);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/127\"><strong>Stone II</strong></see> <i>PvE</i> (CNJ WHM) [127] [Spell]\r\n /// <para>Deals earth damage with a potency of 190.</para>\r\n /// </summary>\r\n public IBaseAction StoneIi_PvE => _StoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIii_PvECreator = new(ActionFactory.Create131);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/131\"><strong>Cure III</strong></see> <i>PvE</i> (WHM) [131] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction CureIii_PvE => _CureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIi_PvECreator = new(ActionFactory.Create132);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/132\"><strong>Aero II</strong></see> <i>PvE</i> (CNJ WHM) [132] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AeroIi_PvE => _AeroIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/133\"><strong>Medica II</strong></see> <i>PvE</i> (CNJ WHM) [133] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: </para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create135);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/135\"><strong>Cure II</strong></see> <i>PvE</i> (CNJ WHM) [135] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PresenceOfMind_PvECreator = new(ActionFactory.Create136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/136\"><strong>Presence of Mind</strong></see> <i>PvE</i> (WHM) [136] [Ability]\r\n /// <para>Reduces spell cast time and recast time, and auto-attack delay by 20%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction PresenceOfMind_PvE => _PresenceOfMind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Regen_PvECreator = new(ActionFactory.Create137);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/137\"><strong>Regen</strong></see> <i>PvE</i> (WHM) [137] [Spell]\r\n /// <para>Grants healing over time effect to target.</para>\n /// <para>Cure Potency: </para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction Regen_PvE => _Regen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Holy_PvECreator = new(ActionFactory.Create139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/139\"><strong>Holy</strong></see> <i>PvE</i> (WHM) [139] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction Holy_PvE => _Holy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benediction_PvECreator = new(ActionFactory.Create140);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/140\"><strong>Benediction</strong></see> <i>PvE</i> (WHM) [140] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction Benediction_PvE => _Benediction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvECreator = new(ActionFactory.Create1584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1584\"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability]\r\n /// <para>Restores own or target party member's HP while also removing Stun, Sleep, Bind, Heavy, and Silence.</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Cure potency is doubled when a status affliction is removed. Can be used regardless of own status affliction.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvE => _Purify_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIii_PvECreator = new(ActionFactory.Create3568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3568\"><strong>Stone III</strong></see> <i>PvE</i> (WHM) [3568] [Spell]\r\n /// <para>Deals earth damage with a potency of 220.</para>\r\n /// </summary>\r\n public IBaseAction StoneIii_PvE => _StoneIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Asylum_PvECreator = new(ActionFactory.Create3569);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3569\"><strong>Asylum</strong></see> <i>PvE</i> (WHM) [3569] [Ability]\r\n /// <para>Envelops a designated area in a veil of succor, granting healing over time to self and any party members who enter.</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 24s </para>\n /// <para>Additional Effect: Increases HP recovery via healing actions on party members in the designated area by 10%</para>\r\n /// </summary>\r\n public IBaseAction Asylum_PvE => _Asylum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tetragrammaton_PvECreator = new(ActionFactory.Create3570);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3570\"><strong>Tetragrammaton</strong></see> <i>PvE</i> (WHM) [3570] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction Tetragrammaton_PvE => _Tetragrammaton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Assize_PvECreator = new(ActionFactory.Create3571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3571\"><strong>Assize</strong></see> <i>PvE</i> (WHM) [3571] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 400 to all nearby enemies.</para>\n /// <para>Additional Effect: Restores own HP and the HP of nearby party members</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Restores 5% of maximum MP</para>\r\n /// </summary>\r\n public IBaseAction Assize_PvE => _Assize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThinAir_PvECreator = new(ActionFactory.Create7430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7430\"><strong>Thin Air</strong></see> <i>PvE</i> (WHM) [7430] [Ability]\r\n /// <para>Next action is executed without MP cost.</para>\n /// <para>Duration: 12s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction ThinAir_PvE => _ThinAir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIv_PvECreator = new(ActionFactory.Create7431);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7431\"><strong>Stone IV</strong></see> <i>PvE</i> (WHM) [7431] [Spell]\r\n /// <para>Deals earth damage with a potency of 260.</para>\r\n /// </summary>\r\n public IBaseAction StoneIv_PvE => _StoneIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DivineBenison_PvECreator = new(ActionFactory.Create7432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7432\"><strong>Divine Benison</strong></see> <i>PvE</i> (WHM) [7432] [Ability]\r\n /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 500 potency.</para>\n /// <para>Duration: 15s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction DivineBenison_PvE => _DivineBenison_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PlenaryIndulgence_PvECreator = new(ActionFactory.Create7433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7433\"><strong>Plenary Indulgence</strong></see> <i>PvE</i> (WHM) [7433] [Ability]\r\n /// <para>Grants Confession to self and nearby party members.</para>\n /// <para>Upon receiving HP recovery via Medica, Medica II, Cure III, or Afflatus Rapture cast by self, Confession triggers an additional healing effect.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction PlenaryIndulgence_PvE => _PlenaryIndulgence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Esuna_PvECreator = new(ActionFactory.Create7568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7568\"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction Esuna_PvE => _Esuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rescue_PvECreator = new(ActionFactory.Create7571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7571\"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability]\r\n /// <para>Instantly draws target party member to your side. Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction Rescue_PvE => _Rescue_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheAetherweaver_PvECreator = new(ActionFactory.Create12958);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12958\"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell]\r\n /// <para>Increases magic damage dealt by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheAetherweaver_PvE => _WisdomOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheOrdained_PvECreator = new(ActionFactory.Create12962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12962\"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell]\r\n /// <para>Increases maximum MP by 50% and healing magic potency by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheOrdained_PvE => _WisdomOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheTemplar_PvECreator = new(ActionFactory.Create12965);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12965\"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell]\r\n /// <para>Increases healing magic potency by 50% and maximum HP by 30%, while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheTemplar_PvE => _WisdomOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RefreshL_PvECreator = new(ActionFactory.Create13002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13002\"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell]\r\n /// <para>Increases the amount of magia aether regenerated over time by self and nearby party members.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction RefreshL_PvE => _RefreshL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishL_PvECreator = new(ActionFactory.Create13003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13003\"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishL_PvE => _BanishL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishLIii_PvECreator = new(ActionFactory.Create13004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13004\"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishLIii_PvE => _BanishLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SacrificeL_PvECreator = new(ActionFactory.Create14481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14481\"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SacrificeL_PvE => _SacrificeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AfflatusSolace_PvECreator = new(ActionFactory.Create16531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16531\"><strong>Afflatus Solace</strong></see> <i>PvE</i> (WHM) [16531] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Nourishes the Blood Lily</para>\n /// <para>Healing Gauge Cost: 1 Lily</para>\r\n /// </summary>\r\n public IBaseAction AfflatusSolace_PvE => _AfflatusSolace_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dia_PvECreator = new(ActionFactory.Create16532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16532\"><strong>Dia</strong></see> <i>PvE</i> (WHM) [16532] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 65.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 65</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Dia_PvE => _Dia_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Glare_PvECreator = new(ActionFactory.Create16533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16533\"><strong>Glare</strong></see> <i>PvE</i> (WHM) [16533] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 290.</para>\r\n /// </summary>\r\n public IBaseAction Glare_PvE => _Glare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AfflatusRapture_PvECreator = new(ActionFactory.Create16534);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16534\"><strong>Afflatus Rapture</strong></see> <i>PvE</i> (WHM) [16534] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Nourishes the Blood Lily</para>\n /// <para>Healing Gauge Cost: 1 Lily</para>\r\n /// </summary>\r\n public IBaseAction AfflatusRapture_PvE => _AfflatusRapture_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AfflatusMisery_PvECreator = new(ActionFactory.Create16535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16535\"><strong>Afflatus Misery</strong></see> <i>PvE</i> (WHM) [16535] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,240 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Can only be executed when the Blood Lily is in full bloom.</para>\r\n /// </summary>\r\n public IBaseAction AfflatusMisery_PvE => _AfflatusMisery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Temperance_PvECreator = new(ActionFactory.Create16536);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16536\"><strong>Temperance</strong></see> <i>PvE</i> (WHM) [16536] [Ability]\r\n /// <para>Increases healing magic potency by 20%, while reducing damage taken by self and all party members within a radius of 50 yalms by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Temperance_PvE => _Temperance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Repose_PvECreator = new(ActionFactory.Create16560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16560\"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell]\r\n /// <para>Afflicts target with Sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Repose_PvE => _Repose_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20741);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20741\"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item]\r\n /// <para>Increases damage dealt by 80%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheAetherweaver_PvE => _EssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheProfane_PvECreator = new(ActionFactory.Create20750);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20750\"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheProfane_PvE => _EssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20755);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20755\"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item]\r\n /// <para>Increases defense by 50%, maximum HP by 45%, and damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheTemplar_PvE => _EssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20756);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20756\"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item]\r\n /// <para>Increases damage dealt by 96%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheAetherweaver_PvE => _DeepEssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheProfane_PvECreator = new(ActionFactory.Create20765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20765\"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 120%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheProfane_PvE => _DeepEssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20770);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20770\"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item]\r\n /// <para>Increases defense by 60%, maximum HP by 54%, and damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheTemplar_PvE => _DeepEssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvE_21886Creator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE_21886 => _CureIi_PvE_21886Creator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvE_21888Creator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE_21888 => _MedicaIi_PvE_21888Creator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDivine_PvECreator = new(ActionFactory.Create22351);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22351\"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 35%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDivine_PvE => _PureEssenceOfTheDivine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSeraphStrike_PvECreator = new(ActionFactory.Create22354);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22354\"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability]\r\n /// <para>Consumes MP to deliver a jumping attack that deals unaspected damage with a potency of 500.</para>\n /// <para>Additional Effect: Reduces target's accuracy by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Cleric Stance to self.</para>\n /// <para>Cleric Stance Bonus: Reduces healing potency by 60% while increasing damage dealt by 60%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostSeraphStrike_PvE => _LostSeraphStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFullCure_PvECreator = new(ActionFactory.Create23920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23920\"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability]\r\n /// <para>Fully restores HP and MP while granting Auto-potion and Auto-ether to self and nearby party members.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion and Auto-ether effect to end is reduced to 10%</para>\r\n /// </summary>\r\n public IBaseAction LostFullCure_PvE => _LostFullCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GlareIii_PvECreator = new(ActionFactory.Create25859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25859\"><strong>Glare III</strong></see> <i>PvE</i> (WHM) [25859] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 310.</para>\r\n /// </summary>\r\n public IBaseAction GlareIii_PvE => _GlareIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HolyIii_PvECreator = new(ActionFactory.Create25860);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25860\"><strong>Holy III</strong></see> <i>PvE</i> (WHM) [25860] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150 to all nearby enemies.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction HolyIii_PvE => _HolyIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aquaveil_PvECreator = new(ActionFactory.Create25861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25861\"><strong>Aquaveil</strong></see> <i>PvE</i> (WHM) [25861] [Ability]\r\n /// <para>Reduces damage taken by a party member or self by 15%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction Aquaveil_PvE => _Aquaveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiturgyOfTheBell_PvECreator = new(ActionFactory.Create25862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25862\"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25862] [Ability]\r\n /// <para>Places a healing blossom at the designated location and grants 5 stacks of Liturgy of the Bell to self.</para>\n /// <para>Duration: 20s</para>\n /// <para>Taking damage will expend 1 stack of Liturgy of the Bell to heal self and all party members within a radius of 20 yalms.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>The effect of this action can only be triggered once per second.</para>\n /// <para>Any remaining stacks of Liturgy of the Bell will trigger an additional healing effect when time expires or upon executing this action a second time.</para>\n /// <para>Cure Potency: 200 for every remaining stack of Liturgy of the Bell</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction LiturgyOfTheBell_PvE => _LiturgyOfTheBell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiturgyOfTheBell_PvE_25863Creator = new(ActionFactory.Create25863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25863\"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25863] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LiturgyOfTheBell_PvE_25863 => _LiturgyOfTheBell_PvE_25863Creator.Value;\n private readonly Lazy<IBaseAction> _LiturgyOfTheBell_PvE_25864Creator = new(ActionFactory.Create25864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25864\"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [25864] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LiturgyOfTheBell_PvE_25864 => _LiturgyOfTheBell_PvE_25864Creator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiturgyOfTheBell_PvE_28509Creator = new(ActionFactory.Create28509);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28509\"><strong>Liturgy of the Bell</strong></see> <i>PvE</i> (WHM) [28509] [Ability]\r\n /// <para>Places a healing blossom at the designated location and grants 5 stacks of Liturgy of the Bell to self.</para>\n /// <para>Duration: 20s</para>\n /// <para>Taking damage will expend 1 stack of Liturgy of the Bell to heal self and all party members within a radius of 20 yalms.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>The effect of this action can only be triggered once per second.</para>\n /// <para>Any remaining stacks of Liturgy of the Bell will trigger an additional healing effect when time expires or upon executing this action a second time.</para>\n /// <para>Cure Potency: 200 for every remaining stack of Liturgy of the Bell</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction LiturgyOfTheBell_PvE_28509 => _LiturgyOfTheBell_PvE_28509Creator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _GlareIii_PvPCreator = new(ActionFactory.Create29223);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29223\"><strong>Glare III</strong></see> <i>PvP</i> (WHM) [29223] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 5,000.</para>\r\n /// </summary>\r\n public IBaseAction GlareIii_PvP => _GlareIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvPCreator = new(ActionFactory.Create29224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29224\"><strong>Cure II</strong></see> <i>PvP</i> (WHM) [29224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Cure III when under the effect of Cure III Ready.</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvP => _CureIi_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CureIii_PvPCreator = new(ActionFactory.Create29225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29225\"><strong>Cure III</strong></see> <i>PvP</i> (WHM) [29225] [Spell]\r\n /// <para>Restores HP of self or target and all party members nearby target.</para>\n /// <para>Cure Potency: 16,000</para>\n /// <para>Can only be executed while under the effect of Cure III Ready.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CureIii_PvP => _CureIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AfflatusMisery_PvPCreator = new(ActionFactory.Create29226);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29226\"><strong>Afflatus Misery</strong></see> <i>PvP</i> (WHM) [29226] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AfflatusMisery_PvP => _AfflatusMisery_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Aquaveil_PvPCreator = new(ActionFactory.Create29227);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29227\"><strong>Aquaveil</strong></see> <i>PvP</i> (WHM) [29227] [Ability]\r\n /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 8,000 potency.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Nullifies one status affliction that can be removed by Purify</para>\n /// <para>Barrier potency is doubled when successfully nullifying a status affliction.</para>\r\n /// </summary>\r\n public IBaseAction Aquaveil_PvP => _Aquaveil_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MiracleOfNature_PvPCreator = new(ActionFactory.Create29228);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29228\"><strong>Miracle of Nature</strong></see> <i>PvP</i> (WHM) [29228] [Ability]\r\n /// <para>Forcibly transforms target into a diminutive creature, preventing them from using actions.</para>\n /// <para>Duration: 2s</para>\n /// <para>Has no effect on players under the effect of Guard, players riding machina, or non-player combatants.</para>\r\n /// </summary>\r\n public IBaseAction MiracleOfNature_PvP => _MiracleOfNature_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SeraphStrike_PvPCreator = new(ActionFactory.Create29229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29229\"><strong>Seraph Strike</strong></see> <i>PvP</i> (WHM) [29229] [Ability]\r\n /// <para>Delivers a jumping attack that deals unaspected damage to target and all enemies nearby it with a potency of 8,000.</para>\n /// <para>Additional Effect: Grants Protect to self and nearby party members</para>\n /// <para>Protect Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Cure III Ready</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Cure II changes to Cure III while under the effect of Cure III Ready.</para>\r\n /// </summary>\r\n public IBaseAction SeraphStrike_PvP => _SeraphStrike_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AfflatusPurgation_PvPCreator = new(ActionFactory.Create29230);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29230\"><strong>Afflatus Purgation</strong></see> <i>PvP</i> (WHM) [29230] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 18,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\n /// <para>Additional Effect: Grants Temperance</para>\n /// <para>Temperance Effect: Increases damage dealt and healing potency by 10%, and grants Regen to self and nearby party members within 30 yalms</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 60s</para>\r\n /// </summary>\r\n public IBaseAction AfflatusPurgation_PvP => _AfflatusPurgation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(23));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50023\"><strong>Maim and Mend</strong></see> (CNJ WHM) [23]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FreecureTraitCreator = new(() => new BaseTrait(25));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50025\"><strong>Freecure</strong></see> (CNJ WHM) [25]\r\n /// <para>Grants a 15% chance that after casting Cure, the MP cost for your next Cure II will be 0.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseTrait FreecureTrait => _FreecureTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(26));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50026\"><strong>Maim and Mend II</strong></see> (CNJ WHM) [26]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _StoneMasteryTraitCreator = new(() => new BaseTrait(179));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50179\"><strong>Stone Mastery</strong></see> (CNJ WHM) [179]\r\n /// <para>Upgrades Stone to Stone II.</para>\r\n /// </summary>\r\n public IBaseTrait StoneMasteryTrait => _StoneMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AeroMasteryTraitCreator = new(() => new BaseTrait(180));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50180\"><strong>Aero Mastery</strong></see> (CNJ WHM) [180]\r\n /// <para>Upgrades Aero to Aero II.</para>\r\n /// </summary>\r\n public IBaseTrait AeroMasteryTrait => _AeroMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _StoneMasteryIiTraitCreator = new(() => new BaseTrait(181));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50181\"><strong>Stone Mastery II</strong></see> (WHM) [181]\r\n /// <para>Upgrades Stone II to Stone III.</para>\r\n /// </summary>\r\n public IBaseTrait StoneMasteryIiTrait => _StoneMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _StoneMasteryIiiTraitCreator = new(() => new BaseTrait(182));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50182\"><strong>Stone Mastery III</strong></see> (WHM) [182]\r\n /// <para>Upgrades Stone III to Stone IV.</para>\r\n /// </summary>\r\n public IBaseTrait StoneMasteryIiiTrait => _StoneMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SecretOfTheLilyTraitCreator = new(() => new BaseTrait(196));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50196\"><strong>Secret of the Lily</strong></see> (WHM) [196]\r\n /// <para>Adds a Lily to your Healing Gauge for every 20 seconds you are engaged in combat, up to a maximum of 3.</para>\r\n /// </summary>\r\n public IBaseTrait SecretOfTheLilyTrait => _SecretOfTheLilyTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AeroMasteryIiTraitCreator = new(() => new BaseTrait(307));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50307\"><strong>Aero Mastery II</strong></see> (WHM) [307]\r\n /// <para>Upgrades Aero II to Dia.</para>\r\n /// </summary>\r\n public IBaseTrait AeroMasteryIiTrait => _AeroMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _StoneMasteryIvTraitCreator = new(() => new BaseTrait(308));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50308\"><strong>Stone Mastery IV</strong></see> (WHM) [308]\r\n /// <para>Upgrades Stone IV to Glare.</para>\r\n /// </summary>\r\n public IBaseTrait StoneMasteryIvTrait => _StoneMasteryIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TranscendentAfflatusTraitCreator = new(() => new BaseTrait(309));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50309\"><strong>Transcendent Afflatus</strong></see> (WHM) [309]\r\n /// <para>Adds a Blood Lily to the Healing Gauge that blooms after three uses of Afflatus Solace or Afflatus Rapture.</para>\r\n /// </summary>\r\n public IBaseTrait TranscendentAfflatusTrait => _TranscendentAfflatusTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAsylumTraitCreator = new(() => new BaseTrait(310));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50310\"><strong>Enhanced Asylum</strong></see> (WHM) [310]\r\n /// <para>Adds an additional effect to Asylum that increases HP recovery via healing actions by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAsylumTrait => _EnhancedAsylumTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _GlareMasteryTraitCreator = new(() => new BaseTrait(487));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50487\"><strong>Glare Mastery</strong></see> (WHM) [487]\r\n /// <para>Upgrades Glare to Glare III.</para>\r\n /// </summary>\r\n public IBaseTrait GlareMasteryTrait => _GlareMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HolyMasteryTraitCreator = new(() => new BaseTrait(488));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50488\"><strong>Holy Mastery</strong></see> (WHM) [488]\r\n /// <para>Upgrades Holy to Holy III.</para>\r\n /// </summary>\r\n public IBaseTrait HolyMasteryTrait => _HolyMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedHealingMagicTraitCreator = new(() => new BaseTrait(489));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50489\"><strong>Enhanced Healing Magic</strong></see> (WHM) [489]\r\n /// <para>Increases the healing potency of Cure to 500, Medica to 400, Cure II to 800, Regen to 250, Cure III to 600, Medica II to 250, Medica II's Regen effect to 150, Afflatus Solace to 800, and Afflatus Rapture to 400.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedHealingMagicTrait => _EnhancedHealingMagicTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDivineBenisonTraitCreator = new(() => new BaseTrait(490));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50490\"><strong>Enhanced Divine Benison</strong></see> (WHM) [490]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Divine Benison.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDivineBenisonTrait => _EnhancedDivineBenisonTraitCreator.Value;\r\n#endregion\r\n}", + "BlackMageRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/blackmage\"><strong>Black Mage</strong></see>\r\n/// </summary>\r\npublic abstract partial class BlackMageRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.BLM, Job.THM };\r\n static BLMGauge JobGauge => Svc.Gauges.Get<BLMGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fire_PvECreator = new(ActionFactory.Create141);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/141\"><strong>Fire</strong></see> <i>PvE</i> (THM BLM) [141] [Spell]\r\n /// <para>Deals fire damage with a potency of 180.</para>\n /// <para>Additional Effect: Grants Astral Fire or removes Umbral Ice</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: 40% chance next Fire III will cost no MP and have no cast time</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: 40% chance next Fire III will cost no MP and have no cast time</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Fire_PvE => _Fire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Blizzard_PvECreator = new(ActionFactory.Create142);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/142\"><strong>Blizzard</strong></see> <i>PvE</i> (THM BLM) [142] [Spell]\r\n /// <para>Deals ice damage with a potency of 180.</para>\n /// <para>Additional Effect: Grants Umbral Ice or removes Astral Fire</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Blizzard_PvE => _Blizzard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Thunder_PvECreator = new(ActionFactory.Create144);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/144\"><strong>Thunder</strong></see> <i>PvE</i> (THM BLM) [144] [Spell]\r\n /// <para>Deals lightning damage with a potency of 30.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 35</para>\n /// <para>Duration: 21s</para>\n /// <para>Additional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para>Additional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para></para>\n /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para>\r\n /// </summary>\r\n public IBaseAction Thunder_PvE => _Thunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIi_PvECreator = new(ActionFactory.Create147);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/147\"><strong>Fire II</strong></see> <i>PvE</i> (THM BLM) [147] [Spell]\r\n /// <para>Deals fire damage with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants Astral Fire III and removes Umbral IceGrants Astral Fire III and removes Umbral IceGrants Astral Fire or removes Umbral IceGrants Astral Fire or removes Umbral Ice</para>\n /// <para>Duration: 15s</para>\n /// <para>Astral Fire Bonus: Grants Enhanced Flare</para>\n /// <para>Effect is canceled if Astral Fire ends.</para>\r\n /// </summary>\r\n public IBaseAction FireIi_PvE => _FireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Transpose_PvECreator = new(ActionFactory.Create149);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/149\"><strong>Transpose</strong></see> <i>PvE</i> (THM BLM) [149] [Ability]\r\n /// <para>Swaps Astral Fire with a single Umbral Ice, or Umbral Ice with a single Astral Fire.</para>\r\n /// </summary>\r\n public IBaseAction Transpose_PvE => _Transpose_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIii_PvECreator = new(ActionFactory.Create152);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/152\"><strong>Fire III</strong></see> <i>PvE</i> (THM BLM) [152] [Spell]\r\n /// <para>Deals fire damage with a potency of 260.</para>\n /// <para>Additional Effect: Grants Astral Fire III and removes Umbral Ice</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction FireIii_PvE => _FireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIii_PvECreator = new(ActionFactory.Create153);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/153\"><strong>Thunder III</strong></see> <i>PvE</i> (BLM) [153] [Spell]\r\n /// <para>Deals lightning damage with a potency of 50.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 35</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para>Additional Effect: 10% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para></para>\n /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para>\r\n /// </summary>\r\n public IBaseAction ThunderIii_PvE => _ThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlizzardIii_PvECreator = new(ActionFactory.Create154);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/154\"><strong>Blizzard III</strong></see> <i>PvE</i> (BLM) [154] [Spell]\r\n /// <para>Deals ice damage with a potency of 260.</para>\n /// <para>Additional Effect: Grants Umbral Ice III and removes Astral Fire</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction BlizzardIii_PvE => _BlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulation_PvECreator = new(ActionFactory.Create155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/155\"><strong>Aetherial Manipulation</strong></see> <i>PvE</i> (THM BLM) [155] [Ability]\r\n /// <para>Rush to a target party member's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulation_PvE => _AetherialManipulation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scathe_PvECreator = new(ActionFactory.Create156);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/156\"><strong>Scathe</strong></see> <i>PvE</i> (THM BLM) [156] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100.</para>\n /// <para>Additional Effect: 20% chance potency will double</para>\r\n /// </summary>\r\n public IBaseAction Scathe_PvE => _Scathe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Manaward_PvECreator = new(ActionFactory.Create157);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/157\"><strong>Manaward</strong></see> <i>PvE</i> (THM BLM) [157] [Ability]\r\n /// <para>Creates a barrier that nullifies damage totaling up to 30% of maximum HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Manaward_PvE => _Manaward_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Manafont_PvECreator = new(ActionFactory.Create158);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/158\"><strong>Manafont</strong></see> <i>PvE</i> (BLM) [158] [Ability]\r\n /// <para>Restores 30% of maximum MP.</para>\r\n /// </summary>\r\n public IBaseAction Manafont_PvE => _Manafont_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Freeze_PvECreator = new(ActionFactory.Create159);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/159\"><strong>Freeze</strong></see> <i>PvE</i> (BLM) [159] [Spell]\r\n /// <para>Deals ice damage with a potency of 120 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants 3 Umbral Hearts</para>\n /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para>\n /// <para>Can only be executed while under the effect of Umbral Ice.</para>\r\n /// </summary>\r\n public IBaseAction Freeze_PvE => _Freeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Flare_PvECreator = new(ActionFactory.Create162);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/162\"><strong>Flare</strong></see> <i>PvE</i> (BLM) [162] [Spell]\r\n /// <para>Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 40% less for all remaining enemies.</para>\n /// <para>Enhanced Flare Potency: 280</para>\n /// <para>Additional Effect: Grants Astral Fire III</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Astral Fire.</para>\r\n /// </summary>\r\n public IBaseAction Flare_PvE => _Flare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeyLines_PvECreator = new(ActionFactory.Create3573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3573\"><strong>Ley Lines</strong></see> <i>PvE</i> (BLM) [3573] [Ability]\r\n /// <para>Connects naturally occurring ley lines to create a circle of power which, while standing within it, reduces spell cast time and recast time, and auto-attack delay by 15%.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeyLines_PvE => _LeyLines_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sharpcast_PvECreator = new(ActionFactory.Create3574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3574\"><strong>Sharpcast</strong></see> <i>PvE</i> (BLM) [3574] [Ability]\r\n /// <para>Ensures the next Scathe, Fire, Paradox, or Thunder spell cast will, for the first hit, trigger Scathe's additional effect, Firestarter, or Thundercloud.</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Sharpcast_PvE => _Sharpcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlizzardIv_PvECreator = new(ActionFactory.Create3576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3576\"><strong>Blizzard IV</strong></see> <i>PvE</i> (BLM) [3576] [Spell]\r\n /// <para>Deals ice damage with a potency of 310.</para>\n /// <para>Additional Effect: Grants 3 Umbral Hearts</para>\n /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para>\n /// <para>Can only be executed while under the effect of Umbral Ice.</para>\r\n /// </summary>\r\n public IBaseAction BlizzardIv_PvE => _BlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create3577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3577\"><strong>Fire IV</strong></see> <i>PvE</i> (BLM) [3577] [Spell]\r\n /// <para>Deals fire damage with a potency of 310.</para>\n /// <para>Can only be executed while under the effect of Astral Fire.</para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BetweenTheLines_PvECreator = new(ActionFactory.Create7419);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7419\"><strong>Between the Lines</strong></see> <i>PvE</i> (BLM) [7419] [Ability]\r\n /// <para>Move instantly to Ley Lines drawn by you.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BetweenTheLines_PvE => _BetweenTheLines_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create7420);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7420\"><strong>Thunder IV</strong></see> <i>PvE</i> (BLM) [7420] [Spell]\r\n /// <para>Deals lightning damage with a potency of 50 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 20</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Triplecast_PvECreator = new(ActionFactory.Create7421);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7421\"><strong>Triplecast</strong></see> <i>PvE</i> (BLM) [7421] [Ability]\r\n /// <para>The next three spells will require no cast time.</para>\n /// <para>Duration: 15s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Triplecast_PvE => _Triplecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create7422);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7422\"><strong>Foul</strong></see> <i>PvE</i> (BLM) [7422] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Polyglot Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIi_PvECreator = new(ActionFactory.Create7447);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7447\"><strong>Thunder II</strong></see> <i>PvE</i> (THM BLM) [7447] [Spell]\r\n /// <para>Deals lightning damage with a potency of 50 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 15</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para>Additional Effect: 3% chance after each tick that the next Thunder spell of any grade will add its full damage over time amount to its initial damage, have no cast time, and cost no MP</para>\n /// <para>Duration: 40s</para>\n /// <para></para>\n /// <para></para>\n /// <para>Only one Thunder spell-induced damage over time effect per caster can be inflicted upon a single target.</para>\r\n /// </summary>\r\n public IBaseAction ThunderIi_PvE => _ThunderIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Addle_PvECreator = new(ActionFactory.Create7560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7560\"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 5% and magic damage dealt by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Addle_PvE => _Addle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheElder_PvECreator = new(ActionFactory.Create14477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14477\"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [14477] [Spell]\r\n /// <para>Increases magic damage dealt by 35% while reducing magic damage taken by 22% and decreasing spell MP cost.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheElder_PvE => _WisdomOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Despair_PvECreator = new(ActionFactory.Create16505);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16505\"><strong>Despair</strong></see> <i>PvE</i> (BLM) [16505] [Spell]\r\n /// <para>Deals fire damage with a potency of 340.</para>\n /// <para>Additional Effect: Grants Astral Fire III</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Astral Fire.</para>\r\n /// </summary>\r\n public IBaseAction Despair_PvE => _Despair_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UmbralSoul_PvECreator = new(ActionFactory.Create16506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16506\"><strong>Umbral Soul</strong></see> <i>PvE</i> (BLM) [16506] [Spell]\r\n /// <para>Grants Umbral Ice and 1 Umbral Heart.</para>\n /// <para>Umbral Heart Bonus: Nullifies Astral Fire's MP cost increase for Fire spells and reduces MP cost for Flare by one-third</para>\n /// <para>Can only be executed while under the effect of Umbral Ice.</para>\r\n /// </summary>\r\n public IBaseAction UmbralSoul_PvE => _UmbralSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Xenoglossy_PvECreator = new(ActionFactory.Create16507);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16507\"><strong>Xenoglossy</strong></see> <i>PvE</i> (BLM) [16507] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 880.</para>\n /// <para>Polyglot Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Xenoglossy_PvE => _Xenoglossy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_21612Creator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_21612 => _FireIv_PvE_21612Creator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvE_21613Creator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE_21613 => _Foul_PvE_21613Creator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvE_21884Creator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE_21884 => _ThunderIv_PvE_21884Creator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheElder_PvECreator = new(ActionFactory.Create22347);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22347\"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [22347] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 50%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheElder_PvE => _PureEssenceOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFlareStar_PvECreator = new(ActionFactory.Create22352);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22352\"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) [22352] [Spell]\r\n /// <para>Consumes MP to deal unaspected damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 350</para>\n /// <para>Duration: 60s</para>\n /// <para>The damage over time effect of Lost Flare Star can only be applied once per target at any given time. This effect cannot be stacked by multiple players.</para>\r\n /// </summary>\r\n public IBaseAction LostFlareStar_PvE => _LostFlareStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlizzardIi_PvECreator = new(ActionFactory.Create25793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25793\"><strong>Blizzard II</strong></see> <i>PvE</i> (THM BLM) [25793] [Spell]\r\n /// <para>Deals ice damage with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants Umbral Ice III andGrants Umbral Ice III andGrants Umbral Ice orGrants Umbral Ice or removes Astral Fire</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction BlizzardIi_PvE => _BlizzardIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighFireIi_PvECreator = new(ActionFactory.Create25794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25794\"><strong>High Fire II</strong></see> <i>PvE</i> (BLM) [25794] [Spell]\r\n /// <para>Deals fire damage with a potency of 140 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants Astral Fire III and removes Umbral Ice</para>\n /// <para>Duration: 15s</para>\n /// <para>Astral Fire Bonus: Grants Enhanced Flare</para>\n /// <para>Effect is canceled if Astral Fire ends.</para>\r\n /// </summary>\r\n public IBaseAction HighFireIi_PvE => _HighFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighBlizzardIi_PvECreator = new(ActionFactory.Create25795);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25795\"><strong>High Blizzard II</strong></see> <i>PvE</i> (BLM) [25795] [Spell]\r\n /// <para>Deals ice damage with a potency of 140 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants Umbral Ice III and removes Astral Fire</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction HighBlizzardIi_PvE => _HighBlizzardIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Amplifier_PvECreator = new(ActionFactory.Create25796);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25796\"><strong>Amplifier</strong></see> <i>PvE</i> (BLM) [25796] [Ability]\r\n /// <para>Grants Polyglot.</para>\n /// <para>Can only be executed while under the effect of Astral Fire or Umbral Ice.</para>\r\n /// </summary>\r\n public IBaseAction Amplifier_PvE => _Amplifier_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Paradox_PvECreator = new(ActionFactory.Create25797);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25797\"><strong>Paradox</strong></see> <i>PvE</i> (BLM) [25797] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 500.</para>\n /// <para>Astral Fire Bonus: Refreshes the duration of Astral Fire and 40% chance to grant Firestarter</para>\n /// <para>Duration: 15s</para>\n /// <para>Firestarter Effect: Next Fire III will require no time to cast and cost no MP</para>\n /// <para>Duration: 30s</para>\n /// <para>Umbral Ice Bonus: Spell is cast immediately, requires no MP to cast, and refreshes the duration of Umbral Ice</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Paradox.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Paradox_PvE => _Paradox_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sleep_PvECreator = new(ActionFactory.Create25880);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25880\"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell]\r\n /// <para>Puts target and all nearby enemies to sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Sleep_PvE => _Sleep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvPCreator = new(ActionFactory.Create29371);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29371\"><strong>Foul</strong></see> <i>PvP</i> (BLM) [29371] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 16,000 to target and all enemies nearby it.</para>\n /// <para>Can only be executed while under the effect of Polyglot.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Foul_PvP => _Foul_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fire_PvPCreator = new(ActionFactory.Create29649);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29649\"><strong>Fire</strong></see> <i>PvP</i> (BLM) [29649] [Spell]\r\n /// <para>Deals fire damage with a potency of 4,000.</para>\n /// <para>Requires no cast time when cast under the effect of Umbral Ice.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Umbral Freeze.</para>\n /// <para>Additional Effect: Grants Astral Fire II</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Umbral Ice.</para>\n /// <para></para>\n /// <para>※Action changes to Fire IV while under the effect of Astral Fire II.</para>\r\n /// </summary>\r\n public IBaseAction Fire_PvP => _Fire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvPCreator = new(ActionFactory.Create29650);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29650\"><strong>Fire IV</strong></see> <i>PvP</i> (BLM) [29650] [Spell]\r\n /// <para>Deals fire damage with a potency of 6,000.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Umbral Freeze.</para>\n /// <para>Additional Effect: Grants Astral Fire III</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Umbral Ice.</para>\n /// <para>Can only be executed while under the effect of Astral Fire II.</para>\n /// <para></para>\n /// <para>※Action changes to Flare while under the effect of Astral Fire III.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvP => _FireIv_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flare_PvPCreator = new(ActionFactory.Create29651);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29651\"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29651] [Spell]\r\n /// <para>Deals fire damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Umbral Freeze.</para>\n /// <para>Can only be executed while under the effect of Astral Fire III.</para>\n /// <para>Astral Fire III effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Flare_PvP => _Flare_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flare_PvP_29652Creator = new(ActionFactory.Create29652);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29652\"><strong>Flare</strong></see> <i>PvP</i> (BLM) [29652] [Spell]\r\n /// <para>Deals fire damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Astral Warmth, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Umbral Freeze.</para>\n /// <para>Can only be executed while under the effect of Soul Resonance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Flare_PvP_29652 => _Flare_PvP_29652Creator.Value;\n private readonly Lazy<IBaseAction> _Blizzard_PvPCreator = new(ActionFactory.Create29653);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29653\"><strong>Blizzard</strong></see> <i>PvP</i> (BLM) [29653] [Spell]\r\n /// <para>Deals ice damage with a potency of 4,000.</para>\n /// <para>Requires no cast time when cast under the effect of Astral Fire.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Astral Warmth.</para>\n /// <para>Additional Effect: Grants Umbral Ice II</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Astral Fire.</para>\n /// <para></para>\n /// <para>※Action changes to Blizzard IV while under the effect of Umbral Ice II.</para>\r\n /// </summary>\r\n public IBaseAction Blizzard_PvP => _Blizzard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BlizzardIv_PvPCreator = new(ActionFactory.Create29654);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29654\"><strong>Blizzard IV</strong></see> <i>PvP</i> (BLM) [29654] [Spell]\r\n /// <para>Deals ice damage with a potency of 6,000.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Astral Warmth.</para>\n /// <para>Additional Effect: Grants Umbral Ice III</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Astral Fire.</para>\n /// <para>Can only be executed while under the effect of Umbral Ice II.</para>\n /// <para></para>\n /// <para>※Action changes to Freeze while under the effect of Umbral Ice III.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BlizzardIv_PvP => _BlizzardIv_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Freeze_PvPCreator = new(ActionFactory.Create29655);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29655\"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29655] [Spell]\r\n /// <para>Deals ice damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Astral Warmth.</para>\n /// <para>Can only be executed while under the effect of Umbral Ice III.</para>\n /// <para>Umbral Ice III effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Freeze_PvP => _Freeze_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Freeze_PvP_29656Creator = new(ActionFactory.Create29656);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29656\"><strong>Freeze</strong></see> <i>PvP</i> (BLM) [29656] [Spell]\r\n /// <para>Deals ice damage with a potency of 12,000 to target and 8,000 to all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts target with a stack of Umbral Freeze, up to a maximum of 3</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Astral Warmth.</para>\n /// <para>Can only be executed while under the effect of Soul Resonance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Freeze_PvP_29656 => _Freeze_PvP_29656Creator.Value;\n private readonly Lazy<IBaseAction> _Burst_PvPCreator = new(ActionFactory.Create29657);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29657\"><strong>Burst</strong></see> <i>PvP</i> (BLM) [29657] [Spell]\r\n /// <para>Deals lightning damage to all nearby enemies with a potency of 16,000.</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 16,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Burst_PvP => _Burst_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _NightWing_PvPCreator = new(ActionFactory.Create29659);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29659\"><strong>Night Wing</strong></see> <i>PvP</i> (BLM) [29659] [Ability]\r\n /// <para>Afflicts target and all enemies nearby it with Half-asleep.</para>\n /// <para>Duration: 3s</para>\n /// <para>Half-asleep Effect: Targets succumb to Sleep when effect expires</para>\n /// <para>Duration: 3s</para>\n /// <para>Targets struck while under the effect of Sleep will take additional damage with a potency of 8,000, and effect will dissipate.</para>\r\n /// </summary>\r\n public IBaseAction NightWing_PvP => _NightWing_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulation_PvPCreator = new(ActionFactory.Create29660);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29660\"><strong>Aetherial Manipulation</strong></see> <i>PvP</i> (BLM) [29660] [Ability]\r\n /// <para>Rush to a targeted enemy's or party member's location.</para>\n /// <para>Additional Effect: Grants Swiftcast</para>\n /// <para>Swiftcast Effect: Next spell can be cast immediately</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulation_PvP => _AetherialManipulation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Superflare_PvPCreator = new(ActionFactory.Create29661);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29661\"><strong>Superflare</strong></see> <i>PvP</i> (BLM) [29661] [Ability]\r\n /// <para>Deals damage to nearby enemies with a potency of 3,000 up to a maximum of 9,000 for every stack of Astral Warmth or Umbral Freeze they have accumulated.</para>\n /// <para>Additional Effect: Enemies under the effect of Astral Warmth are afflicted with Burns, dealing fire damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para>Duration increases by 3s for each additional stack of Astral Warmth, up to a maximum of 12s.</para>\n /// <para>Additional Effect: Enemies under the effect of Umbral Freeze are afflicted with a status ailment commensurate with the number of stacks accumulated</para>\n /// <para>1 Stack: Heavy</para>\n /// <para>2 Stacks: Bind</para>\n /// <para>3 Stacks: Deep Freeze</para>\n /// <para>Duration: 2s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Superflare_PvP => _Superflare_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SoulResonance_PvPCreator = new(ActionFactory.Create29662);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29662\"><strong>Soul Resonance</strong></see> <i>PvP</i> (BLM) [29662] [Limit Break]\r\n /// <para>Grants 6 stacks of Soul Resonance, upgrading Fire to Flare and Blizzard to Freeze.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Polyglot and Apocatastasis</para>\n /// <para>Polyglot Effect: Action changes to Foul</para>\n /// <para>Duration: 60s</para>\n /// <para>Apocatastasis Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Reduces the recast time of Superflare by 15 seconds</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 60s</para>\r\n /// </summary>\r\n public IBaseAction SoulResonance_PvP => _SoulResonance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Paradox_PvPCreator = new(ActionFactory.Create29663);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29663\"><strong>Paradox</strong></see> <i>PvP</i> (BLM) [29663] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 8,000.</para>\n /// <para>Additional Effect: Increases target's stacks of Astral Warmth or Umbral Freeze to maximum</para>\n /// <para>Duration: 15s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Paradox_PvP => _Paradox_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(29));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50029\"><strong>Maim and Mend</strong></see> (THM BLM) [29]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(31));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50031\"><strong>Maim and Mend II</strong></see> (THM BLM) [31]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FirestarterTraitCreator = new(() => new BaseTrait(32));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50032\"><strong>Firestarter</strong></see> (THM BLM) [32]\r\n /// <para>Grants a 40% chance that after casting Fire, your next Fire III will require no MP and have no cast time.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait FirestarterTrait => _FirestarterTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ThundercloudTraitCreator = new(() => new BaseTrait(33));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50033\"><strong>Thundercloud</strong></see> (THM BLM) [33]\r\n /// <para>Grants a 10% chance that after each damage over time tick inflicted by Thunder or Thunder III (3% for Thunder II or Thunder IV), the next Thunder, Thunder II, Thunder III, or Thunder IV will add its full damage over time amount to its initial damage, have no cast time, and cost no MP.</para>\n /// <para>Duration: 40s</para>\r\n /// </summary>\r\n public IBaseTrait ThundercloudTrait => _ThundercloudTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ThunderMasteryTraitCreator = new(() => new BaseTrait(171));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50171\"><strong>Thunder Mastery</strong></see> (BLM) [171]\r\n /// <para>Upgrades Thunder to Thunder III.</para>\r\n /// </summary>\r\n public IBaseTrait ThunderMasteryTrait => _ThunderMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ThunderMasteryIiTraitCreator = new(() => new BaseTrait(172));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50172\"><strong>Thunder Mastery II</strong></see> (BLM) [172]\r\n /// <para>Upgrades Thunder II to Thunder IV.</para>\r\n /// </summary>\r\n public IBaseTrait ThunderMasteryIiTrait => _ThunderMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnochianTraitCreator = new(() => new BaseTrait(174));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50174\"><strong>Enhanced Enochian</strong></see> (BLM) [174]\r\n /// <para>Grants the effect of Polyglot upon maintaining Enochian for 30 seconds. Also improves Enochian's magic damage increase to 10%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnochianTrait => _EnhancedEnochianTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedFreezeTraitCreator = new(() => new BaseTrait(295));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50295\"><strong>Enhanced Freeze</strong></see> (BLM) [295]\r\n /// <para>Grants 3 Umbral Hearts upon casting Freeze.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedFreezeTrait => _EnhancedFreezeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AspectMasteryTraitCreator = new(() => new BaseTrait(296));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50296\"><strong>Aspect Mastery</strong></see> (THM BLM) [296]\r\n /// <para>Casting of certain fire and ice spells will grant a stack of Astral Fire and Umbral Ice respectively.</para>\n /// <para>Maximum Stacks: 1</para>\n /// <para>Duration: 15s</para>\n /// <para>While under the effect of either Astral Fire or Umbral Ice, casting a spell of the opposite element will consume no MP.</para>\n /// <para>Effect does not apply to Flare.</para>\r\n /// </summary>\r\n public IBaseTrait AspectMasteryTrait => _AspectMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedPolyglotTraitCreator = new(() => new BaseTrait(297));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50297\"><strong>Enhanced Polyglot</strong></see> (BLM) [297]\r\n /// <para>Allows the stacking of a second Polyglot.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedPolyglotTrait => _EnhancedPolyglotTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSharpcastTraitCreator = new(() => new BaseTrait(321));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50321\"><strong>Enhanced Sharpcast</strong></see> (BLM) [321]\r\n /// <para>Reduces Sharpcast recast timer to 30 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSharpcastTrait => _EnhancedSharpcastTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnochianIiTraitCreator = new(() => new BaseTrait(322));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50322\"><strong>Enhanced Enochian II</strong></see> (BLM) [322]\r\n /// <para>Improves Enochian's magic damage increase to 15%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnochianIiTrait => _EnhancedEnochianIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AspectMasteryIiTraitCreator = new(() => new BaseTrait(458));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50458\"><strong>Aspect Mastery II</strong></see> (THM BLM) [458]\r\n /// <para>Allows the stacking of a second Astral Fire and Umbral Ice.</para>\r\n /// </summary>\r\n public IBaseTrait AspectMasteryIiTrait => _AspectMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AspectMasteryIiiTraitCreator = new(() => new BaseTrait(459));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50459\"><strong>Aspect Mastery III</strong></see> (THM BLM) [459]\r\n /// <para>Allows the stacking of a third Astral Fire and Umbral Ice.</para>\n /// <para>Casting Fire II or Blizzard II grants maximum stacks of Astral Fire or Umbral Ice respectively.</para>\n /// <para>When maintaining three stacks of Astral Fire or Umbral Ice, the cast time of spells of the opposite element is halved.</para>\r\n /// </summary>\r\n public IBaseTrait AspectMasteryIiiTrait => _AspectMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnochianTraitCreator = new(() => new BaseTrait(460));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50460\"><strong>Enochian</strong></see> (BLM) [460]\r\n /// <para>Increases damage dealt by 5% while under the effect of Astral Fire or Umbral Ice.</para>\n /// <para>Upon successfully landing Fire II while under the effect of Astral Fire, grants Enhanced Flare.</para>\n /// <para>Enhanced Flare effect ends if Astral Fire is lost.</para>\r\n /// </summary>\r\n public IBaseTrait EnochianTrait => _EnochianTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedFoulTraitCreator = new(() => new BaseTrait(461));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50461\"><strong>Enhanced Foul</strong></see> (BLM) [461]\r\n /// <para>Allows for the immediate casting of Foul.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedFoulTrait => _EnhancedFoulTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AspectMasteryIvTraitCreator = new(() => new BaseTrait(462));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50462\"><strong>Aspect Mastery IV</strong></see> (BLM) [462]\r\n /// <para>Upgrades Fire II and Blizzard II to High Fire II and High Blizzard II.</para>\r\n /// </summary>\r\n public IBaseTrait AspectMasteryIvTrait => _AspectMasteryIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedManafontTraitCreator = new(() => new BaseTrait(463));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50463\"><strong>Enhanced Manafont</strong></see> (BLM) [463]\r\n /// <para>Reduces Manafont recast time to 120 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedManafontTrait => _EnhancedManafontTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSharpcastIiTraitCreator = new(() => new BaseTrait(464));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50464\"><strong>Enhanced Sharpcast II</strong></see> (BLM) [464]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Sharpcast.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSharpcastIiTrait => _EnhancedSharpcastIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AspectMasteryVTraitCreator = new(() => new BaseTrait(465));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50465\"><strong>Aspect Mastery V</strong></see> (BLM) [465]\r\n /// <para>Adds a Paradox marker to your Elemental Gauge.</para>\n /// <para>The marker is made active after reaching Astral Fire III then swapping to the opposite element. Conversely, the marker can also be made active after reaching Umbral Ice III and gaining 3 Umbral Hearts then swapping to the opposite element.</para>\n /// <para>Blizzard and Fire become Paradox when the Paradox marker is made active.</para>\r\n /// </summary>\r\n public IBaseTrait AspectMasteryVTrait => _AspectMasteryVTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnochianIiiTraitCreator = new(() => new BaseTrait(509));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50509\"><strong>Enhanced Enochian III</strong></see> (BLM) [509]\r\n /// <para>Improves Enochian's magic damage increase to 23%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnochianIiiTrait => _EnhancedEnochianIiiTraitCreator.Value;\r\n#endregion\r\n}", + "SummonerRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/summoner\"><strong>Summoner</strong></see>\r\n/// </summary>\r\npublic abstract partial class SummonerRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.SMN, Job.ACN };\r\n static SMNGauge JobGauge => Svc.Gauges.Get<SMNGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ruin_PvECreator = new(ActionFactory.Create163);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/163\"><strong>Ruin</strong></see> <i>PvE</i> (ACN SMN) [163] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 240.</para>\r\n /// </summary>\r\n public IBaseAction Ruin_PvE => _Ruin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIi_PvECreator = new(ActionFactory.Create172);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/172\"><strong>Ruin II</strong></see> <i>PvE</i> (ACN SMN) [172] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 270.</para>\r\n /// </summary>\r\n public IBaseAction RuinIi_PvE => _RuinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Resurrection_PvECreator = new(ActionFactory.Create173);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/173\"><strong>Resurrection</strong></see> <i>PvE</i> (ACN SMN SCH) [173] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Resurrection_PvE => _Resurrection_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fester_PvECreator = new(ActionFactory.Create181);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/181\"><strong>Fester</strong></see> <i>PvE</i> (ACN SMN) [181] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 340.</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Fester_PvE => _Fester_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Painflare_PvECreator = new(ActionFactory.Create3578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3578\"><strong>Painflare</strong></see> <i>PvE</i> (SMN) [3578] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Painflare_PvE => _Painflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create3579);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3579\"><strong>Ruin III</strong></see> <i>PvE</i> (SMN) [3579] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DreadwyrmTrance_PvECreator = new(ActionFactory.Create3581);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3581\"><strong>Dreadwyrm Trance</strong></see> <i>PvE</i> (SMN) [3581] [Spell]\r\n /// <para>Enters Dreadwyrm Trance.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Changes Ruin III to Astral Impulse and Outburst to Astral Flare</para>\n /// <para>Additional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum</para>\n /// <para>Can only be executed in combat and while Carbuncle is summoned.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction DreadwyrmTrance_PvE => _DreadwyrmTrance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deathflare_PvECreator = new(ActionFactory.Create3582);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3582\"><strong>Deathflare</strong></see> <i>PvE</i> (SMN) [3582] [Ability]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 500 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Can only be executed while in Dreadwyrm Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Deathflare_PvE => _Deathflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIv_PvECreator = new(ActionFactory.Create7426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7426\"><strong>Ruin IV</strong></see> <i>PvE</i> (SMN) [7426] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Further Ruin.</para>\r\n /// </summary>\r\n public IBaseAction RuinIv_PvE => _RuinIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonBahamut_PvECreator = new(ActionFactory.Create7427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7427\"><strong>Summon Bahamut</strong></see> <i>PvE</i> (SMN) [7427] [Spell]\r\n /// <para>Enters Dreadwyrm Trance and summons Demi-Bahamut to fight your target.</para>\n /// <para>Demi-Bahamut will execute Wyrmwave automatically on the targets attacked by you after summoning.</para>\n /// <para>Increases enmity in target when Demi-Bahamut is summoned.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Changes Ruin III to Astral Impulse and Tri-disasterOutburstOutburst to Astral Flare</para>\n /// <para>Additional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum</para>\n /// <para>Can only be executed while Carbuncle is summoned.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction SummonBahamut_PvE => _SummonBahamut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wyrmwave_PvECreator = new(ActionFactory.Create7428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7428\"><strong>Wyrmwave</strong></see> <i>PvE</i> (SMN) [7428] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150.</para>\n /// <para>Will only execute while Demi-Bahamut is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Wyrmwave_PvE => _Wyrmwave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindleBahamut_PvECreator = new(ActionFactory.Create7429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7429\"><strong>Enkindle Bahamut</strong></see> <i>PvE</i> (SMN) [7429] [Ability]\r\n /// <para>Orders Demi-Bahamut to execute Akh Morn.</para>\n /// <para>Akh Morn Effect: Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies</para>\r\n /// </summary>\r\n public IBaseAction EnkindleBahamut_PvE => _EnkindleBahamut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AkhMorn_PvECreator = new(ActionFactory.Create7449);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7449\"><strong>Akh Morn</strong></see> <i>PvE</i> (SMN) [7449] [Ability]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Can only be executed while Demi-Bahamut is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AkhMorn_PvE => _AkhMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Addle_PvECreator = new(ActionFactory.Create7560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7560\"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 5% and magic damage dealt by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Addle_PvE => _Addle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvE_11191Creator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE_11191 => _RuinIii_PvE_11191Creator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheElder_PvECreator = new(ActionFactory.Create14477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14477\"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [14477] [Spell]\r\n /// <para>Increases magic damage dealt by 35% while reducing magic damage taken by 22% and decreasing spell MP cost.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheElder_PvE => _WisdomOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvE_16230Creator = new(ActionFactory.Create16230);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16230\"><strong>Physick</strong></see> <i>PvE</i> (ACN SMN) [16230] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE_16230 => _Physick_PvE_16230Creator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnergyDrain_PvECreator = new(ActionFactory.Create16508);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16508\"><strong>Energy Drain</strong></see> <i>PvE</i> (ACN SMN) [16508] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\n /// <para>Additional Effect: Aetherflow II</para>\n /// <para>Additional Effect: Grants Further Ruin</para>\n /// <para>Duration: 60s</para>\n /// <para>Shares a recast timer with Energy Siphon.</para>\r\n /// </summary>\r\n public IBaseAction EnergyDrain_PvE => _EnergyDrain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnergySiphon_PvECreator = new(ActionFactory.Create16510);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16510\"><strong>Energy Siphon</strong></see> <i>PvE</i> (SMN) [16510] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Aetherflow II</para>\n /// <para>Additional Effect: Grants Further Ruin</para>\n /// <para>Duration: 60s</para>\n /// <para>Shares a recast timer with Energy Drain.</para>\r\n /// </summary>\r\n public IBaseAction EnergySiphon_PvE => _EnergySiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Outburst_PvECreator = new(ActionFactory.Create16511);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16511\"><strong>Outburst</strong></see> <i>PvE</i> (ACN SMN) [16511] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction Outburst_PvE => _Outburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FountainOfFire_PvECreator = new(ActionFactory.Create16514);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16514\"><strong>Fountain of Fire</strong></see> <i>PvE</i> (SMN) [16514] [Spell]\r\n /// <para>Deals fire damage with a potency of 540.</para>\n /// <para>Can only be executed while under the effect of Firebird Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FountainOfFire_PvE => _FountainOfFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrandOfPurgatory_PvECreator = new(ActionFactory.Create16515);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16515\"><strong>Brand of Purgatory</strong></see> <i>PvE</i> (SMN) [16515] [Spell]\r\n /// <para>Deals fire damage with a potency of 240 to target and all enemies nearby it.</para>\n /// <para>Can only be executed while under the effect of Firebird Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BrandOfPurgatory_PvE => _BrandOfPurgatory_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlePhoenix_PvECreator = new(ActionFactory.Create16516);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16516\"><strong>Enkindle Phoenix</strong></see> <i>PvE</i> (SMN) [16516] [Ability]\r\n /// <para>Orders Demi-Phoenix to execute Revelation.</para>\n /// <para>Revelation Effect: Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies</para>\n /// <para>Action replaces Enkindle Bahamut while Demi-Phoenix is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlePhoenix_PvE => _EnkindlePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EverlastingFlight_PvECreator = new(ActionFactory.Create16517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16517\"><strong>Everlasting Flight</strong></see> <i>PvE</i> (SMN) [16517] [Ability]\r\n /// <para>Gradually restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 21s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EverlastingFlight_PvE => _EverlastingFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Revelation_PvECreator = new(ActionFactory.Create16518);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16518\"><strong>Revelation</strong></see> <i>PvE</i> (SMN) [16518] [Ability]\r\n /// <para>Deals fire damage to target and all enemies nearby it with a potency of 1,300 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Can only be executed while Demi-Phoenix is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Revelation_PvE => _Revelation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ScarletFlame_PvECreator = new(ActionFactory.Create16519);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16519\"><strong>Scarlet Flame</strong></see> <i>PvE</i> (SMN) [16519] [Spell]\r\n /// <para>Deals fire damage with a potency of 150.</para>\n /// <para>Will only execute while Demi-Phoenix is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ScarletFlame_PvE => _ScarletFlame_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheElder_PvECreator = new(ActionFactory.Create22347);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22347\"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [22347] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 50%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheElder_PvE => _PureEssenceOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFlareStar_PvECreator = new(ActionFactory.Create22352);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22352\"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) [22352] [Spell]\r\n /// <para>Consumes MP to deal unaspected damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 350</para>\n /// <para>Duration: 60s</para>\n /// <para>The damage over time effect of Lost Flare Star can only be applied once per target at any given time. This effect cannot be stacked by multiple players.</para>\r\n /// </summary>\r\n public IBaseAction LostFlareStar_PvE => _LostFlareStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonCarbuncle_PvECreator = new(ActionFactory.Create25798);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25798\"><strong>Summon Carbuncle</strong></see> <i>PvE</i> (ACN SMN) [25798] [Spell]\r\n /// <para>Summons Carbuncle to your side.</para>\r\n /// </summary>\r\n public IBaseAction SummonCarbuncle_PvE => _SummonCarbuncle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantAegis_PvECreator = new(ActionFactory.Create25799);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25799\"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25799] [Ability]\r\n /// <para>Orders Carbuncle to execute Radiant Aegis.</para>\n /// <para>Radiant Aegis Effect: Creates a barrier around self that absorbs damage totaling 20% of your maximum HP</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while Carbuncle is summoned.</para>\r\n /// </summary>\r\n public IBaseAction RadiantAegis_PvE => _RadiantAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercharge_PvECreator = new(ActionFactory.Create25800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25800\"><strong>Aethercharge</strong></see> <i>PvE</i> (ACN SMN) [25800] [Spell]\r\n /// <para>Grants Aethercharge, increasing the potency of Ruin, Ruin II, and Ruin III by 50, and Outburst by 20.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald ArcanumRuby Arcanum, Topaz Arcanum, and Emerald ArcanumRuby Arcanum and Topaz ArcanumRuby Arcanum and Topaz ArcanumRuby ArcanumRuby ArcanumRuby Arcanum and Topaz ArcanumRuby Arcanum and Topaz ArcanumRuby ArcanumRuby Arcanum</para>\n /// <para>Can only be executed in combat and while Carbuncle is summoned.</para>\r\n /// </summary>\r\n public IBaseAction Aethercharge_PvE => _Aethercharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SearingLight_PvECreator = new(ActionFactory.Create25801);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25801\"><strong>Searing Light</strong></see> <i>PvE</i> (SMN) [25801] [Ability]\r\n /// <para>Increases damage dealt by self and nearby party members by 3%.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction SearingLight_PvE => _SearingLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonRuby_PvECreator = new(ActionFactory.Create25802);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25802\"><strong>Summon Ruby</strong></see> <i>PvE</i> (ACN SMN) [25802] [Spell]\r\n /// <para>Summons Ruby Carbuncle, and orders it to execute Glittering Ruby.</para>\n /// <para>Glittering Ruby Effect: Rushes target and deals fire damage with a potency of 400</para>\n /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para>\n /// <para>Fire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Ruby Carbuncle is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonRuby_PvE => _SummonRuby_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonTopaz_PvECreator = new(ActionFactory.Create25803);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25803\"><strong>Summon Topaz</strong></see> <i>PvE</i> (ACN SMN) [25803] [Spell]\r\n /// <para>Summons Topaz Carbuncle, and orders it to execute Glittering Topaz.</para>\n /// <para>Glittering Topaz Effect: Rushes target and deals earth damage with a potency of 400</para>\n /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para>\n /// <para>Earth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Topaz Carbuncle is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonTopaz_PvE => _SummonTopaz_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonEmerald_PvECreator = new(ActionFactory.Create25804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25804\"><strong>Summon Emerald</strong></see> <i>PvE</i> (ACN SMN) [25804] [Spell]\r\n /// <para>Summons Emerald Carbuncle, and orders it to execute Glittering Emerald.</para>\n /// <para>Glittering Emerald Effect: Deals wind damage with a potency of 400</para>\n /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para>\n /// <para>Wind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Emerald Carbuncle is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonEmerald_PvE => _SummonEmerald_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonIfrit_PvECreator = new(ActionFactory.Create25805);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25805\"><strong>Summon Ifrit</strong></see> <i>PvE</i> (SMN) [25805] [Spell]\r\n /// <para>Summons Ifrit-Egi and orders it to execute InfernoBurning StrikeBurning Strike.</para>\n /// <para>Inferno Effect: Rushes forward and deals fire damage to all enemies in a 5-yalm cone before it with a potency of 600 for the first enemy, and 60% less for all remaining enemiesBurning Strike Effect: Rushes forward and deals fire damage with a potency of 500Burning Strike Effect: Rushes forward and deals fire damage with a potency of 500</para>\n /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para>\n /// <para>Fire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Ifrit's Favor</para>\n /// <para>Effect of Ifrit's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Ifrit-Egi is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonIfrit_PvE => _SummonIfrit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonTitan_PvECreator = new(ActionFactory.Create25806);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25806\"><strong>Summon Titan</strong></see> <i>PvE</i> (SMN) [25806] [Spell]\r\n /// <para>Summons Titan-Egi and orders it to execute Earthen FuryRock BusterRock Buster.</para>\n /// <para>Earthen Fury Effect: Rushes forward and deals earth damage to all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemiesRock Buster Effect: Rushes forward and deals earth damage with a potency of 500Rock Buster Effect: Rushes forward and deals earth damage with a potency of 500</para>\n /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para>\n /// <para>Earth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Titan-Egi is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonTitan_PvE => _SummonTitan_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonGaruda_PvECreator = new(ActionFactory.Create25807);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25807\"><strong>Summon Garuda</strong></see> <i>PvE</i> (SMN) [25807] [Spell]\r\n /// <para>Summons Garuda-Egi and orders it to execute Aerial BlastAerial SlashAerial Slash.</para>\n /// <para>Aerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 60% less for all remaining enemiesAerial Slash Effect: Deals wind damage with a potency of 100 to target and all enemies nearby itAerial Slash Effect: Deals wind damage with a potency of 100 to target and all enemies nearby it</para>\n /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para>\n /// <para>Wind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Garuda's Favor</para>\n /// <para>Effect of Garuda's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Garuda-Egi is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonGaruda_PvE => _SummonGaruda_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyRuin_PvECreator = new(ActionFactory.Create25808);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25808\"><strong>Ruby Ruin</strong></see> <i>PvE</i> (ACN SMN) [25808] [Spell]\r\n /// <para>Deals fire damage with a potency of 340.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyRuin_PvE => _RubyRuin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazRuin_PvECreator = new(ActionFactory.Create25809);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25809\"><strong>Topaz Ruin</strong></see> <i>PvE</i> (ACN SMN) [25809] [Spell]\r\n /// <para>Deals earth damage with a potency of 240.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazRuin_PvE => _TopazRuin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldRuin_PvECreator = new(ActionFactory.Create25810);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25810\"><strong>Emerald Ruin</strong></see> <i>PvE</i> (ACN SMN) [25810] [Spell]\r\n /// <para>Deals wind damage with a potency of 160.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldRuin_PvE => _EmeraldRuin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyRuinIi_PvECreator = new(ActionFactory.Create25811);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25811\"><strong>Ruby Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25811] [Spell]\r\n /// <para>Deals fire damage with a potency of 380.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyRuinIi_PvE => _RubyRuinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazRuinIi_PvECreator = new(ActionFactory.Create25812);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25812\"><strong>Topaz Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25812] [Spell]\r\n /// <para>Deals earth damage with a potency of 270.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazRuinIi_PvE => _TopazRuinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldRuinIi_PvECreator = new(ActionFactory.Create25813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25813\"><strong>Emerald Ruin II</strong></see> <i>PvE</i> (ACN SMN) [25813] [Spell]\r\n /// <para>Deals wind damage with a potency of 170.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldRuinIi_PvE => _EmeraldRuinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyOutburst_PvECreator = new(ActionFactory.Create25814);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25814\"><strong>Ruby Outburst</strong></see> <i>PvE</i> (ACN SMN) [25814] [Spell]\r\n /// <para>Deals fire damage with a potency of 160 to target and all enemies nearby it.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyOutburst_PvE => _RubyOutburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazOutburst_PvECreator = new(ActionFactory.Create25815);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25815\"><strong>Topaz Outburst</strong></see> <i>PvE</i> (ACN SMN) [25815] [Spell]\r\n /// <para>Deals earth damage with a potency of 110 to target and all enemies nearby it.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazOutburst_PvE => _TopazOutburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldOutburst_PvECreator = new(ActionFactory.Create25816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25816\"><strong>Emerald Outburst</strong></see> <i>PvE</i> (ACN SMN) [25816] [Spell]\r\n /// <para>Deals wind damage with a potency of 70 to target and all enemies nearby it.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldOutburst_PvE => _EmeraldOutburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyRuinIii_PvECreator = new(ActionFactory.Create25817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25817\"><strong>Ruby Ruin III</strong></see> <i>PvE</i> (SMN) [25817] [Spell]\r\n /// <para>Deals fire damage with a potency of 410.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyRuinIii_PvE => _RubyRuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazRuinIii_PvECreator = new(ActionFactory.Create25818);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25818\"><strong>Topaz Ruin III</strong></see> <i>PvE</i> (SMN) [25818] [Spell]\r\n /// <para>Deals earth damage with a potency of 300.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazRuinIii_PvE => _TopazRuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldRuinIii_PvECreator = new(ActionFactory.Create25819);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25819\"><strong>Emerald Ruin III</strong></see> <i>PvE</i> (SMN) [25819] [Spell]\r\n /// <para>Deals wind damage with a potency of 180.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldRuinIii_PvE => _EmeraldRuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralImpulse_PvECreator = new(ActionFactory.Create25820);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25820\"><strong>Astral Impulse</strong></see> <i>PvE</i> (SMN) [25820] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 440.</para>\n /// <para>Can only be executed while in Dreadwyrm Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AstralImpulse_PvE => _AstralImpulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralFlare_PvECreator = new(ActionFactory.Create25821);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25821\"><strong>Astral Flare</strong></see> <i>PvE</i> (SMN) [25821] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 180 to target and all enemies nearby it.</para>\n /// <para>Can only be executed while in Dreadwyrm Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AstralFlare_PvE => _AstralFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralFlow_PvECreator = new(ActionFactory.Create25822);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25822\"><strong>Astral Flow</strong></see> <i>PvE</i> (SMN) [25822] [Spell]\r\n /// <para>Channel the energies of your active trance or elemental favor to perform one of several actions.</para>\n /// <para>Dreadwyrm Trance Effect: Action changes to Deathflare</para>\n /// <para>Firebird Trance Effect: Action changes to Rekindle</para>\n /// <para>Ifrit's Favor Effect: Action changes to Crimson Cyclone</para>\n /// <para>Titan's Favor Effect: Action changes to Mountain Buster</para>\n /// <para>Garuda's Favor Effect: Action changes to Slipstream</para>\r\n /// </summary>\r\n public IBaseAction AstralFlow_PvE => _AstralFlow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyRite_PvECreator = new(ActionFactory.Create25823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25823\"><strong>Ruby Rite</strong></see> <i>PvE</i> (SMN) [25823] [Spell]\r\n /// <para>Deals fire damage with a potency of .</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyRite_PvE => _RubyRite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazRite_PvECreator = new(ActionFactory.Create25824);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25824\"><strong>Topaz Rite</strong></see> <i>PvE</i> (SMN) [25824] [Spell]\r\n /// <para>Deals earth damage with a potency of .</para>\n /// <para>Additional Effect: Grants Titan's Favor</para>\n /// <para>Effect of Titan's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazRite_PvE => _TopazRite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldRite_PvECreator = new(ActionFactory.Create25825);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25825\"><strong>Emerald Rite</strong></see> <i>PvE</i> (SMN) [25825] [Spell]\r\n /// <para>Deals wind damage with a potency of .</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldRite_PvE => _EmeraldRite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tridisaster_PvECreator = new(ActionFactory.Create25826);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25826\"><strong>Tri-disaster</strong></see> <i>PvE</i> (SMN) [25826] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction Tridisaster_PvE => _Tridisaster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyDisaster_PvECreator = new(ActionFactory.Create25827);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25827\"><strong>Ruby Disaster</strong></see> <i>PvE</i> (SMN) [25827] [Spell]\r\n /// <para>Deals fire damage with a potency of 190 to target and all enemies nearby it.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyDisaster_PvE => _RubyDisaster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazDisaster_PvECreator = new(ActionFactory.Create25828);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25828\"><strong>Topaz Disaster</strong></see> <i>PvE</i> (SMN) [25828] [Spell]\r\n /// <para>Deals earth damage with a potency of 130 to target and all enemies nearby it.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazDisaster_PvE => _TopazDisaster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldDisaster_PvECreator = new(ActionFactory.Create25829);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25829\"><strong>Emerald Disaster</strong></see> <i>PvE</i> (SMN) [25829] [Spell]\r\n /// <para>Deals wind damage with a potency of 90 to target and all enemies nearby it.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldDisaster_PvE => _EmeraldDisaster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rekindle_PvECreator = new(ActionFactory.Create25830);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25830\"><strong>Rekindle</strong></see> <i>PvE</i> (SMN) [25830] [Ability]\r\n /// <para>Restores own or target party member's HP.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Grants Rekindle to target</para>\n /// <para>Duration: 30s</para>\n /// <para>Rekindle Effect: Healing over time when HP falls below 75% or upon effect duration expiration</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in Firebird Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Rekindle_PvE => _Rekindle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonPhoenix_PvECreator = new(ActionFactory.Create25831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25831\"><strong>Summon Phoenix</strong></see> <i>PvE</i> (SMN) [25831] [Spell]\r\n /// <para>Enters Firebird Trance and summons Demi-Phoenix to fight by your side, which executes Everlasting Flight as it manifests.</para>\n /// <para>Demi-Phoenix will execute Scarlet Flame automatically on the targets attacked by you after summoning.</para>\n /// <para>Increases enmity in target when Demi-Phoenix is summoned.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Changes Ruin III to Fountain of Fire and Tri-disaster to Brand of Purgatory</para>\n /// <para>Additional Effect: Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum</para>\n /// <para>Can only be executed while Carbuncle is summoned.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction SummonPhoenix_PvE => _SummonPhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyCatastrophe_PvECreator = new(ActionFactory.Create25832);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25832\"><strong>Ruby Catastrophe</strong></see> <i>PvE</i> (SMN) [25832] [Spell]\r\n /// <para>Deals fire damage with a potency of 210 to target and all enemies nearby it.</para>\n /// <para>Fire Attunement Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RubyCatastrophe_PvE => _RubyCatastrophe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TopazCatastrophe_PvECreator = new(ActionFactory.Create25833);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25833\"><strong>Topaz Catastrophe</strong></see> <i>PvE</i> (SMN) [25833] [Spell]\r\n /// <para>Deals earth damage with a potency of 140 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Grants Titan's Favor</para>\n /// <para>Effect of Titan's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Earth Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TopazCatastrophe_PvE => _TopazCatastrophe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmeraldCatastrophe_PvECreator = new(ActionFactory.Create25834);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25834\"><strong>Emerald Catastrophe</strong></see> <i>PvE</i> (SMN) [25834] [Spell]\r\n /// <para>Deals wind damage with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Wind Attunement Cost: 1</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EmeraldCatastrophe_PvE => _EmeraldCatastrophe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonCyclone_PvECreator = new(ActionFactory.Create25835);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25835\"><strong>Crimson Cyclone</strong></see> <i>PvE</i> (SMN) [25835] [Spell]\r\n /// <para>Rushes forward and delivers a fire attack to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Ifrit's Favor.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Action changes to Crimson Strike upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonCyclone_PvE => _CrimsonCyclone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MountainBuster_PvECreator = new(ActionFactory.Create25836);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25836\"><strong>Mountain Buster</strong></see> <i>PvE</i> (SMN) [25836] [Ability]\r\n /// <para>Deals earth damage to target and all enemies nearby it with a potency of 150 for the first enemy, and 70% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Titan's Favor.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction MountainBuster_PvE => _MountainBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slipstream_PvECreator = new(ActionFactory.Create25837);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25837\"><strong>Slipstream</strong></see> <i>PvE</i> (SMN) [25837] [Spell]\r\n /// <para>Deals wind damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para>\n /// <para>Additional Effect: Creates a windstorm centered around the target, dealing damage to any enemies who enter</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Garuda's Favor.</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Slipstream_PvE => _Slipstream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonIfritIi_PvECreator = new(ActionFactory.Create25838);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25838\"><strong>Summon Ifrit II</strong></see> <i>PvE</i> (SMN) [25838] [Spell]\r\n /// <para>Summons Ruby Ifrit and orders it to execute Inferno.</para>\n /// <para>Inferno Effect: Deals fire damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para>\n /// <para>Additional Effect: Grants 2 stacks of Fire Attunement</para>\n /// <para>Duration: 30s</para>\n /// <para>Fire Attunement Effect: Gemshine and Precious Brilliance become fire-aspected</para>\n /// <para>Additional Effect: Grants Ifrit's Favor</para>\n /// <para>Effect of Ifrit's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Can only be executed while under the effect of Ruby Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Ruby Ifrit is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonIfritIi_PvE => _SummonIfritIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonTitanIi_PvECreator = new(ActionFactory.Create25839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25839\"><strong>Summon Titan II</strong></see> <i>PvE</i> (SMN) [25839] [Spell]\r\n /// <para>Summons Topaz Titan and orders it to execute Earthen Fury.</para>\n /// <para>Earthen Fury Effect: Deals earth damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para>\n /// <para>Additional Effect: Grants 4 stacks of Earth Attunement</para>\n /// <para>Duration: 30s</para>\n /// <para>Earth Attunement Effect: Gemshine and Precious Brilliance become earth-aspected</para>\n /// <para>Can only be executed while under the effect of Topaz Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Topaz Titan is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonTitanIi_PvE => _SummonTitanIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonGarudaIi_PvECreator = new(ActionFactory.Create25840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25840\"><strong>Summon Garuda II</strong></see> <i>PvE</i> (SMN) [25840] [Spell]\r\n /// <para>Summons Emerald Garuda and orders it to execute Aerial Blast.</para>\n /// <para>Aerial Blast Effect: Deals wind damage to target and all enemies within 5 yalms with a potency of 750 for the first enemy, and 60% less for all remaining enemies</para>\n /// <para>Additional Effect: Grants 4 stacks of Wind Attunement</para>\n /// <para>Duration: 30s</para>\n /// <para>Wind Attunement Effect: Gemshine and Precious Brilliance become wind-aspected</para>\n /// <para>Additional Effect: Grants Garuda's Favor</para>\n /// <para>Effect of Garuda's Favor ends upon execution of certain summoner actions.</para>\n /// <para>Can only be executed while under the effect of Emerald Arcanum and Carbuncle is summoned.</para>\n /// <para>Current pet will leave the battlefield while Emerald Garuda is present, and return once gone.</para>\r\n /// </summary>\r\n public IBaseAction SummonGarudaIi_PvE => _SummonGarudaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantAegis_PvE_25841Creator = new(ActionFactory.Create25841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25841\"><strong>Radiant Aegis</strong></see> <i>PvE</i> (ACN SMN) [25841] [Ability]\r\n /// <para>Creates a barrier around you that absorbs damage totaling 20% of your maximum HP.</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RadiantAegis_PvE_25841 => _RadiantAegis_PvE_25841Creator.Value;\n private readonly Lazy<IBaseAction> _GlitteringRuby_PvECreator = new(ActionFactory.Create25843);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25843\"><strong>Glittering Ruby</strong></see> <i>PvE</i> (ACN SMN) [25843] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GlitteringRuby_PvE => _GlitteringRuby_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GlitteringTopaz_PvECreator = new(ActionFactory.Create25844);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25844\"><strong>Glittering Topaz</strong></see> <i>PvE</i> (ACN SMN) [25844] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GlitteringTopaz_PvE => _GlitteringTopaz_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GlitteringEmerald_PvECreator = new(ActionFactory.Create25845);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25845\"><strong>Glittering Emerald</strong></see> <i>PvE</i> (ACN SMN) [25845] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GlitteringEmerald_PvE => _GlitteringEmerald_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BurningStrike_PvECreator = new(ActionFactory.Create25846);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25846\"><strong>Burning Strike</strong></see> <i>PvE</i> (SMN) [25846] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BurningStrike_PvE => _BurningStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RockBuster_PvECreator = new(ActionFactory.Create25847);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25847\"><strong>Rock Buster</strong></see> <i>PvE</i> (SMN) [25847] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RockBuster_PvE => _RockBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AerialSlash_PvECreator = new(ActionFactory.Create25848);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25848\"><strong>Aerial Slash</strong></see> <i>PvE</i> (SMN) [25848] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AerialSlash_PvE => _AerialSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inferno_PvECreator = new(ActionFactory.Create25849);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25849\"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25849] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Inferno_PvE => _Inferno_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EarthenFury_PvECreator = new(ActionFactory.Create25850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25850\"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25850] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EarthenFury_PvE => _EarthenFury_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AerialBlast_PvECreator = new(ActionFactory.Create25851);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25851\"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25851] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AerialBlast_PvE => _AerialBlast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inferno_PvE_25852Creator = new(ActionFactory.Create25852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25852\"><strong>Inferno</strong></see> <i>PvE</i> (SMN) [25852] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Inferno_PvE_25852 => _Inferno_PvE_25852Creator.Value;\n private readonly Lazy<IBaseAction> _EarthenFury_PvE_25853Creator = new(ActionFactory.Create25853);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25853\"><strong>Earthen Fury</strong></see> <i>PvE</i> (SMN) [25853] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EarthenFury_PvE_25853 => _EarthenFury_PvE_25853Creator.Value;\n private readonly Lazy<IBaseAction> _AerialBlast_PvE_25854Creator = new(ActionFactory.Create25854);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25854\"><strong>Aerial Blast</strong></see> <i>PvE</i> (SMN) [25854] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AerialBlast_PvE_25854 => _AerialBlast_PvE_25854Creator.Value;\n private readonly Lazy<IBaseAction> _Sleep_PvECreator = new(ActionFactory.Create25880);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25880\"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell]\r\n /// <para>Puts target and all nearby enemies to sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Sleep_PvE => _Sleep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gemshine_PvECreator = new(ActionFactory.Create25883);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25883\"><strong>Gemshine</strong></see> <i>PvE</i> (ACN SMN) [25883] [Spell]\r\n /// <para>Channel the energies of your active elemental attunement to attack your enemy.</para>\n /// <para>Fire Attunement Effect: Deal fire damage to a single target</para>\n /// <para>Earth Attunement Effect: Deal earth damage to a single target</para>\n /// <para>Wind Attunement Effect: Deal wind damage to a single target</para>\r\n /// </summary>\r\n public IBaseAction Gemshine_PvE => _Gemshine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PreciousBrilliance_PvECreator = new(ActionFactory.Create25884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25884\"><strong>Precious Brilliance</strong></see> <i>PvE</i> (ACN SMN) [25884] [Spell]\r\n /// <para>Channel the energies of your active elemental attunement to attack multiple enemies.</para>\n /// <para>Fire Attunement Effect: Deal fire damage to a target and all enemies nearby it</para>\n /// <para>Earth Attunement Effect: Deal earth damage to a target and all enemies nearby it</para>\n /// <para>Wind Attunement Effect: Deal wind damage to a target and all enemies nearby it</para>\r\n /// </summary>\r\n public IBaseAction PreciousBrilliance_PvE => _PreciousBrilliance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonStrike_PvECreator = new(ActionFactory.Create25885);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25885\"><strong>Crimson Strike</strong></see> <i>PvE</i> (SMN) [25885] [Spell]\r\n /// <para>Deals fire damage to target and all enemies nearby it with a potency of 430 for the first enemy, and 65% less for all remaining enemies.</para>\n /// <para>Combo Action: Crimson Cyclone</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonStrike_PvE => _CrimsonStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvPCreator = new(ActionFactory.Create29664);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29664\"><strong>Ruin III</strong></see> <i>PvP</i> (SMN) [29664] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 5,000.</para>\n /// <para></para>\n /// <para>※Action changes to Astral Impulse while under the effect of Dreadwyrm Trance.</para>\n /// <para>※Action changes to Fountain of Fire while under the effect of Firebird Trance.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvP => _RuinIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AstralImpulse_PvPCreator = new(ActionFactory.Create29665);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29665\"><strong>Astral Impulse</strong></see> <i>PvP</i> (SMN) [29665] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 7,500.</para>\n /// <para>Can only be executed while under the effect of Dreadwyrm Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AstralImpulse_PvP => _AstralImpulse_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FountainOfFire_PvPCreator = new(ActionFactory.Create29666);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29666\"><strong>Fountain of Fire</strong></see> <i>PvP</i> (SMN) [29666] [Spell]\r\n /// <para>Deals fire damage with a potency of 5,000.</para>\n /// <para>Can only be executed while under the effect of Firebird Trance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FountainOfFire_PvP => _FountainOfFire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonCyclone_PvPCreator = new(ActionFactory.Create29667);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29667\"><strong>Crimson Cyclone</strong></see> <i>PvP</i> (SMN) [29667] [Spell]\r\n /// <para>Rushes forward and delivers a fire attack with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Crimson Strike upon execution.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonCyclone_PvP => _CrimsonCyclone_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonStrike_PvPCreator = new(ActionFactory.Create29668);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29668\"><strong>Crimson Strike</strong></see> <i>PvP</i> (SMN) [29668] [Spell]\r\n /// <para>Deals fire damage with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para>Combo Action: Crimson Cyclone</para>\n /// <para>Additional Effect: 5-yalm knockback emanating from first target</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonStrike_PvP => _CrimsonStrike_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Slipstream_PvPCreator = new(ActionFactory.Create29669);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29669\"><strong>Slipstream</strong></see> <i>PvP</i> (SMN) [29669] [Spell]\r\n /// <para>Deals wind damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Creates a Slipstream centered around target, dealing damage to any enemies who enter</para>\n /// <para>Enemies standing within 5 yalms of the storm's eye take no damage.</para>\n /// <para>Potency: 4,000</para>\n /// <para>Additional Effect: Increases movement speed of party members standing in the Slipstream by 25%</para>\n /// <para>Duration: 10s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Slipstream_PvP => _Slipstream_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RadiantAegis_PvPCreator = new(ActionFactory.Create29670);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29670\"><strong>Radiant Aegis</strong></see> <i>PvP</i> (SMN) [29670] [Ability]\r\n /// <para>Creates a barrier around self or target party member that reduces damage taken by 20% and absorbs damage equivalent to a heal of 10,000 potency.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction RadiantAegis_PvP => _RadiantAegis_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MountainBuster_PvPCreator = new(ActionFactory.Create29671);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29671\"><strong>Mountain Buster</strong></see> <i>PvP</i> (SMN) [29671] [Ability]\r\n /// <para>Deals earth damage with a potency of 4,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts first target with Bind, and all remaining targets with Heavy +75%</para>\n /// <para>Duration: 3s</para>\n /// <para>Additional Effect: Draws remaining targets in toward first target</para>\r\n /// </summary>\r\n public IBaseAction MountainBuster_PvP => _MountainBuster_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Fester_PvPCreator = new(ActionFactory.Create29672);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29672\"><strong>Fester</strong></see> <i>PvP</i> (SMN) [29672] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 4,000.</para>\n /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Fester_PvP => _Fester_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SummonBahamut_PvPCreator = new(ActionFactory.Create29673);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29673\"><strong>Summon Bahamut</strong></see> <i>PvP</i> (SMN) [29673] [Limit Break]\r\n /// <para>Enters Dreadwyrm Trance and summons Demi-Bahamut to fight at a designated location.</para>\n /// <para>Duration: 20s</para>\n /// <para>Demi-Bahamut will execute Megaflare upon being summoned, then execute Wyrmwave automatically, prioritizing targets with the lowest HP within 30 yalms.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\n /// <para></para>\n /// <para>※Action changes to Enkindle Bahamut upon execution.</para>\n /// <para>※Ruin III changes to Astral Impulse while under the effect of Dreadwyrm Trance.</para>\r\n /// </summary>\r\n public IBaseAction SummonBahamut_PvP => _SummonBahamut_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnkindleBahamut_PvPCreator = new(ActionFactory.Create29674);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29674\"><strong>Enkindle Bahamut</strong></see> <i>PvP</i> (SMN) [29674] [Ability]\r\n /// <para>Orders Demi-Bahamut to execute Akh Morn.</para>\n /// <para>Akh Morn Effect: Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnkindleBahamut_PvP => _EnkindleBahamut_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Megaflare_PvPCreator = new(ActionFactory.Create29675);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29675\"><strong>Megaflare</strong></see> <i>PvP</i> (SMN) [29675] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 18,000 to all nearby enemies.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Megaflare_PvP => _Megaflare_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Wyrmwave_PvPCreator = new(ActionFactory.Create29676);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29676\"><strong>Wyrmwave</strong></see> <i>PvP</i> (SMN) [29676] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 6,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Wyrmwave_PvP => _Wyrmwave_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AkhMorn_PvPCreator = new(ActionFactory.Create29677);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29677\"><strong>Akh Morn</strong></see> <i>PvP</i> (SMN) [29677] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AkhMorn_PvP => _AkhMorn_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SummonPhoenix_PvPCreator = new(ActionFactory.Create29678);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29678\"><strong>Summon Phoenix</strong></see> <i>PvP</i> (SMN) [29678] [Limit Break]\r\n /// <para>Enters Firebird Trance and summons Demi-Phoenix to fight at a designated location.</para>\n /// <para>Duration: 20s</para>\n /// <para>Demi-Phoenix will execute Everlasting Flight upon being summoned, then execute Scarlet Flame automatically, prioritizing the closest target within 30 yalms.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\n /// <para></para>\n /// <para>※Action changes to Enkindle Phoenix upon execution.</para>\n /// <para>※Ruin III changes to Fountain of Fire while under the effect of Firebird Trance.</para>\r\n /// </summary>\r\n public IBaseAction SummonPhoenix_PvP => _SummonPhoenix_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlePhoenix_PvPCreator = new(ActionFactory.Create29679);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29679\"><strong>Enkindle Phoenix</strong></see> <i>PvP</i> (SMN) [29679] [Ability]\r\n /// <para>Orders Demi-Phoenix to execute Revelation.</para>\n /// <para>Revelation Effect: Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlePhoenix_PvP => _EnkindlePhoenix_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EverlastingFlight_PvPCreator = new(ActionFactory.Create29680);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29680\"><strong>Everlasting Flight</strong></see> <i>PvP</i> (SMN) [29680] [Ability]\r\n /// <para>Gradually restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Restores HP when HP falls below 25% or upon effect duration expiration</para>\n /// <para>Cure Potency: 12,000</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EverlastingFlight_PvP => _EverlastingFlight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ScarletFlame_PvPCreator = new(ActionFactory.Create29681);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29681\"><strong>Scarlet Flame</strong></see> <i>PvP</i> (SMN) [29681] [Spell]\r\n /// <para>Deals fire damage with a potency of 4,000.</para>\n /// <para>Additional Effect: Reduces target's damage dealt by 50%</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ScarletFlame_PvP => _ScarletFlame_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Revelation_PvPCreator = new(ActionFactory.Create29682);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29682\"><strong>Revelation</strong></see> <i>PvP</i> (SMN) [29682] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Revelation_PvP => _Revelation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(66));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50066\"><strong>Maim and Mend</strong></see> (ACN SMN SCH) [66]\r\n /// <para>Increases base action damage and HP restoration by 10%. Also increases base damage and HP restoration of your pet by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(69));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50069\"><strong>Maim and Mend II</strong></see> (ACN SMN SCH) [69]\r\n /// <para>Increases base action damage and HP restoration by 30%. Also increases base damage and HP restoration of your pet by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDreadwyrmTranceTraitCreator = new(() => new BaseTrait(178));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50178\"><strong>Enhanced Dreadwyrm Trance</strong></see> (SMN) [178]\r\n /// <para>Upgrades Dreadwyrm Trance to Summon Bahamut.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDreadwyrmTranceTrait => _EnhancedDreadwyrmTranceTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RuinMasteryTraitCreator = new(() => new BaseTrait(217));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50217\"><strong>Ruin Mastery</strong></see> (ACN SMN) [217]\r\n /// <para>Upgrades Ruin to Ruin II.</para>\r\n /// </summary>\r\n public IBaseTrait RuinMasteryTrait => _RuinMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAetherchargeTraitCreator = new(() => new BaseTrait(466));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50466\"><strong>Enhanced Aethercharge</strong></see> (ACN SMN) [466]\r\n /// <para>Grants Ruby Arcanum and Topaz Arcanum upon executing Aethercharge.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAetherchargeTrait => _EnhancedAetherchargeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAetherchargeIiTraitCreator = new(() => new BaseTrait(467));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50467\"><strong>Enhanced Aethercharge II</strong></see> (ACN SMN) [467]\r\n /// <para>Grants Ruby Arcanum, Topaz Arcanum, and Emerald Arcanum upon executing Aethercharge.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAetherchargeIiTrait => _EnhancedAetherchargeIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RubySummoningMasteryTraitCreator = new(() => new BaseTrait(468));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50468\"><strong>Ruby Summoning Mastery</strong></see> (SMN) [468]\r\n /// <para>Upgrades Summon Ruby to Summon Ifrit.</para>\r\n /// </summary>\r\n public IBaseTrait RubySummoningMasteryTrait => _RubySummoningMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TopazSummoningMasteryTraitCreator = new(() => new BaseTrait(469));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50469\"><strong>Topaz Summoning Mastery</strong></see> (SMN) [469]\r\n /// <para>Upgrades Summon Topaz to Summon Titan.</para>\r\n /// </summary>\r\n public IBaseTrait TopazSummoningMasteryTrait => _TopazSummoningMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EmeraldSummoningMasteryTraitCreator = new(() => new BaseTrait(470));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50470\"><strong>Emerald Summoning Mastery</strong></see> (SMN) [470]\r\n /// <para>Upgrades Summon Emerald to Summon Garuda.</para>\r\n /// </summary>\r\n public IBaseTrait EmeraldSummoningMasteryTrait => _EmeraldSummoningMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnkindleTraitCreator = new(() => new BaseTrait(471));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50471\"><strong>Enkindle</strong></see> (SMN) [471]\r\n /// <para>Enhances the signature attack of summons, upgrading Ifrit-Egi's Burning Strike to Inferno, Titan-Egi's Rock Buster to Earthen Fury, and Garuda-Egi's Aerial Slash to Aerial Blast.</para>\r\n /// </summary>\r\n public IBaseTrait EnkindleTrait => _EnkindleTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RuinMasteryIiTraitCreator = new(() => new BaseTrait(473));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50473\"><strong>Ruin Mastery II</strong></see> (SMN) [473]\r\n /// <para>Upgrades Ruin II to Ruin III.</para>\r\n /// </summary>\r\n public IBaseTrait RuinMasteryIiTrait => _RuinMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AetherchargeMasteryTraitCreator = new(() => new BaseTrait(474));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50474\"><strong>Aethercharge Mastery</strong></see> (SMN) [474]\r\n /// <para>Upgrades Aethercharge to Dreadwyrm Trance.</para>\r\n /// </summary>\r\n public IBaseTrait AetherchargeMasteryTrait => _AetherchargeMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnergySiphonTraitCreator = new(() => new BaseTrait(475));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50475\"><strong>Enhanced Energy Siphon</strong></see> (SMN) [475]\r\n /// <para>Grants Further Ruin upon executing Energy Drain or Energy Siphon.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnergySiphonTrait => _EnhancedEnergySiphonTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RuinMasteryIiiTraitCreator = new(() => new BaseTrait(476));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50476\"><strong>Ruin Mastery III</strong></see> (SMN) [476]\r\n /// <para>Enhances Gemshine according to your current elemental attunement.</para>\n /// <para>Fire Attunement Upgrade: Ruby Rite</para>\n /// <para>Earth Attunement Upgrade: Topaz Rite</para>\n /// <para>Wind Attunement Upgrade: Emerald Rite</para>\r\n /// </summary>\r\n public IBaseTrait RuinMasteryIiiTrait => _RuinMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _OutburstMasteryTraitCreator = new(() => new BaseTrait(477));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50477\"><strong>Outburst Mastery</strong></see> (SMN) [477]\r\n /// <para>Upgrades Outburst to Tri-disaster.</para>\r\n /// </summary>\r\n public IBaseTrait OutburstMasteryTrait => _OutburstMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _OutburstMasteryIiTraitCreator = new(() => new BaseTrait(478));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50478\"><strong>Outburst Mastery II</strong></see> (SMN) [478]\r\n /// <para>Enhances Precious Brilliance according to your current elemental attunement.</para>\n /// <para>Fire Attunement Upgrade: Ruby Catastrophe</para>\n /// <para>Earth Attunement Upgrade: Topaz Catastrophe</para>\n /// <para>Wind Attunement Upgrade: Emerald Catastrophe</para>\r\n /// </summary>\r\n public IBaseTrait OutburstMasteryIiTrait => _OutburstMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RuinMasteryIvTraitCreator = new(() => new BaseTrait(479));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50479\"><strong>Ruin Mastery IV</strong></see> (SMN) [479]\r\n /// <para>Increases the potency of Ruin III to 310, Ruby Rite to 510, Topaz Rite to 330, and Emerald Rite to 230.</para>\r\n /// </summary>\r\n public IBaseTrait RuinMasteryIvTrait => _RuinMasteryIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedRadiantAegisTraitCreator = new(() => new BaseTrait(480));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50480\"><strong>Enhanced Radiant Aegis</strong></see> (SMN) [480]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Radiant Aegis.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedRadiantAegisTrait => _EnhancedRadiantAegisTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnkindleIiTraitCreator = new(() => new BaseTrait(481));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50481\"><strong>Enkindle II</strong></see> (SMN) [481]\r\n /// <para>Upgrades Summon Ifrit to Summon Ifrit II, Summon Titan to Summon Titan II, and Summon Garuda to Summon Garuda II.</para>\r\n /// </summary>\r\n public IBaseTrait EnkindleIiTrait => _EnkindleIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSummonBahamutTraitCreator = new(() => new BaseTrait(502));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50502\"><strong>Enhanced Summon Bahamut</strong></see> (SMN) [502]\r\n /// <para>Upgrades Summon Bahamut to Summon Phoenix when Demi-Bahamut returns from summoning.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSummonBahamutTrait => _EnhancedSummonBahamutTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ElementalMasteryTraitCreator = new(() => new BaseTrait(503));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50503\"><strong>Elemental Mastery</strong></see> (SMN) [503]\r\n /// <para>Grants Ifrit's Favor upon executing Summon Ifrit, Titan's Favor upon executing Topaz Rite or Topaz Catastrophe, and Garuda's Favor upon executing Summon Garuda.</para>\n /// <para>Enhances Astral Flow according to your current elemental favor.</para>\n /// <para>Ifrit's Favor Upgrade: Crimson Cyclone</para>\n /// <para>Titan's Favor Upgrade: Mountain Buster</para>\n /// <para>Garuda's Favor Upgrade: Slipstream</para>\r\n /// </summary>\r\n public IBaseTrait ElementalMasteryTrait => _ElementalMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "ScholarRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/scholar\"><strong>Scholar</strong></see>\r\n/// </summary>\r\npublic abstract partial class ScholarRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.SCH };\r\n static SCHGauge JobGauge => Svc.Gauges.Get<SCHGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherflow_PvECreator = new(ActionFactory.Create166);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/166\"><strong>Aetherflow</strong></see> <i>PvE</i> (SCH) [166] [Ability]\r\n /// <para>Restores 20% of maximum MP.</para>\n /// <para>Additional Effect: Aetherflow III</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Aetherflow_PvE => _Aetherflow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnergyDrain_PvECreator = new(ActionFactory.Create167);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/167\"><strong>Energy Drain</strong></see> <i>PvE</i> (SCH) [167] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\n /// <para>Additional Effect: Increases Faerie Gauge by 10</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction EnergyDrain_PvE => _EnergyDrain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Resurrection_PvECreator = new(ActionFactory.Create173);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/173\"><strong>Resurrection</strong></see> <i>PvE</i> (ACN SMN SCH) [173] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Resurrection_PvE => _Resurrection_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Adloquium_PvECreator = new(ActionFactory.Create185);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/185\"><strong>Adloquium</strong></see> <i>PvE</i> (SCH) [185] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Grants Galvanize to target, nullifying damage equaling % of the amount of HP restored. When critical HP is restored, also grants Catalyze, nullifying damage equaling % the amount of HP restored.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with certain sage barrier effects.</para>\r\n /// </summary>\r\n public IBaseAction Adloquium_PvE => _Adloquium_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Succor_PvECreator = new(ActionFactory.Create186);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/186\"><strong>Succor</strong></see> <i>PvE</i> (SCH) [186] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with certain sage barrier effects.</para>\r\n /// </summary>\r\n public IBaseAction Succor_PvE => _Succor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SacredSoil_PvECreator = new(ActionFactory.Create188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/188\"><strong>Sacred Soil</strong></see> <i>PvE</i> (SCH) [188] [Ability]\r\n /// <para>Creates a designated area in which party members will only suffer 90% of all damage inflicted.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Additional Effect: Increases Faerie Gauge by 10</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction SacredSoil_PvE => _SacredSoil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lustrate_PvECreator = new(ActionFactory.Create189);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/189\"><strong>Lustrate</strong></see> <i>PvE</i> (SCH) [189] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\n /// <para>Additional Effect: Increases Faerie Gauge by 10</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Lustrate_PvE => _Lustrate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create190);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/190\"><strong>Physick</strong></see> <i>PvE</i> (SCH) [190] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embrace_PvECreator = new(ActionFactory.Create802);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/802\"><strong>Embrace</strong></see> <i>PvE</i> (SCH) [802] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Embrace_PvE => _Embrace_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhisperingDawn_PvECreator = new(ActionFactory.Create803);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/803\"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [803] [Ability]\r\n /// <para>Gradually restores the HP of all nearby party members.</para>\n /// <para>Cure Potency: 80</para>\n /// <para>Duration: 21s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WhisperingDawn_PvE => _WhisperingDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeyIllumination_PvECreator = new(ActionFactory.Create805);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/805\"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [805] [Ability]\r\n /// <para>Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\n /// <para>Effect cannot be stacked with Seraphic Illumination.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FeyIllumination_PvE => _FeyIllumination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvECreator = new(ActionFactory.Create1584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1584\"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability]\r\n /// <para>Restores own or target party member's HP while also removing Stun, Sleep, Bind, Heavy, and Silence.</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Cure potency is doubled when a status affliction is removed. Can be used regardless of own status affliction.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvE => _Purify_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Indomitability_PvECreator = new(ActionFactory.Create3583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3583\"><strong>Indomitability</strong></see> <i>PvE</i> (SCH) [3583] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Increases Faerie Gauge by 10</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Indomitability_PvE => _Indomitability_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Broil_PvECreator = new(ActionFactory.Create3584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3584\"><strong>Broil</strong></see> <i>PvE</i> (SCH) [3584] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 220.</para>\r\n /// </summary>\r\n public IBaseAction Broil_PvE => _Broil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeploymentTactics_PvECreator = new(ActionFactory.Create3585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3585\"><strong>Deployment Tactics</strong></see> <i>PvE</i> (SCH) [3585] [Ability]\r\n /// <para>Extends Galvanize effect cast on self or target party member to other nearby party members.</para>\n /// <para>Duration: Time remaining on original effect</para>\n /// <para>No effect when target is not under the effect of Galvanize.</para>\r\n /// </summary>\r\n public IBaseAction DeploymentTactics_PvE => _DeploymentTactics_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EmergencyTactics_PvECreator = new(ActionFactory.Create3586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3586\"><strong>Emergency Tactics</strong></see> <i>PvE</i> (SCH) [3586] [Ability]\r\n /// <para>Transforms the next Galvanize and Catalyze statuses into HP recovery equaling the amount of damage reduction intended for the barrier.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction EmergencyTactics_PvE => _EmergencyTactics_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dissipation_PvECreator = new(ActionFactory.Create3587);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3587\"><strong>Dissipation</strong></see> <i>PvE</i> (SCH) [3587] [Ability]\r\n /// <para>Orders your faerie away while granting you a full Aetherflow stack. Also increases healing magic potency by 20%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Current faerie will return once the effect expires.</para>\n /// <para>Summon Eos cannot be executed while under the effect of Dissipation.</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Dissipation_PvE => _Dissipation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Excogitation_PvECreator = new(ActionFactory.Create7434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7434\"><strong>Excogitation</strong></see> <i>PvE</i> (SCH) [7434] [Ability]\r\n /// <para>Grants self or target party member the effect of Excogitation, restoring HP when member's HP falls below 50% or upon effect duration expiration.</para>\n /// <para>Cure Potency: 800</para>\n /// <para>Duration: 45s</para>\n /// <para>Additional Effect: Increases Faerie Gauge by 10</para>\n /// <para>Aetherflow Gauge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Excogitation_PvE => _Excogitation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BroilIi_PvECreator = new(ActionFactory.Create7435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7435\"><strong>Broil II</strong></see> <i>PvE</i> (SCH) [7435] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 240.</para>\r\n /// </summary>\r\n public IBaseAction BroilIi_PvE => _BroilIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChainStratagem_PvECreator = new(ActionFactory.Create7436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7436\"><strong>Chain Stratagem</strong></see> <i>PvE</i> (SCH) [7436] [Ability]\r\n /// <para>Increases rate at which target takes critical hits by 10%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ChainStratagem_PvE => _ChainStratagem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherpact_PvECreator = new(ActionFactory.Create7437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7437\"><strong>Aetherpact</strong></see> <i>PvE</i> (SCH) [7437] [Ability]\r\n /// <para>Orders faerie to execute Fey Union with target party member. Effect ends upon reuse.</para>\n /// <para>Faerie Gauge Cost: 10</para>\n /// <para>Fey Union Effect: Gradually restores HP of party member with which faerie has a Fey Union.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Faerie Gauge is depleted by 10 periodically while HP is restored. Fey Union effect fades upon execution of other faerie actions or when party member moves from within 30 yalms of the faerie.</para>\n /// <para>The Faerie Gauge increases when a faerie or Serapha faeriea faerie is summoned and an Aetherflow action is successfully executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Aetherpact_PvE => _Aetherpact_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeyUnion_PvECreator = new(ActionFactory.Create7438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7438\"><strong>Fey Union</strong></see> <i>PvE</i> (SCH) [7438] [Ability]\r\n /// <para>Gradually restores HP of party member with which faerie has a Fey Union.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Faerie Gauge is depleted by 10 periodically while HP is restored. Fey Union effect fades upon execution of other faerie actions or when party member moves from within 30 yalms of the faerie.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FeyUnion_PvE => _FeyUnion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Esuna_PvECreator = new(ActionFactory.Create7568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7568\"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction Esuna_PvE => _Esuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rescue_PvECreator = new(ActionFactory.Create7571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7571\"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability]\r\n /// <para>Instantly draws target party member to your side. Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction Rescue_PvE => _Rescue_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DissolveUnion_PvECreator = new(ActionFactory.Create7869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7869\"><strong>Dissolve Union</strong></see> <i>PvE</i> (SCH) [7869] [Ability]\r\n /// <para>Dissolves current Fey Union.</para>\r\n /// </summary>\r\n public IBaseAction DissolveUnion_PvE => _DissolveUnion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvE_11192Creator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE_11192 => _Physick_PvE_11192Creator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheAetherweaver_PvECreator = new(ActionFactory.Create12958);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12958\"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell]\r\n /// <para>Increases magic damage dealt by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheAetherweaver_PvE => _WisdomOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheOrdained_PvECreator = new(ActionFactory.Create12962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12962\"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell]\r\n /// <para>Increases maximum MP by 50% and healing magic potency by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheOrdained_PvE => _WisdomOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheTemplar_PvECreator = new(ActionFactory.Create12965);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12965\"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell]\r\n /// <para>Increases healing magic potency by 50% and maximum HP by 30%, while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheTemplar_PvE => _WisdomOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RefreshL_PvECreator = new(ActionFactory.Create13002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13002\"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell]\r\n /// <para>Increases the amount of magia aether regenerated over time by self and nearby party members.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction RefreshL_PvE => _RefreshL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishL_PvECreator = new(ActionFactory.Create13003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13003\"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishL_PvE => _BanishL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishLIii_PvECreator = new(ActionFactory.Create13004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13004\"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishLIii_PvE => _BanishLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SacrificeL_PvECreator = new(ActionFactory.Create14481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14481\"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SacrificeL_PvE => _SacrificeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhisperingDawn_PvE_16537Creator = new(ActionFactory.Create16537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16537\"><strong>Whispering Dawn</strong></see> <i>PvE</i> (SCH) [16537] [Ability]\r\n /// <para>Orders faerie to execute Whispering Dawn. If Seraph is summoned, orders her to execute Angel's Whisper.</para>\n /// <para>Whispering Dawn/Angel's Whisper Effect: Gradually restores the HP of all nearby party members</para>\n /// <para>Cure Potency: 80</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction WhisperingDawn_PvE_16537 => _WhisperingDawn_PvE_16537Creator.Value;\n private readonly Lazy<IBaseAction> _FeyIllumination_PvE_16538Creator = new(ActionFactory.Create16538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16538\"><strong>Fey Illumination</strong></see> <i>PvE</i> (SCH) [16538] [Ability]\r\n /// <para>Orders faerie to execute Fey Illumination. If Seraph is summoned, orders her to execute Seraphic Illumination.</para>\n /// <para>Fey Illumination/Seraphic Illumination Effect: Increases healing magic potency of all nearby party members by 10%, while reducing magic damage taken by all nearby party members by 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Effect cannot be stacked with Seraphic Illumination.</para>\r\n /// </summary>\r\n public IBaseAction FeyIllumination_PvE_16538 => _FeyIllumination_PvE_16538Creator.Value;\n private readonly Lazy<IBaseAction> _ArtOfWar_PvECreator = new(ActionFactory.Create16539);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16539\"><strong>Art of War</strong></see> <i>PvE</i> (SCH) [16539] [Spell]\r\n /// <para>Deals unaspected damage with a potency of to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction ArtOfWar_PvE => _ArtOfWar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Biolysis_PvECreator = new(ActionFactory.Create16540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16540\"><strong>Biolysis</strong></see> <i>PvE</i> (SCH) [16540] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Biolysis_PvE => _Biolysis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BroilIii_PvECreator = new(ActionFactory.Create16541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16541\"><strong>Broil III</strong></see> <i>PvE</i> (SCH) [16541] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 255.</para>\r\n /// </summary>\r\n public IBaseAction BroilIii_PvE => _BroilIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recitation_PvECreator = new(ActionFactory.Create16542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16542\"><strong>Recitation</strong></see> <i>PvE</i> (SCH) [16542] [Ability]\r\n /// <para>Allows the execution of Adloquium, Succor, Indomitability, or Excogitation without consuming resources while also ensuring critical HP is restored.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Recitation_PvE => _Recitation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeyBlessing_PvECreator = new(ActionFactory.Create16543);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16543\"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16543] [Ability]\r\n /// <para>Orders faerie to execute Fey Blessing.</para>\n /// <para>Fey Blessing Effect: Restores the HP of all nearby party members</para>\n /// <para>Cure Potency: 320</para>\r\n /// </summary>\r\n public IBaseAction FeyBlessing_PvE => _FeyBlessing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeyBlessing_PvE_16544Creator = new(ActionFactory.Create16544);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16544\"><strong>Fey Blessing</strong></see> <i>PvE</i> (SCH) [16544] [Ability]\r\n /// <para>Restores the HP of all nearby party members.</para>\n /// <para>Cure Potency: 320</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FeyBlessing_PvE_16544 => _FeyBlessing_PvE_16544Creator.Value;\n private readonly Lazy<IBaseAction> _SummonSeraph_PvECreator = new(ActionFactory.Create16545);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16545\"><strong>Summon Seraph</strong></see> <i>PvE</i> (SCH) [16545] [Ability]\r\n /// <para>Summons Seraph to fight at your side. When set to guard, automatically casts Seraphic Veil on party members who suffer damage.</para>\n /// <para>Cannot summon Seraph unless a pet is already summoned. Current pet will leave the battlefield while Seraph is present, and return once gone.</para>\n /// <para>Duration: 22s</para>\n /// <para></para>\n /// <para>※Action changes to Consolation upon execution.</para>\r\n /// </summary>\r\n public IBaseAction SummonSeraph_PvE => _SummonSeraph_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Consolation_PvECreator = new(ActionFactory.Create16546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16546\"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16546] [Ability]\r\n /// <para>Orders Seraph to execute Consolation.</para>\n /// <para>Consolation Effect: Restores the HP of all nearby party members</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Consolation_PvE => _Consolation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Consolation_PvE_16547Creator = new(ActionFactory.Create16547);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16547\"><strong>Consolation</strong></see> <i>PvE</i> (SCH) [16547] [Ability]\r\n /// <para>Restores the HP of all nearby party members.</para>\n /// <para>Cure Potency: 250</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Consolation_PvE_16547 => _Consolation_PvE_16547Creator.Value;\n private readonly Lazy<IBaseAction> _SeraphicVeil_PvECreator = new(ActionFactory.Create16548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16548\"><strong>Seraphic Veil</strong></see> <i>PvE</i> (SCH) [16548] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SeraphicVeil_PvE => _SeraphicVeil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelsWhisper_PvECreator = new(ActionFactory.Create16550);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16550\"><strong>Angel's Whisper</strong></see> <i>PvE</i> (SCH) [16550] [Ability]\r\n /// <para>Gradually restores the HP of all nearby party members.</para>\n /// <para>Cure Potency: 80</para>\n /// <para>Duration: 21s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AngelsWhisper_PvE => _AngelsWhisper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SeraphicIllumination_PvECreator = new(ActionFactory.Create16551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16551\"><strong>Seraphic Illumination</strong></see> <i>PvE</i> (SCH) [16551] [Ability]\r\n /// <para>Increases healing magic potency of nearby party members by 10%, while reducing magic damage taken by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\n /// <para>Effect cannot be stacked with Fey Illumination.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SeraphicIllumination_PvE => _SeraphicIllumination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Repose_PvECreator = new(ActionFactory.Create16560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16560\"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell]\r\n /// <para>Afflicts target with Sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Repose_PvE => _Repose_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SummonEos_PvECreator = new(ActionFactory.Create17215);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17215\"><strong>Summon Eos</strong></see> <i>PvE</i> (SCH) [17215] [Spell]\r\n /// <para>Summons the faerie Eos to fight at your side. When set to guard, automatically casts Embrace on party members who suffer damage.</para>\r\n /// </summary>\r\n public IBaseAction SummonEos_PvE => _SummonEos_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bio_PvECreator = new(ActionFactory.Create17864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17864\"><strong>Bio</strong></see> <i>PvE</i> (SCH) [17864] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 20</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Bio_PvE => _Bio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BioIi_PvECreator = new(ActionFactory.Create17865);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17865\"><strong>Bio II</strong></see> <i>PvE</i> (SCH) [17865] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction BioIi_PvE => _BioIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ruin_PvECreator = new(ActionFactory.Create17869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17869\"><strong>Ruin</strong></see> <i>PvE</i> (SCH) [17869] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Ruin_PvE => _Ruin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIi_PvECreator = new(ActionFactory.Create17870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17870\"><strong>Ruin II</strong></see> <i>PvE</i> (SCH) [17870] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction RuinIi_PvE => _RuinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20741);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20741\"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item]\r\n /// <para>Increases damage dealt by 80%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheAetherweaver_PvE => _EssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheProfane_PvECreator = new(ActionFactory.Create20750);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20750\"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheProfane_PvE => _EssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20755);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20755\"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item]\r\n /// <para>Increases defense by 50%, maximum HP by 45%, and damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheTemplar_PvE => _EssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20756);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20756\"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item]\r\n /// <para>Increases damage dealt by 96%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheAetherweaver_PvE => _DeepEssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheProfane_PvECreator = new(ActionFactory.Create20765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20765\"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 120%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheProfane_PvE => _DeepEssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20770);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20770\"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item]\r\n /// <para>Increases defense by 60%, maximum HP by 54%, and damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheTemplar_PvE => _DeepEssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDivine_PvECreator = new(ActionFactory.Create22351);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22351\"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 35%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDivine_PvE => _PureEssenceOfTheDivine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSeraphStrike_PvECreator = new(ActionFactory.Create22354);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22354\"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability]\r\n /// <para>Consumes MP to deliver a jumping attack that deals unaspected damage with a potency of 500.</para>\n /// <para>Additional Effect: Reduces target's accuracy by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Cleric Stance to self.</para>\n /// <para>Cleric Stance Bonus: Reduces healing potency by 60% while increasing damage dealt by 60%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostSeraphStrike_PvE => _LostSeraphStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFullCure_PvECreator = new(ActionFactory.Create23920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23920\"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability]\r\n /// <para>Fully restores HP and MP while granting Auto-potion and Auto-ether to self and nearby party members.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion and Auto-ether effect to end is reduced to 10%</para>\r\n /// </summary>\r\n public IBaseAction LostFullCure_PvE => _LostFullCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BroilIv_PvECreator = new(ActionFactory.Create25865);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25865\"><strong>Broil IV</strong></see> <i>PvE</i> (SCH) [25865] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 295.</para>\r\n /// </summary>\r\n public IBaseAction BroilIv_PvE => _BroilIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArtOfWarIi_PvECreator = new(ActionFactory.Create25866);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25866\"><strong>Art of War II</strong></see> <i>PvE</i> (SCH) [25866] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 180 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction ArtOfWarIi_PvE => _ArtOfWarIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Protraction_PvECreator = new(ActionFactory.Create25867);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25867\"><strong>Protraction</strong></see> <i>PvE</i> (SCH) [25867] [Ability]\r\n /// <para>Increases maximum HP of a party member or self by 10% and restores the amount increased.</para>\n /// <para>Additional Effect: Increases HP recovery via healing actions by 10%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Protraction_PvE => _Protraction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Expedient_PvECreator = new(ActionFactory.Create25868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25868\"><strong>Expedient</strong></see> <i>PvE</i> (SCH) [25868] [Ability]\r\n /// <para>Grants Expedience and Desperate Measures to all nearby party members.</para>\n /// <para>Expedience Effect: Increases movement speed</para>\n /// <para>Duration: 10s</para>\n /// <para>Desperate Measures Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Expedient_PvE => _Expedient_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _BroilIv_PvPCreator = new(ActionFactory.Create29231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29231\"><strong>Broil IV</strong></see> <i>PvP</i> (SCH) [29231] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 5,000.</para>\r\n /// </summary>\r\n public IBaseAction BroilIv_PvP => _BroilIv_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Adloquium_PvPCreator = new(ActionFactory.Create29232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29232\"><strong>Adloquium</strong></see> <i>PvP</i> (SCH) [29232] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Additional Effect: Grants Galvanize and Catalyze to target</para>\n /// <para>Galvanize Effect: Absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 15s</para>\n /// <para>Barrier potency is increased by 50% when you are under the effect of Recitation.</para>\n /// <para>Catalyze Effect: Increases damage dealt by 8%</para>\n /// <para>Duration: 15s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Adloquium_PvP => _Adloquium_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Biolysis_PvPCreator = new(ActionFactory.Create29233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29233\"><strong>Biolysis</strong></see> <i>PvP</i> (SCH) [29233] [Spell]\r\n /// <para>Afflicts target with Biolysis and Biolytic.</para>\n /// <para>Biolysis Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Potency is increased by 50% when you are under the effect of Recitation.</para>\n /// <para>Biolytic Effect: Reduces target's damage dealt by 8%</para>\n /// <para>Duration: 15s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Biolysis_PvP => _Biolysis_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DeploymentTactics_PvPCreator = new(ActionFactory.Create29234);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29234\"><strong>Deployment Tactics</strong></see> <i>PvP</i> (SCH) [29234] [Ability]\r\n /// <para>Extends Galvanize and Catalyze effects cast on self or target to nearby party members.</para>\n /// <para>When targeting an enemy, extends Biolysis and Biolytic effects to other nearby enemies.</para>\n /// <para>Duration: Time remaining on original effect</para>\n /// <para>No effect on targets not under effects applied by you, players riding machina, or non-player combatants.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction DeploymentTactics_PvP => _DeploymentTactics_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mummification_PvPCreator = new(ActionFactory.Create29235);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29235\"><strong>Mummification</strong></see> <i>PvP</i> (SCH) [29235] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Reduces target's HP recovered by healing actions by 25%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Mummification_PvP => _Mummification_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Expedient_PvPCreator = new(ActionFactory.Create29236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29236\"><strong>Expedient</strong></see> <i>PvP</i> (SCH) [29236] [Ability]\r\n /// <para>Grants Expedience and Desperate Measures to self and all nearby party members.</para>\n /// <para>Expedience Effect: Increases movement speed by 25%</para>\n /// <para>Duration: 10s</para>\n /// <para>Desperate Measures Effect: Reduces damage taken by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Recitation</para>\n /// <para>Recitation Effect: Increases the potency of Galvanize, Biolysis, and Biolytic effects</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Expedient_PvP => _Expedient_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SummonSeraph_PvPCreator = new(ActionFactory.Create29237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29237\"><strong>Summon Seraph</strong></see> <i>PvP</i> (SCH) [29237] [Limit Break]\r\n /// <para>Summons Seraph to fight at a designated location.</para>\n /// <para>Seraph will execute Seraph Flight immediately after being summoned.</para>\n /// <para>Automatically casts Seraphic Veil on party members who suffer damage.</para>\n /// <para>Additional Effect: Grants Recitation</para>\n /// <para>Recitation Effect: Increases the potency of Galvanize, Biolysis, and Biolytic effects</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\n /// <para></para>\n /// <para>※Action changes to Consolation upon execution.</para>\r\n /// </summary>\r\n public IBaseAction SummonSeraph_PvP => _SummonSeraph_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Consolation_PvPCreator = new(ActionFactory.Create29238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29238\"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29238] [Ability]\r\n /// <para>Orders Seraph to execute Consolation.</para>\n /// <para>Consolation Effect: Restores HP of all nearby party members</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while Seraph is summoned.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Consolation_PvP => _Consolation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SeraphFlight_PvPCreator = new(ActionFactory.Create29239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29239\"><strong>Seraph Flight</strong></see> <i>PvP</i> (SCH) [29239] [Ability]\r\n /// <para>Grants Seraph Flight and Excogitation to all nearby party members.</para>\n /// <para>Seraph Flight Effect: Nullifies the next status affliction that can be removed by Purify</para>\n /// <para>Duration: 20s</para>\n /// <para>Excogitation Effect: Restores HP when HP falls below 50% or upon effect duration expiration</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Duration: 20s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SeraphFlight_PvP => _SeraphFlight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SeraphicVeil_PvPCreator = new(ActionFactory.Create29240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29240\"><strong>Seraphic Veil</strong></see> <i>PvP</i> (SCH) [29240] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SeraphicVeil_PvP => _SeraphicVeil_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Consolation_PvP_29241Creator = new(ActionFactory.Create29241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29241\"><strong>Consolation</strong></see> <i>PvP</i> (SCH) [29241] [Ability]\r\n /// <para>Restores the HP of all nearby party members.</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Consolation_PvP_29241 => _Consolation_PvP_29241Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(66));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50066\"><strong>Maim and Mend</strong></see> (ACN SMN SCH) [66]\r\n /// <para>Increases base action damage and HP restoration by 10%. Also increases base damage and HP restoration of your pet by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(69));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50069\"><strong>Maim and Mend II</strong></see> (ACN SMN SCH) [69]\r\n /// <para>Increases base action damage and HP restoration by 30%. Also increases base damage and HP restoration of your pet by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BroilMasteryIiTraitCreator = new(() => new BaseTrait(184));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50184\"><strong>Broil Mastery II</strong></see> (SCH) [184]\r\n /// <para>Upgrades Broil to Broil II and increases the potency of Ruin II to 180.</para>\r\n /// </summary>\r\n public IBaseTrait BroilMasteryIiTrait => _BroilMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BroilMasteryTraitCreator = new(() => new BaseTrait(214));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50214\"><strong>Broil Mastery</strong></see> (SCH) [214]\r\n /// <para>Upgrades Ruin to Broil and increases the potency of Ruin II to 160, and Art of War to 165.</para>\r\n /// </summary>\r\n public IBaseTrait BroilMasteryTrait => _BroilMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CorruptionMasteryIiTraitCreator = new(() => new BaseTrait(311));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50311\"><strong>Corruption Mastery II</strong></see> (SCH) [311]\r\n /// <para>Upgrades Bio II to Biolysis.</para>\r\n /// </summary>\r\n public IBaseTrait CorruptionMasteryIiTrait => _CorruptionMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BroilMasteryIiiTraitCreator = new(() => new BaseTrait(312));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50312\"><strong>Broil Mastery III</strong></see> (SCH) [312]\r\n /// <para>Upgrades Broil II to Broil III and increases the potency of Ruin II to 200.</para>\r\n /// </summary>\r\n public IBaseTrait BroilMasteryIiiTrait => _BroilMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedSacredSoilTraitCreator = new(() => new BaseTrait(313));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50313\"><strong>Enhanced Sacred Soil</strong></see> (SCH) [313]\r\n /// <para>Adds an additional effect to Sacred Soil that grants healing over time.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedSacredSoilTrait => _EnhancedSacredSoilTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CorruptionMasteryTraitCreator = new(() => new BaseTrait(324));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50324\"><strong>Corruption Mastery</strong></see> (SCH) [324]\r\n /// <para>Upgrades Bio to Bio II.</para>\r\n /// </summary>\r\n public IBaseTrait CorruptionMasteryTrait => _CorruptionMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _BroilMasteryIvTraitCreator = new(() => new BaseTrait(491));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50491\"><strong>Broil Mastery IV</strong></see> (SCH) [491]\r\n /// <para>Upgrades Broil III to Broil IV and increases the potency of Ruin II to 220.</para>\r\n /// </summary>\r\n public IBaseTrait BroilMasteryIvTrait => _BroilMasteryIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ArtOfWarMasteryTraitCreator = new(() => new BaseTrait(492));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50492\"><strong>Art of War Mastery</strong></see> (SCH) [492]\r\n /// <para>Upgrades Art of War to Art of War II.</para>\r\n /// </summary>\r\n public IBaseTrait ArtOfWarMasteryTrait => _ArtOfWarMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedHealingMagicTraitCreator = new(() => new BaseTrait(493));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50493\"><strong>Enhanced Healing Magic</strong></see> (SCH) [493]\r\n /// <para>Increases the healing potency of Physick to 450, Embrace to 180, and Seraphic Veil to 180.</para>\n /// <para>Increases the barrier potency of Adloquium to 180% the amount healed and Succor to 160% the amount healed.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedHealingMagicTrait => _EnhancedHealingMagicTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDeploymentTacticsTraitCreator = new(() => new BaseTrait(494));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50494\"><strong>Enhanced Deployment Tactics</strong></see> (SCH) [494]\r\n /// <para>Reduces Deployment Tactics recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDeploymentTacticsTrait => _EnhancedDeploymentTacticsTraitCreator.Value;\r\n#endregion\r\n}", + "NinjaRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/ninja\"><strong>Ninja</strong></see>\r\n/// </summary>\r\npublic abstract partial class NinjaRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.NIN, Job.ROG };\r\n static NINGauge JobGauge => Svc.Gauges.Get<NINGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningEdge_PvECreator = new(ActionFactory.Create2240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2240\"><strong>Spinning Edge</strong></see> <i>PvE</i> (ROG NIN) [2240] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction SpinningEdge_PvE => _SpinningEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShadeShift_PvECreator = new(ActionFactory.Create2241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2241\"><strong>Shade Shift</strong></see> <i>PvE</i> (ROG NIN) [2241] [Ability]\r\n /// <para>Create shadows that nullify damage up to 20% of maximum HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction ShadeShift_PvE => _ShadeShift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GustSlash_PvECreator = new(ActionFactory.Create2242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2242\"><strong>Gust Slash</strong></see> <i>PvE</i> (ROG NIN) [2242] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Spinning Edge</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction GustSlash_PvE => _GustSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hide_PvECreator = new(ActionFactory.Create2245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2245\"><strong>Hide</strong></see> <i>PvE</i> (ROG NIN) [2245] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on enemies 10 levels higher than your own, or certain enemies with special sight.</para>\n /// <para>Additional Effect: Restores 2 charges to all mudra</para>\n /// <para>The effect of Doton ends upon execution of Hide.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse of Hide.</para>\r\n /// </summary>\r\n public IBaseAction Hide_PvE => _Hide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Assassinate_PvECreator = new(ActionFactory.Create2246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2246\"><strong>Assassinate</strong></see> <i>PvE</i> (NIN) [2246] [Ability]\r\n /// <para>Delivers an attack with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction Assassinate_PvE => _Assassinate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThrowingDagger_PvECreator = new(ActionFactory.Create2247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2247\"><strong>Throwing Dagger</strong></see> <i>PvE</i> (ROG NIN) [2247] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 120.</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction ThrowingDagger_PvE => _ThrowingDagger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mug_PvECreator = new(ActionFactory.Create2248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2248\"><strong>Mug</strong></see> <i>PvE</i> (ROG NIN) [2248] [Ability]\r\n /// <para>Delivers an attack with a potency of 150.</para>\n /// <para>Additional Effect: Increases target's damage taken by 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Increases the chance of additional items being dropped by target if Mug is dealt before, or as, the finishing blow</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 40</para>\r\n /// </summary>\r\n public IBaseAction Mug_PvE => _Mug_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathBlossom_PvECreator = new(ActionFactory.Create2254);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2254\"><strong>Death Blossom</strong></see> <i>PvE</i> (ROG NIN) [2254] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction DeathBlossom_PvE => _DeathBlossom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeolianEdge_PvECreator = new(ActionFactory.Create2255);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2255\"><strong>Aeolian Edge</strong></see> <i>PvE</i> (ROG NIN) [2255] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's rear.</para>\n /// <para>Combo Action: Gust Slash</para>\n /// <para>Combo Potency: </para>\n /// <para>Rear Combo Potency: </para>\n /// <para>Combo Bonus: Increases Ninki Gauge by </para>\r\n /// </summary>\r\n public IBaseAction AeolianEdge_PvE => _AeolianEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrickAttack_PvECreator = new(ActionFactory.Create2258);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2258\"><strong>Trick Attack</strong></see> <i>PvE</i> (ROG NIN) [2258] [Ability]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>400 when executed from a target's rear.</para>\n /// <para>Additional Effect: Increases damage you deal target by 10%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Hidden.</para>\r\n /// </summary>\r\n public IBaseAction TrickAttack_PvE => _TrickAttack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ten_PvECreator = new(ActionFactory.Create2259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2259\"><strong>Ten</strong></see> <i>PvE</i> (NIN) [2259] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “heaven.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Ten_PvE => _Ten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ninjutsu_PvECreator = new(ActionFactory.Create2260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2260\"><strong>Ninjutsu</strong></see> <i>PvE</i> (NIN) [2260] [Ability]\r\n /// <para>Executes a specific ninjutsu action coinciding with the combination of mudra made immediately beforehand.</para>\n /// <para>If any other action is used before the mudra are combined and the ninjutsu executed, Ninjutsu will fail.</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\n /// <para>Restores 2 charges to all mudra when Hide is executed while outside of combat.</para>\r\n /// </summary>\r\n public IBaseAction Ninjutsu_PvE => _Ninjutsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chi_PvECreator = new(ActionFactory.Create2261);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2261\"><strong>Chi</strong></see> <i>PvE</i> (NIN) [2261] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “earth.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Chi_PvE => _Chi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shukuchi_PvECreator = new(ActionFactory.Create2262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2262\"><strong>Shukuchi</strong></see> <i>PvE</i> (NIN) [2262] [Ability]\r\n /// <para>Move quickly to the specified location.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Shukuchi_PvE => _Shukuchi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Jin_PvECreator = new(ActionFactory.Create2263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2263\"><strong>Jin</strong></see> <i>PvE</i> (NIN) [2263] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “man.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Jin_PvE => _Jin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kassatsu_PvECreator = new(ActionFactory.Create2264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2264\"><strong>Kassatsu</strong></see> <i>PvE</i> (NIN) [2264] [Ability]\r\n /// <para>Allows the execution of a single ninjutsu without consumption of mudra charges.</para>\n /// <para>Additional Effect: Increases damage for the next ninjutsu action by 30%</para>\n /// <para>Duration: 15s</para>\n /// <para>Recast timer of mudra is not affected by the execution of this action.</para>\r\n /// </summary>\r\n public IBaseAction Kassatsu_PvE => _Kassatsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvECreator = new(ActionFactory.Create2265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2265\"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [2265] [Ability]\r\n /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para>\n /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvE => _FumaShuriken_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Katon_PvECreator = new(ActionFactory.Create2266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2266\"><strong>Katon</strong></see> <i>PvE</i> (NIN) [2266] [Ability]\r\n /// <para>Deals fire damage with a potency of 350 to target and all enemies nearby it.</para>\n /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Katon_PvE => _Katon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Raiton_PvECreator = new(ActionFactory.Create2267);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2267\"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [2267] [Ability]\r\n /// <para>Deals lightning damage with a potency of 650.</para>\n /// <para>Additional Effect: Grants a stack of Raiju Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Stacks: 3</para>\n /// <para>Effect of Raiju Ready ends upon execution of any melee weaponskill.</para>\n /// <para>Mudra Combination: Ten→Chi or Jin→Chi</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Raiton_PvE => _Raiton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hyoton_PvECreator = new(ActionFactory.Create2268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2268\"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [2268] [Ability]\r\n /// <para>Deals ice damage with a potency of 350.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 15s</para>\n /// <para>Mudra Combination: Ten→Jin or Chi→Jin</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hyoton_PvE => _Hyoton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Huton_PvECreator = new(ActionFactory.Create2269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2269\"><strong>Huton</strong></see> <i>PvE</i> (NIN) [2269] [Ability]\r\n /// <para>Reduces weaponskill recast time and auto-attack delay by 15%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Mudra Combination: Jin→Chi→Ten or Chi→Jin→Ten</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Huton_PvE => _Huton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Doton_PvECreator = new(ActionFactory.Create2270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2270\"><strong>Doton</strong></see> <i>PvE</i> (NIN) [2270] [Ability]\r\n /// <para>Creates a patch of corrupted earth, dealing damage with a potency of 80 to any enemies who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Heavy +40%</para>\n /// <para>Mudra Combination: Ten→Jin→Chi or Jin→Ten→Chi</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Doton_PvE => _Doton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Suiton_PvECreator = new(ActionFactory.Create2271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2271\"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [2271] [Ability]\r\n /// <para>Deals water damage with a potency of 500.</para>\n /// <para>Additional Effect: Grants Suiton</para>\n /// <para>Duration: 20s</para>\n /// <para>Suiton Effect: Allows execution of actions which require the effect of Hidden, without being under that effect</para>\n /// <para>Mudra Combination: Ten→Chi→Jin or Chi→Ten→Jin</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Suiton_PvE => _Suiton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RabbitMedium_PvECreator = new(ActionFactory.Create2272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2272\"><strong>Rabbit Medium</strong></see> <i>PvE</i> (NIN) [2272] [Ability]\r\n /// <para>Thumpity thump thump, thumpity thump thump...</para>\r\n /// </summary>\r\n public IBaseAction RabbitMedium_PvE => _RabbitMedium_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmorCrush_PvECreator = new(ActionFactory.Create3563);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3563\"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [3563] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's flank.</para>\n /// <para>Combo Action: Gust Slash</para>\n /// <para>Combo Potency: </para>\n /// <para>Flank Combo Potency: </para>\n /// <para>Combo Bonus: Extends Huton duration by 30s to a maximum of 60s</para>\n /// <para>Combo Bonus: Increases Ninki Gauge by </para>\r\n /// </summary>\r\n public IBaseAction ArmorCrush_PvE => _ArmorCrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DreamWithinADream_PvECreator = new(ActionFactory.Create3566);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3566\"><strong>Dream Within a Dream</strong></see> <i>PvE</i> (NIN) [3566] [Ability]\r\n /// <para>Delivers a threefold attack, each hit with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction DreamWithinADream_PvE => _DreamWithinADream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HellfrogMedium_PvECreator = new(ActionFactory.Create7401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7401\"><strong>Hellfrog Medium</strong></see> <i>PvE</i> (NIN) [7401] [Ability]\r\n /// <para>Deals fire damage with a potency of 160 to target and all enemies nearby it.</para>\n /// <para>Ninki Gauge Cost: 50</para>\n /// <para>Shares a recast timer with Bhavacakra.</para>\r\n /// </summary>\r\n public IBaseAction HellfrogMedium_PvE => _HellfrogMedium_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bhavacakra_PvECreator = new(ActionFactory.Create7402);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7402\"><strong>Bhavacakra</strong></see> <i>PvE</i> (NIN) [7402] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 350.</para>\n /// <para>Meisui Bonus: Potency is increased to 500 when under the effect of Meisui</para>\n /// <para>Ninki Gauge Cost: 50</para>\n /// <para>Shares a recast timer with Hellfrog Medium.</para>\r\n /// </summary>\r\n public IBaseAction Bhavacakra_PvE => _Bhavacakra_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TenChiJin_PvECreator = new(ActionFactory.Create7403);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7403\"><strong>Ten Chi Jin</strong></see> <i>PvE</i> (NIN) [7403] [Ability]\r\n /// <para>Temporarily converts each of the three mudra into a ninjutsu action. Executing one of these actions will convert the remaining mudra into different ninjutsu actions until all three have been executed or the Ten Chi Jin effect expires.</para>\n /// <para>Duration: 6s</para>\n /// <para>Only ninjutsu available while active. The same ninjutsu cannot be executed twice.</para>\n /// <para>Cannot be executed while under the effect of Kassatsu. Effect ends upon moving.</para>\r\n /// </summary>\r\n public IBaseAction TenChiJin_PvE => _TenChiJin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create7542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7542\"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueNorth_PvECreator = new(ActionFactory.Create7546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7546\"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability]\r\n /// <para>Nullifies all action direction requirements.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction TrueNorth_PvE => _TrueNorth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Feint_PvECreator = new(ActionFactory.Create7549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7549\"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Feint_PvE => _Feint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegSweep_PvECreator = new(ActionFactory.Create7863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7863\"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction LegSweep_PvE => _LegSweep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheDuelist_PvECreator = new(ActionFactory.Create14478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14478\"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell]\r\n /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheDuelist_PvE => _WisdomOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HakkeMujinsatsu_PvECreator = new(ActionFactory.Create16488);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16488\"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [16488] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Death Blossom</para>\n /// <para>Combo Potency: 130</para>\n /// <para>Combo Bonus: Extends Huton duration by 10s to a maximum of 60s</para>\n /// <para>Combo Bonus: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction HakkeMujinsatsu_PvE => _HakkeMujinsatsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meisui_PvECreator = new(ActionFactory.Create16489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16489\"><strong>Meisui</strong></see> <i>PvE</i> (NIN) [16489] [Ability]\r\n /// <para>Dispels Suiton, increasing the Ninki Gauge by 50.</para>\n /// <para>Additional Effect: Increases the potency of Bhavacakra to 500</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Meisui_PvE => _Meisui_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GokaMekkyaku_PvECreator = new(ActionFactory.Create16491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16491\"><strong>Goka Mekkyaku</strong></see> <i>PvE</i> (NIN) [16491] [Ability]\r\n /// <para>Deals fire damage with a potency of 600 to target and all enemies nearby it.</para>\n /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para>\n /// <para>Can only be executed while under the effect of Kassatsu.</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction GokaMekkyaku_PvE => _GokaMekkyaku_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HyoshoRanryu_PvECreator = new(ActionFactory.Create16492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16492\"><strong>Hyosho Ranryu</strong></see> <i>PvE</i> (NIN) [16492] [Ability]\r\n /// <para>Deals ice damage with a potency of 1,300.</para>\n /// <para>Mudra Combination: Ten→Jin or Chi→Jin</para>\n /// <para>Can only be executed while under the effect of Kassatsu.</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HyoshoRanryu_PvE => _HyoshoRanryu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bunshin_PvECreator = new(ActionFactory.Create16493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16493\"><strong>Bunshin</strong></see> <i>PvE</i> (NIN) [16493] [Ability]\r\n /// <para>Grants 5 stacks of Bunshin, each stack allowing your shadow to attack enemies each time you execute a weaponskill. Shadow attack potency varies based on the attack executed, but is not affected by combo bonuses.</para>\n /// <para>Melee Attack Potency: 160</para>\n /// <para>Ranged Attack Potency: 160</para>\n /// <para>Area Attack Potency: 80</para>\n /// <para>Ninki Gauge increases by 5 each time your shadow lands an attack.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Phantom Kamaitachi Ready</para>\n /// <para>Duration: 45s</para>\n /// <para>Ninki Gauge Cost: 50</para>\n /// <para></para>\n /// <para>※Action changes to Phantom Kamaitachi upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Bunshin_PvE => _Bunshin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _SpinningEdge_PvE_17413Creator = new(ActionFactory.Create17413);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17413\"><strong>Spinning Edge</strong></see> <i>PvE</i> (NIN) [17413] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningEdge_PvE_17413 => _SpinningEdge_PvE_17413Creator.Value;\n private readonly Lazy<IBaseAction> _GustSlash_PvE_17414Creator = new(ActionFactory.Create17414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17414\"><strong>Gust Slash</strong></see> <i>PvE</i> (NIN) [17414] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GustSlash_PvE_17414 => _GustSlash_PvE_17414Creator.Value;\n private readonly Lazy<IBaseAction> _AeolianEdge_PvE_17415Creator = new(ActionFactory.Create17415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17415\"><strong>Aeolian Edge</strong></see> <i>PvE</i> (NIN) [17415] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AeolianEdge_PvE_17415 => _AeolianEdge_PvE_17415Creator.Value;\n private readonly Lazy<IBaseAction> _ArmorCrush_PvE_17417Creator = new(ActionFactory.Create17417);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17417\"><strong>Armor Crush</strong></see> <i>PvE</i> (NIN) [17417] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArmorCrush_PvE_17417 => _ArmorCrush_PvE_17417Creator.Value;\n private readonly Lazy<IBaseAction> _ThrowingDagger_PvE_17418Creator = new(ActionFactory.Create17418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17418\"><strong>Throwing Dagger</strong></see> <i>PvE</i> (NIN) [17418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThrowingDagger_PvE_17418 => _ThrowingDagger_PvE_17418Creator.Value;\n private readonly Lazy<IBaseAction> _DeathBlossom_PvE_17419Creator = new(ActionFactory.Create17419);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17419\"><strong>Death Blossom</strong></see> <i>PvE</i> (NIN) [17419] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DeathBlossom_PvE_17419 => _DeathBlossom_PvE_17419Creator.Value;\n private readonly Lazy<IBaseAction> _HakkeMujinsatsu_PvE_17420Creator = new(ActionFactory.Create17420);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17420\"><strong>Hakke Mujinsatsu</strong></see> <i>PvE</i> (NIN) [17420] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction HakkeMujinsatsu_PvE_17420 => _HakkeMujinsatsu_PvE_17420Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _Ten_PvE_18805Creator = new(ActionFactory.Create18805);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18805\"><strong>Ten</strong></see> <i>PvE</i> (NIN) [18805] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “heaven.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Ten_PvE_18805 => _Ten_PvE_18805Creator.Value;\n private readonly Lazy<IBaseAction> _Chi_PvE_18806Creator = new(ActionFactory.Create18806);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18806\"><strong>Chi</strong></see> <i>PvE</i> (NIN) [18806] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “earth.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Chi_PvE_18806 => _Chi_PvE_18806Creator.Value;\n private readonly Lazy<IBaseAction> _Jin_PvE_18807Creator = new(ActionFactory.Create18807);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18807\"><strong>Jin</strong></see> <i>PvE</i> (NIN) [18807] [Ability]\r\n /// <para>Make the ritual mudra hand gesture for “man.”</para>\n /// <para>Duration: 6s</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para>Conversely, execution of weaponskills triggers the cooldown of this action.</para>\r\n /// </summary>\r\n public IBaseAction Jin_PvE_18807 => _Jin_PvE_18807Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvE_18873Creator = new(ActionFactory.Create18873);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18873\"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18873] [Ability]\r\n /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para>\n /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvE_18873 => _FumaShuriken_PvE_18873Creator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvE_18874Creator = new(ActionFactory.Create18874);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18874\"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18874] [Ability]\r\n /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para>\n /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvE_18874 => _FumaShuriken_PvE_18874Creator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvE_18875Creator = new(ActionFactory.Create18875);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18875\"><strong>Fuma Shuriken</strong></see> <i>PvE</i> (NIN) [18875] [Ability]\r\n /// <para>Delivers a ranged ninjutsu attack with a potency of 450.</para>\n /// <para>Mudra Combination: Any one of the Ten, Chi, or Jin mudra</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvE_18875 => _FumaShuriken_PvE_18875Creator.Value;\n private readonly Lazy<IBaseAction> _Katon_PvE_18876Creator = new(ActionFactory.Create18876);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18876\"><strong>Katon</strong></see> <i>PvE</i> (NIN) [18876] [Ability]\r\n /// <para>Delivers fire damage with a potency of 350 to target and all enemies nearby it.</para>\n /// <para>Mudra Combination: Chi→Ten or Jin→Ten</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Katon_PvE_18876 => _Katon_PvE_18876Creator.Value;\n private readonly Lazy<IBaseAction> _Raiton_PvE_18877Creator = new(ActionFactory.Create18877);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18877\"><strong>Raiton</strong></see> <i>PvE</i> (NIN) [18877] [Ability]\r\n /// <para>Deals lightning damage with a potency of 650.</para>\n /// <para>Additional Effect: Grants a stack of Raiju Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Stacks: 3</para>\n /// <para>Effect of Raiju Ready ends upon execution of any melee weaponskill.</para>\n /// <para>Mudra Combination: Ten→Chi or Jin→Chi</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Raiton_PvE_18877 => _Raiton_PvE_18877Creator.Value;\n private readonly Lazy<IBaseAction> _Hyoton_PvE_18878Creator = new(ActionFactory.Create18878);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18878\"><strong>Hyoton</strong></see> <i>PvE</i> (NIN) [18878] [Ability]\r\n /// <para>Delivers ice damage with a potency of 350.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 15s</para>\n /// <para>Mudra Combination: Ten→Jin or Chi→Jin</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hyoton_PvE_18878 => _Hyoton_PvE_18878Creator.Value;\n private readonly Lazy<IBaseAction> _Huton_PvE_18879Creator = new(ActionFactory.Create18879);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18879\"><strong>Huton</strong></see> <i>PvE</i> (NIN) [18879] [Ability]\r\n /// <para>Reduces weaponskill recast time and auto-attack delay by 15%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Mudra Combination: Jin→Chi→Ten or Chi→Jin→Ten</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Huton_PvE_18879 => _Huton_PvE_18879Creator.Value;\n private readonly Lazy<IBaseAction> _Doton_PvE_18880Creator = new(ActionFactory.Create18880);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18880\"><strong>Doton</strong></see> <i>PvE</i> (NIN) [18880] [Ability]\r\n /// <para>Creates a patch of corrupted earth, dealing damage with a potency of 80 to any enemies who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Heavy +40%</para>\n /// <para>Mudra Combination: Ten→Jin→Chi or Jin→Ten→Chi</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Doton_PvE_18880 => _Doton_PvE_18880Creator.Value;\n private readonly Lazy<IBaseAction> _Suiton_PvE_18881Creator = new(ActionFactory.Create18881);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18881\"><strong>Suiton</strong></see> <i>PvE</i> (NIN) [18881] [Ability]\r\n /// <para>Deals water damage with a potency of 500.</para>\n /// <para>Additional Effect: Grants Suiton</para>\n /// <para>Duration: 20s</para>\n /// <para>Suiton Effect: Allows execution of actions which require the effect of Hidden, without being under that effect</para>\n /// <para>Mudra Combination: Ten→Chi→Jin or Chi→Ten→Jin</para>\n /// <para>Triggers the cooldown of weaponskills, mudra, and Ninjutsu upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Suiton_PvE_18881 => _Suiton_PvE_18881Creator.Value;\n private readonly Lazy<IBaseAction> _ThrowingDagger_PvPCreator = new(ActionFactory.Create18923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18923\"><strong>Throwing Dagger</strong></see> <i>PvP</i> (NIN) [18923] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThrowingDagger_PvP => _ThrowingDagger_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DeathBlossom_PvPCreator = new(ActionFactory.Create18924);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18924\"><strong>Death Blossom</strong></see> <i>PvP</i> (NIN) [18924] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DeathBlossom_PvP => _DeathBlossom_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HakkeMujinsatsu_PvPCreator = new(ActionFactory.Create18925);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18925\"><strong>Hakke Mujinsatsu</strong></see> <i>PvP</i> (NIN) [18925] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction HakkeMujinsatsu_PvP => _HakkeMujinsatsu_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDuelist_PvECreator = new(ActionFactory.Create22348);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22348\"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDuelist_PvE => _PureEssenceOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRendArmor_PvECreator = new(ActionFactory.Create22353);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22353\"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 100.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostRendArmor_PvE => _LostRendArmor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhantomKamaitachi_PvECreator = new(ActionFactory.Create25774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25774\"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25774] [Weaponskill]\r\n /// <para>Your shadow deals wind damage to target and all enemies within 5 yalms with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Extends Huton duration by 10s to a maximum of 60s</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 10</para>\n /// <para>Can only be executed while under the effect of Phantom Kamaitachi Ready.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PhantomKamaitachi_PvE => _PhantomKamaitachi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhantomKamaitachi_PvE_25775Creator = new(ActionFactory.Create25775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25775\"><strong>Phantom Kamaitachi</strong></see> <i>PvE</i> (NIN) [25775] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PhantomKamaitachi_PvE_25775 => _PhantomKamaitachi_PvE_25775Creator.Value;\n private readonly Lazy<IBaseAction> _HollowNozuchi_PvECreator = new(ActionFactory.Create25776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25776\"><strong>Hollow Nozuchi</strong></see> <i>PvE</i> (NIN) [25776] [Ability]\r\n /// <para>All enemies standing in the corrupted earth of Doton take additional earth damage with a potency of 50.</para>\n /// <para>Requires Hakke Mujinsatsu to be executed as a combo action or upon executing Katon, Goka Mekkyaku, or Phantom Kamaitachi.</para>\n /// <para>Effect can only be triggered while Doton is active.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HollowNozuchi_PvE => _HollowNozuchi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ForkedRaiju_PvECreator = new(ActionFactory.Create25777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25777\"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25777] [Weaponskill]\r\n /// <para>Rushes target and delivers a lightning attack with a potency of 560.</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\n /// <para>Can only be executed while under the effect of Raiju Ready.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction ForkedRaiju_PvE => _ForkedRaiju_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FleetingRaiju_PvECreator = new(ActionFactory.Create25778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25778\"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25778] [Weaponskill]\r\n /// <para>Deals lightning damage with a potency of 560.</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\n /// <para>Can only be executed while under the effect of Raiju Ready.</para>\r\n /// </summary>\r\n public IBaseAction FleetingRaiju_PvE => _FleetingRaiju_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Huraijin_PvECreator = new(ActionFactory.Create25876);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25876\"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25876] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Additional Effect: Grants Huton</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Increases Ninki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction Huraijin_PvE => _Huraijin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Huraijin_PvE_25877Creator = new(ActionFactory.Create25877);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25877\"><strong>Huraijin</strong></see> <i>PvE</i> (NIN) [25877] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Huraijin_PvE_25877 => _Huraijin_PvE_25877Creator.Value;\n private readonly Lazy<IBaseAction> _ForkedRaiju_PvE_25878Creator = new(ActionFactory.Create25878);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25878\"><strong>Forked Raiju</strong></see> <i>PvE</i> (NIN) [25878] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ForkedRaiju_PvE_25878 => _ForkedRaiju_PvE_25878Creator.Value;\n private readonly Lazy<IBaseAction> _FleetingRaiju_PvE_25879Creator = new(ActionFactory.Create25879);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25879\"><strong>Fleeting Raiju</strong></see> <i>PvE</i> (NIN) [25879] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FleetingRaiju_PvE_25879 => _FleetingRaiju_PvE_25879Creator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningEdge_PvPCreator = new(ActionFactory.Create29500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29500\"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29500] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SpinningEdge_PvP => _SpinningEdge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _GustSlash_PvPCreator = new(ActionFactory.Create29501);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29501\"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29501] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Spinning Edge</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction GustSlash_PvP => _GustSlash_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AeolianEdge_PvPCreator = new(ActionFactory.Create29502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29502\"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29502] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Gust Slash</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AeolianEdge_PvP => _AeolianEdge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Assassinate_PvPCreator = new(ActionFactory.Create29503);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29503\"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29503] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 12,000.</para>\n /// <para>Can only be executed while under the effect of Hidden.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Assassinate_PvP => _Assassinate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _GokaMekkyaku_PvPCreator = new(ActionFactory.Create29504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29504\"><strong>Goka Mekkyaku</strong></see> <i>PvP</i> (NIN) [29504] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 4,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 4,000</para>\n /// <para>Duration: 12s</para>\n /// <para>Can only be executed while under the effect of Three Mudra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction GokaMekkyaku_PvP => _GokaMekkyaku_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvPCreator = new(ActionFactory.Create29505);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29505\"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29505] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 6,000.</para>\n /// <para>Maximum Charges: 3</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Hyosho Ranryu while under the effect of Three Mudra.</para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvP => _FumaShuriken_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HyoshoRanryu_PvPCreator = new(ActionFactory.Create29506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29506\"><strong>Hyosho Ranryu</strong></see> <i>PvP</i> (NIN) [29506] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 16,000.</para>\n /// <para>Can only be executed while under the effect of Three Mudra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HyoshoRanryu_PvP => _HyoshoRanryu_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ThreeMudra_PvPCreator = new(ActionFactory.Create29507);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29507\"><strong>Three Mudra</strong></see> <i>PvP</i> (NIN) [29507] [Ability]\r\n /// <para>Grants Three Mudra, allowing for immediate execution of any ninjutsu action. However, the same ninjutsu action cannot be executed consecutively.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para></para>\n /// <para>※Action changes to Meisui while under the effect of Three Mudra.</para>\n /// <para>※All actions except Seiton Tenchu will change to their respective ninjutsu actions while under the effect of Three Mudra.</para>\r\n /// </summary>\r\n public IBaseAction ThreeMudra_PvP => _ThreeMudra_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Meisui_PvPCreator = new(ActionFactory.Create29508);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29508\"><strong>Meisui</strong></see> <i>PvP</i> (NIN) [29508] [Spell]\r\n /// <para>Restores own or target party member's HP.</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Additional Effect: Grants healing over time effect to target</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of Three Mudra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Meisui_PvP => _Meisui_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mug_PvPCreator = new(ActionFactory.Create29509);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29509\"><strong>Mug</strong></see> <i>PvP</i> (NIN) [29509] [Ability]\r\n /// <para>Delivers an attack with a potency of 2,000.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Reduces the recast time of Fuma Shuriken by 10 seconds</para>\n /// <para></para>\n /// <para>※Action changes to Goka Mekkyaku while under the effect of Three Mudra.</para>\r\n /// </summary>\r\n public IBaseAction Mug_PvP => _Mug_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ForkedRaiju_PvPCreator = new(ActionFactory.Create29510);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29510\"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29510] [Weaponskill]\r\n /// <para>Rushes target and delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\n /// <para>Additional Effect: Grants Fleeting Raiju Ready</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Aeolian Edge Combo changes to Fleeting Raiju while under the effect of Fleeting Raiju Ready.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ForkedRaiju_PvP => _ForkedRaiju_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bunshin_PvPCreator = new(ActionFactory.Create29511);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29511\"><strong>Bunshin</strong></see> <i>PvP</i> (NIN) [29511] [Ability]\r\n /// <para>For up to five attacks, your shadow becomes animate, attacking enemies each time you execute a weaponskill.</para>\n /// <para>Shadow attack potency will match that of your weaponskills, but will be halved when executing Fuma Shuriken or Assassinate.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Creates a shadow that absorbs damage equivalent to a heal of 8,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Huton while under the effect of Three Mudra.</para>\r\n /// </summary>\r\n public IBaseAction Bunshin_PvP => _Bunshin_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Huton_PvPCreator = new(ActionFactory.Create29512);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29512\"><strong>Huton</strong></see> <i>PvP</i> (NIN) [29512] [Spell]\r\n /// <para>Grants Huton, creating a barrier that absorbs damage equivalent to a heal of 16,000 potency, and increasing movement speed by 25%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Movement speed returns to normal when barrier is completely absorbed.</para>\n /// <para>Can only be executed while under the effect of Three Mudra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Huton_PvP => _Huton_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Shukuchi_PvPCreator = new(ActionFactory.Create29513);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29513\"><strong>Shukuchi</strong></see> <i>PvP</i> (NIN) [29513] [Ability]\r\n /// <para>Move quickly to the specified location.</para>\n /// <para>Additional Effect: Grants Hidden</para>\n /// <para>Hidden Effect: Blend in with your surroundings, making it impossible for enemies to see or target you</para>\n /// <para>Duration: 4s</para>\n /// <para>Effect ends upon use of any action or upon taking damage from an enemy.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Action changes to Doton while under the effect of Three Mudra.</para>\n /// <para>※Aeolian Edge Combo changes to Assassinate while under the effect of Hidden.</para>\r\n /// </summary>\r\n public IBaseAction Shukuchi_PvP => _Shukuchi_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Doton_PvPCreator = new(ActionFactory.Create29514);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29514\"><strong>Doton</strong></see> <i>PvP</i> (NIN) [29514] [Spell]\r\n /// <para>Creates a patch of corrupted earth under your feet, dealing damage with a potency of 3,000 to any enemies who enter.</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Three Mudra.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Doton_PvP => _Doton_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SeitonTenchu_PvPCreator = new(ActionFactory.Create29515);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29515\"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29515] [Limit Break]\r\n /// <para>Rushes target and delivers an attack with a potency of 12,000, incapacitating foes whose HP is below 50%.</para>\n /// <para>Additional Effect: Afflicts target with Death Link</para>\n /// <para>Duration: 4s</para>\n /// <para>Defeating an enemy with this action, or one under the effect of Death Link, will grant Unsealed Seiton Tenchu, allowing a second execution of this action.</para>\n /// <para>Duration: 8s</para>\n /// <para>Effect duration is reduced by 1s each time it is applied to a target with a minimum duration of 4s.</para>\n /// <para>Effect cannot be applied to players riding machina or non-player combatants.</para>\n /// <para>Can only be executed when the limit gauge is full or while under the effect of Unsealed Seiton Tenchu.</para>\n /// <para>Gauge Charge Time: 105s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction SeitonTenchu_PvP => _SeitonTenchu_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SeitonTenchu_PvP_29516Creator = new(ActionFactory.Create29516);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29516\"><strong>Seiton Tenchu</strong></see> <i>PvP</i> (NIN) [29516] [Limit Break]\r\n /// <para>Rushes target and delivers an attack with a potency of 12,000, incapacitating foes whose HP is below 50%.</para>\n /// <para>Additional Effect: Afflicts target with Death Link</para>\n /// <para>Duration: 4s</para>\n /// <para>Defeating an enemy with this action, or one under the effect of Death Link, will grant Unsealed Seiton Tenchu, allowing a second execution of this action.</para>\n /// <para>Duration: 8s</para>\n /// <para>Effect duration is reduced by 1s each time it is applied to a target with a minimum duration of 4s.</para>\n /// <para>Effect cannot be applied to players riding machina or non-player combatants.</para>\n /// <para>Can only be executed when the limit gauge is full or while under the effect of Unsealed Seiton Tenchu.</para>\n /// <para>Gauge Charge Time: 105s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction SeitonTenchu_PvP_29516 => _SeitonTenchu_PvP_29516Creator.Value;\n private readonly Lazy<IBaseAction> _SpinningEdge_PvP_29517Creator = new(ActionFactory.Create29517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29517\"><strong>Spinning Edge</strong></see> <i>PvP</i> (NIN) [29517] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningEdge_PvP_29517 => _SpinningEdge_PvP_29517Creator.Value;\n private readonly Lazy<IBaseAction> _GustSlash_PvP_29518Creator = new(ActionFactory.Create29518);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29518\"><strong>Gust Slash</strong></see> <i>PvP</i> (NIN) [29518] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GustSlash_PvP_29518 => _GustSlash_PvP_29518Creator.Value;\n private readonly Lazy<IBaseAction> _AeolianEdge_PvP_29519Creator = new(ActionFactory.Create29519);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29519\"><strong>Aeolian Edge</strong></see> <i>PvP</i> (NIN) [29519] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AeolianEdge_PvP_29519 => _AeolianEdge_PvP_29519Creator.Value;\n private readonly Lazy<IBaseAction> _Assassinate_PvP_29520Creator = new(ActionFactory.Create29520);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29520\"><strong>Assassinate</strong></see> <i>PvP</i> (NIN) [29520] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Assassinate_PvP_29520 => _Assassinate_PvP_29520Creator.Value;\n private readonly Lazy<IBaseAction> _FumaShuriken_PvP_29521Creator = new(ActionFactory.Create29521);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29521\"><strong>Fuma Shuriken</strong></see> <i>PvP</i> (NIN) [29521] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FumaShuriken_PvP_29521 => _FumaShuriken_PvP_29521Creator.Value;\n private readonly Lazy<IBaseAction> _ForkedRaiju_PvP_29522Creator = new(ActionFactory.Create29522);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29522\"><strong>Forked Raiju</strong></see> <i>PvP</i> (NIN) [29522] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ForkedRaiju_PvP_29522 => _ForkedRaiju_PvP_29522Creator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FleetingRaiju_PvPCreator = new(ActionFactory.Create29707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29707\"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29707] [Weaponskill]\r\n /// <para>Rushes target and delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\n /// <para>Can only be executed while under the effect of Fleeting Raiju Ready.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FleetingRaiju_PvP => _FleetingRaiju_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FleetingRaiju_PvP_29708Creator = new(ActionFactory.Create29708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29708\"><strong>Fleeting Raiju</strong></see> <i>PvP</i> (NIN) [29708] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FleetingRaiju_PvP_29708 => _FleetingRaiju_PvP_29708Creator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvE_33013Creator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE_33013 => _Bloodbath_PvE_33013Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _AllFoursTraitCreator = new(() => new BaseTrait(90));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50090\"><strong>All Fours</strong></see> (ROG NIN) [90]\r\n /// <para>Reduces damage taken when falling.</para>\r\n /// </summary>\r\n public IBaseTrait AllFoursTrait => _AllFoursTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FleetOfFootTraitCreator = new(() => new BaseTrait(93));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50093\"><strong>Fleet of Foot</strong></see> (ROG NIN) [93]\r\n /// <para>Increases movement speed.</para>\r\n /// </summary>\r\n public IBaseTrait FleetOfFootTrait => _FleetOfFootTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ShukihoTraitCreator = new(() => new BaseTrait(165));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50165\"><strong>Shukiho</strong></see> (NIN) [165]\r\n /// <para>Increases Ninki Gauge by 5 upon successfully landing certain weaponskills or completing certain combos.</para>\r\n /// </summary>\r\n public IBaseTrait ShukihoTrait => _ShukihoTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedShukuchiTraitCreator = new(() => new BaseTrait(166));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50166\"><strong>Enhanced Shukuchi</strong></see> (NIN) [166]\r\n /// <para>Resets the recast timer for Shukuchi upon executing Katon, Raiton, or Hyoton on most targets.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedShukuchiTrait => _EnhancedShukuchiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedMugTraitCreator = new(() => new BaseTrait(167));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50167\"><strong>Enhanced Mug</strong></see> (NIN) [167]\r\n /// <para>Increases Ninki Gauge by 40 upon successfully landing Mug.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedMugTrait => _EnhancedMugTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedKassatsuTraitCreator = new(() => new BaseTrait(250));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50250\"><strong>Enhanced Kassatsu</strong></see> (NIN) [250]\r\n /// <para>Upgrades Katon and Hyoton to Goka Mekkyaku and Hyosho Ranryu while under the effect of Kassatsu.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedKassatsuTrait => _EnhancedKassatsuTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedShukuchiIiTraitCreator = new(() => new BaseTrait(279));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50279\"><strong>Enhanced Shukuchi II</strong></see> (NIN) [279]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Shukuchi.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedShukuchiIiTrait => _EnhancedShukuchiIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ShukihoIiTraitCreator = new(() => new BaseTrait(280));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50280\"><strong>Shukiho II</strong></see> (NIN) [280]\r\n /// <para>Increases Ninki Gauge by 10 upon successfully completing a combo with Aeolian Edge or Armor Crush.</para>\r\n /// </summary>\r\n public IBaseTrait ShukihoIiTrait => _ShukihoIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ShukihoIiiTraitCreator = new(() => new BaseTrait(439));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50439\"><strong>Shukiho III</strong></see> (NIN) [439]\r\n /// <para>Increases Ninki Gauge by 15 upon successfully completing a combo with Aeolian Edge or Armor Crush.</para>\r\n /// </summary>\r\n public IBaseTrait ShukihoIiiTrait => _ShukihoIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedMeisuiTraitCreator = new(() => new BaseTrait(440));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50440\"><strong>Enhanced Meisui</strong></see> (NIN) [440]\r\n /// <para>Increases the potency of Bhavacakra to 500 while under the effect of Meisui.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedMeisuiTrait => _EnhancedMeisuiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedRaitonTraitCreator = new(() => new BaseTrait(441));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50441\"><strong>Enhanced Raiton</strong></see> (NIN) [441]\r\n /// <para>Grants a stack of Raiju Ready upon executing Raiton.</para>\n /// <para>Maximum Stacks: 3</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect of Raiju Ready ends upon execution of any melee weaponskill.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedRaitonTrait => _EnhancedRaitonTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AdeptAssassinationTraitCreator = new(() => new BaseTrait(515));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50515\"><strong>Adept Assassination</strong></see> (NIN) [515]\r\n /// <para>Upgrades Assassinate to Dream Within a Dream.</para>\r\n /// </summary>\r\n public IBaseTrait AdeptAssassinationTrait => _AdeptAssassinationTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(516));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50516\"><strong>Melee Mastery</strong></see> (NIN) [516]\r\n /// <para>Increases the potency of Gust Slash to 120, Aeolian Edge to 140, and Armor Crush to 140.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryIiTraitCreator = new(() => new BaseTrait(522));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50522\"><strong>Melee Mastery II</strong></see> (NIN) [522]\r\n /// <para>Increases the potency of Spinning Edge to 220 and Gust Slash to 160.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryIiTrait => _MeleeMasteryIiTraitCreator.Value;\r\n#endregion\r\n}", + "MachinistRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/machinist\"><strong>Machinist</strong></see>\r\n/// </summary>\r\npublic abstract partial class MachinistRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.MCH };\r\n static MCHGauge JobGauge => Svc.Gauges.Get<MCHGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RookAutoturret_PvECreator = new(ActionFactory.Create2864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2864\"><strong>Rook Autoturret</strong></see> <i>PvE</i> (MCH) [2864] [Ability]\r\n /// <para>Deploys a single-target battle turret which attacks using Volley Fire, dealing damage with a potency of 35.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 75.</para>\n /// <para>Battery Gauge Cost: 50</para>\n /// <para>Duration: 9s</para>\n /// <para>Consumes Battery Gauge upon execution.</para>\n /// <para>Shuts down when time expires or upon execution of Rook Overdrive.</para>\n /// <para>Shares a recast timer with Rook Overdrive.</para>\r\n /// </summary>\r\n public IBaseAction RookAutoturret_PvE => _RookAutoturret_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SplitShot_PvECreator = new(ActionFactory.Create2866);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2866\"><strong>Split Shot</strong></see> <i>PvE</i> (MCH) [2866] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 140.</para>\n /// <para>Additional Effect: Increases Heat Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction SplitShot_PvE => _SplitShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SlugShot_PvECreator = new(ActionFactory.Create2868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2868\"><strong>Slug Shot</strong></see> <i>PvE</i> (MCH) [2868] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Split Shot or Heated Split Shot</para>\n /// <para>Combo Potency: 210</para>\n /// <para>Combo Bonus: Increases Heat Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction SlugShot_PvE => _SlugShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpreadShot_PvECreator = new(ActionFactory.Create2870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2870\"><strong>Spread Shot</strong></see> <i>PvE</i> (MCH) [2870] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 140 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Increases Heat Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction SpreadShot_PvE => _SpreadShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HotShot_PvECreator = new(ActionFactory.Create2872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2872\"><strong>Hot Shot</strong></see> <i>PvE</i> (MCH) [2872] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 240.</para>\n /// <para>Additional Effect: Increases Battery Gauge by 20</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HotShot_PvE => _HotShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CleanShot_PvECreator = new(ActionFactory.Create2873);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2873\"><strong>Clean Shot</strong></see> <i>PvE</i> (MCH) [2873] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Slug Shot or Heated Slug Shot</para>\n /// <para>Combo Potency: 270</para>\n /// <para>Combo Bonus: Increases Heat Gauge by 5</para>\n /// <para>Combo Bonus: Increases Battery Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction CleanShot_PvE => _CleanShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GaussRound_PvECreator = new(ActionFactory.Create2874);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2874\"><strong>Gauss Round</strong></see> <i>PvE</i> (MCH) [2874] [Ability]\r\n /// <para>Delivers an attack with a potency of 130.</para>\n /// <para>Maximum Charges: </para>\r\n /// </summary>\r\n public IBaseAction GaussRound_PvE => _GaussRound_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reassemble_PvECreator = new(ActionFactory.Create2876);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2876\"><strong>Reassemble</strong></see> <i>PvE</i> (MCH) [2876] [Ability]\r\n /// <para>Guarantees that next weaponskill is a critical direct hit.</para>\n /// <para>Duration: 5s</para>\n /// <para>Increases damage dealt when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>This action does not affect damage over time effects.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Reassemble_PvE => _Reassemble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wildfire_PvECreator = new(ActionFactory.Create2878);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2878\"><strong>Wildfire</strong></see> <i>PvE</i> (MCH) [2878] [Ability]\r\n /// <para>Covers target's body in a slow-burning pitch. Action is changed to Detonator for the duration of the effect.</para>\n /// <para>Deals damage when time expires or upon executing Detonator.</para>\n /// <para>Potency is increased by for each of your own weaponskills you land prior to the end of the effect.</para>\n /// <para>Can be stacked up to 6 times.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Wildfire_PvE => _Wildfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dismantle_PvECreator = new(ActionFactory.Create2887);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2887\"><strong>Dismantle</strong></see> <i>PvE</i> (MCH) [2887] [Ability]\r\n /// <para>Lowers target's damage dealt by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Dismantle_PvE => _Dismantle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ricochet_PvECreator = new(ActionFactory.Create2890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2890\"><strong>Ricochet</strong></see> <i>PvE</i> (MCH) [2890] [Ability]\r\n /// <para>Deals damage to all nearby enemies with a potency of 130 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Maximum Charges: </para>\r\n /// </summary>\r\n public IBaseAction Ricochet_PvE => _Ricochet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeatBlast_PvECreator = new(ActionFactory.Create7410);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7410\"><strong>Heat Blast</strong></see> <i>PvE</i> (MCH) [7410] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Additional Effect: Reduces the recast time of both Gauss Round and Ricochet by 15s</para>\n /// <para>Can only be executed when firearm is Overheated.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction HeatBlast_PvE => _HeatBlast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeatedSplitShot_PvECreator = new(ActionFactory.Create7411);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7411\"><strong>Heated Split Shot</strong></see> <i>PvE</i> (MCH) [7411] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Increases Heat Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction HeatedSplitShot_PvE => _HeatedSplitShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeatedSlugShot_PvECreator = new(ActionFactory.Create7412);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7412\"><strong>Heated Slug Shot</strong></see> <i>PvE</i> (MCH) [7412] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Heated Split Shot</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Heat Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction HeatedSlugShot_PvE => _HeatedSlugShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeatedCleanShot_PvECreator = new(ActionFactory.Create7413);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7413\"><strong>Heated Clean Shot</strong></see> <i>PvE</i> (MCH) [7413] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Heated Slug Shot</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Heat Gauge by 5</para>\n /// <para>Combo Bonus: Increases Battery Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction HeatedCleanShot_PvE => _HeatedCleanShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BarrelStabilizer_PvECreator = new(ActionFactory.Create7414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7414\"><strong>Barrel Stabilizer</strong></see> <i>PvE</i> (MCH) [7414] [Ability]\r\n /// <para>Increases Heat Gauge by 50.</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction BarrelStabilizer_PvE => _BarrelStabilizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RookOverdrive_PvECreator = new(ActionFactory.Create7415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7415\"><strong>Rook Overdrive</strong></see> <i>PvE</i> (MCH) [7415] [Ability]\r\n /// <para>Orders the rook autoturret to use Rook Overload.</para>\n /// <para>Rook Overload Potency: 160</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 320.</para>\n /// <para>The rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.</para>\n /// <para>Shares a recast timer with Rook Autoturret.</para>\r\n /// </summary>\r\n public IBaseAction RookOverdrive_PvE => _RookOverdrive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RookOverload_PvECreator = new(ActionFactory.Create7416);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7416\"><strong>Rook Overload</strong></see> <i>PvE</i> (MCH) [7416] [Ability]\r\n /// <para>Delivers an attack with a potency of 160.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 320.</para>\n /// <para>The rook autoturret shuts down after execution. If this action is not used manually while the rook autoturret is active, it will be triggered automatically immediately before shutting down.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RookOverload_PvE => _RookOverload_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Flamethrower_PvECreator = new(ActionFactory.Create7418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7418\"><strong>Flamethrower</strong></see> <i>PvE</i> (MCH) [7418] [Ability]\r\n /// <para>Delivers damage over time to all enemies in a cone before you.</para>\n /// <para>Potency: 80</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction Flamethrower_PvE => _Flamethrower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeadGraze_PvECreator = new(ActionFactory.Create7551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7551\"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7551] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction HeadGraze_PvE => _HeadGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FootGraze_PvECreator = new(ActionFactory.Create7553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7553\"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7553] [Ability]\r\n /// <para>Binds target.</para>\n /// <para>Duration: 10s</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Target unbound if damage taken.</para>\r\n /// </summary>\r\n public IBaseAction FootGraze_PvE => _FootGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegGraze_PvECreator = new(ActionFactory.Create7554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7554\"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7554] [Ability]\r\n /// <para>Afflicts target with Heavy +40%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LegGraze_PvE => _LegGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Peloton_PvECreator = new(ActionFactory.Create7557);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7557\"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7557] [Ability]\r\n /// <para>Increases movement speed of self and nearby party members.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends when enmity is generated. Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Peloton_PvE => _Peloton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EagleEyeShotL_PvECreator = new(ActionFactory.Create13007);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13007\"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) [13007] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 80. Potency increases up to 1,000% the lower the target's HP.</para>\n /// <para>Generates significant enmity upon use.</para>\r\n /// </summary>\r\n public IBaseAction EagleEyeShotL_PvE => _EagleEyeShotL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheFiendhunter_PvECreator = new(ActionFactory.Create14479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14479\"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [14479] [Spell]\r\n /// <para>Increases physical damage dealt by 25% and evasion by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheFiendhunter_PvE => _WisdomOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoCrossbow_PvECreator = new(ActionFactory.Create16497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16497\"><strong>Auto Crossbow</strong></see> <i>PvE</i> (MCH) [16497] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 140 to all enemies in a cone before you.</para>\n /// <para>Can only be executed when firearm is Overheated.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction AutoCrossbow_PvE => _AutoCrossbow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drill_PvECreator = new(ActionFactory.Create16498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16498\"><strong>Drill</strong></see> <i>PvE</i> (MCH) [16498] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600.</para>\n /// <para>Shares a recast timer with Bioblaster.This weaponskill does not share a recast timer with any other actions.This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Drill_PvE => _Drill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bioblaster_PvECreator = new(ActionFactory.Create16499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16499\"><strong>Bioblaster</strong></see> <i>PvE</i> (MCH) [16499] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 50 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 15s</para>\n /// <para>Shares a recast timer with Drill.</para>\r\n /// </summary>\r\n public IBaseAction Bioblaster_PvE => _Bioblaster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AirAnchor_PvECreator = new(ActionFactory.Create16500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16500\"><strong>Air Anchor</strong></see> <i>PvE</i> (MCH) [16500] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600.</para>\n /// <para>Additional Effect: Increases Battery Gauge by 20</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AirAnchor_PvE => _AirAnchor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutomatonQueen_PvECreator = new(ActionFactory.Create16501);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16501\"><strong>Automaton Queen</strong></see> <i>PvE</i> (MCH) [16501] [Ability]\r\n /// <para>Deploys an Automaton Queen to fight at your side.</para>\n /// <para>Potency of Automaton Queen actions increases as Battery Gauge exceeds required cost at time of deployment.</para>\n /// <para>Battery Gauge Cost: 50</para>\n /// <para>Duration: 12s</para>\n /// <para>Consumes Battery Gauge upon execution.</para>\n /// <para>Shuts down when time expires or upon execution of Queen Overdrive.</para>\n /// <para>Shares a recast timer with Queen Overdrive.</para>\r\n /// </summary>\r\n public IBaseAction AutomatonQueen_PvE => _AutomatonQueen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _QueenOverdrive_PvECreator = new(ActionFactory.Create16502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16502\"><strong>Queen Overdrive</strong></see> <i>PvE</i> (MCH) [16502] [Ability]\r\n /// <para>Orders the Automaton Queen to use Pile Bunker.</para>\n /// <para>Pile Bunker Potency: 340</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 680.</para>\n /// <para>The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para>\n /// <para>Shares a recast timer with Automaton Queen.</para>\r\n /// </summary>\r\n public IBaseAction QueenOverdrive_PvE => _QueenOverdrive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PileBunker_PvECreator = new(ActionFactory.Create16503);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16503\"><strong>Pile Bunker</strong></see> <i>PvE</i> (MCH) [16503] [Ability]\r\n /// <para>Delivers an attack with a potency of 340.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 680.</para>\n /// <para>The Automaton Queen shuts down after execution. The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction PileBunker_PvE => _PileBunker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmPunch_PvECreator = new(ActionFactory.Create16504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16504\"><strong>Arm Punch</strong></see> <i>PvE</i> (MCH) [16504] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 120.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 240.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ArmPunch_PvE => _ArmPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Detonator_PvECreator = new(ActionFactory.Create16766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16766\"><strong>Detonator</strong></see> <i>PvE</i> (MCH) [16766] [Ability]\r\n /// <para>Ends the effect of Wildfire, dealing damage to the target.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Detonator_PvE => _Detonator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tactician_PvECreator = new(ActionFactory.Create16889);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16889\"><strong>Tactician</strong></see> <i>PvE</i> (MCH) [16889] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with bard's Troubadour or dancer's Shield Samba.</para>\r\n /// </summary>\r\n public IBaseAction Tactician_PvE => _Tactician_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RollerDash_PvECreator = new(ActionFactory.Create17206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17206\"><strong>Roller Dash</strong></see> <i>PvE</i> (MCH) [17206] [Weaponskill]\r\n /// <para>Rushes target and delivers an attack with a potency of 240.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 480.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction RollerDash_PvE => _RollerDash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hypercharge_PvECreator = new(ActionFactory.Create17209);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17209\"><strong>Hypercharge</strong></see> <i>PvE</i> (MCH) [17209] [Ability]\r\n /// <para>Grants 5 stacks of Overheated, each stack allowing the execution of Heat Blast or Auto Crossbow.</para>\n /// <para>Duration: 10s</para>\n /// <para>Overheated Effect: Increases the potency of single-target weaponskills by 20</para>\n /// <para>Heat Gauge Cost: 50</para>\n /// <para>Overheated effect only applicable to machinist job actions.</para>\r\n /// </summary>\r\n public IBaseAction Hypercharge_PvE => _Hypercharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheFiendhunter_PvECreator = new(ActionFactory.Create22349);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22349\"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [22349] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 50%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheFiendhunter_PvE => _PureEssenceOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDervish_PvECreator = new(ActionFactory.Create22356);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22356\"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) [22356] [Ability]\r\n /// <para>Increases critical hit rate of self and nearby party members by 10%, increases damage dealt by 7%, and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 1%.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostDervish_PvE => _LostDervish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scattergun_PvECreator = new(ActionFactory.Create25786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25786\"><strong>Scattergun</strong></see> <i>PvE</i> (MCH) [25786] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 150 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Increases Heat Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction Scattergun_PvE => _Scattergun_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrownedCollider_PvECreator = new(ActionFactory.Create25787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25787\"><strong>Crowned Collider</strong></see> <i>PvE</i> (MCH) [25787] [Ability]\r\n /// <para>Delivers an attack with a potency of 390.</para>\n /// <para>Potency increases as Battery Gauge exceeds required cost at time of deployment, up to a maximum of 780.</para>\n /// <para>The Automaton Queen shuts down after execution. If this action is not used manually while the Automaton Queen is active, it will be triggered automatically immediately before shutting down.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrownedCollider_PvE => _CrownedCollider_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChainSaw_PvECreator = new(ActionFactory.Create25788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25788\"><strong>Chain Saw</strong></see> <i>PvE</i> (MCH) [25788] [Weaponskill]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 600 for the first enemy, and 65% less for all remaining enemies.</para>\n /// <para>Additional Effect: Increases Battery Gauge by 20</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction ChainSaw_PvE => _ChainSaw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlastCharge_PvPCreator = new(ActionFactory.Create29402);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29402\"><strong>Blast Charge</strong></see> <i>PvP</i> (MCH) [29402] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Grants a stack of Heat, up to a maximum of 5</para>\n /// <para>Duration: 15s</para>\n /// <para>At maximum stacks, grants Overheated and increases movement speed by 25%.</para>\n /// <para>Duration: 5s</para>\n /// <para>Requires casting time to execute. However, it is possible to walk while casting.</para>\n /// <para></para>\n /// <para>※Action changes to Heat Blast while under the effect of Overheated.</para>\r\n /// </summary>\r\n public IBaseAction BlastCharge_PvP => _BlastCharge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HeatBlast_PvPCreator = new(ActionFactory.Create29403);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29403\"><strong>Heat Blast</strong></see> <i>PvP</i> (MCH) [29403] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 6,000.</para>\n /// <para>Can only be executed while under the effect of Overheated.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HeatBlast_PvP => _HeatBlast_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Scattergun_PvPCreator = new(ActionFactory.Create29404);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29404\"><strong>Scattergun</strong></see> <i>PvP</i> (MCH) [29404] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 6,000 to all enemies in a cone before you. Strikes twice when hitting only a single target.</para>\n /// <para>Additional Effect: 10-yalm knockback</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Scattergun_PvP => _Scattergun_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Drill_PvPCreator = new(ActionFactory.Create29405);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29405\"><strong>Drill</strong></see> <i>PvP</i> (MCH) [29405] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 10,000.</para>\n /// <para>Potency is increased to 20,000 while under the effect of Analysis.</para>\n /// <para>Ignores the effects of Guard when dealing damage.</para>\n /// <para>Additional Effect: Grants Bioblaster Primed</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while under the effect of Drill Primed.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Bioblaster while under the effect of Bioblaster Primed.</para>\r\n /// </summary>\r\n public IBaseAction Drill_PvP => _Drill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bioblaster_PvPCreator = new(ActionFactory.Create29406);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29406\"><strong>Bioblaster</strong></see> <i>PvP</i> (MCH) [29406] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Doubles potency and afflicts target with Heavy +75% while under the effect of Analysis</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 4,000</para>\n /// <para>Duration: 12s</para>\n /// <para>Doubled potency does not apply to damage over time effect.</para>\n /// <para>Additional Effect: Grants Air Anchor Primed</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while under the effect of Bioblaster Primed.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Air Anchor while under the effect of Air Anchor Primed.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Bioblaster_PvP => _Bioblaster_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AirAnchor_PvPCreator = new(ActionFactory.Create29407);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29407\"><strong>Air Anchor</strong></see> <i>PvP</i> (MCH) [29407] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 8,000.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 3s</para>\n /// <para>Additional Effect: Potency is increased by 50%, and the Bind effect becomes Stun while under the effect of Analysis</para>\n /// <para>Duration: 3s</para>\n /// <para>Additional Effect: Grants Chain Saw Primed</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while under the effect of Air Anchor Primed.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Chain Saw while under the effect of Chain Saw Primed.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AirAnchor_PvP => _AirAnchor_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ChainSaw_PvPCreator = new(ActionFactory.Create29408);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29408\"><strong>Chain Saw</strong></see> <i>PvP</i> (MCH) [29408] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>Potency is increased by 50% when target's HP is below 50%.</para>\n /// <para>Additional Effect: Potency is increased by 50% while under the effect of Analysis</para>\n /// <para>Additional Effect: Grants Drill Primed</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while under the effect of Chain Saw Primed.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Drill while under the effect of Drill Primed.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ChainSaw_PvP => _ChainSaw_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Wildfire_PvPCreator = new(ActionFactory.Create29409);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29409\"><strong>Wildfire</strong></see> <i>PvP</i> (MCH) [29409] [Ability]\r\n /// <para>Covers target's body in a slow-burning pitch. Deals damage to target and all enemies within 5 yalms when time expires.</para>\n /// <para>Duration: 7s</para>\n /// <para>Potency is increased by 4,000 for each of your own attack actions you land prior to the end of the effect. Landing 3 attack actions will cause the slow-burning pitch to detonate immediately.</para>\r\n /// </summary>\r\n public IBaseAction Wildfire_PvP => _Wildfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BishopAutoturret_PvPCreator = new(ActionFactory.Create29412);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29412\"><strong>Bishop Autoturret</strong></see> <i>PvP</i> (MCH) [29412] [Ability]\r\n /// <para>Deploys an area of effect battle turret which will deliver auto-attacks to enemies within range with a potency of 6,000.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 7s</para>\n /// <para>Additional Effect: Creates a barrier that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\r\n /// </summary>\r\n public IBaseAction BishopAutoturret_PvP => _BishopAutoturret_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AetherMortar_PvPCreator = new(ActionFactory.Create29413);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29413\"><strong>Aether Mortar</strong></see> <i>PvP</i> (MCH) [29413] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 7s</para>\n /// <para>Additional Effect: Creates a barrier that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AetherMortar_PvP => _AetherMortar_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Analysis_PvPCreator = new(ActionFactory.Create29414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29414\"><strong>Analysis</strong></see> <i>PvP</i> (MCH) [29414] [Ability]\r\n /// <para>Grants additional effects to Drill, Bioblaster, Air Anchor, and Chain Saw when these weaponskills are executed.</para>\n /// <para>Duration: 10s</para>\n /// <para>Drill Additional Effect: Potency is increased to 200%</para>\n /// <para>Bioblaster Additional Effect: Doubles potency and afflicts target with Heavy +75%</para>\n /// <para>Air Anchor Additional Effect: Potency is increased by 50% and the Bind effect becomes Stun</para>\n /// <para>Chain Saw Additional Effect: Potency is increased by 50%</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Analysis_PvP => _Analysis_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MarksmansSpite_PvPCreator = new(ActionFactory.Create29415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29415\"><strong>Marksman's Spite</strong></see> <i>PvP</i> (MCH) [29415] [Limit Break]\r\n /// <para>Delivers a ranged attack with a potency of 36,000.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\r\n /// </summary>\r\n public IBaseAction MarksmansSpite_PvP => _MarksmansSpite_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageTraitCreator = new(() => new BaseTrait(117));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50117\"><strong>Increased Action Damage</strong></see> (MCH) [117]\r\n /// <para>Increases base action damage and autoturret damage by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageTrait => _IncreasedActionDamageTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageIiTraitCreator = new(() => new BaseTrait(119));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50119\"><strong>Increased Action Damage II</strong></see> (MCH) [119]\r\n /// <para>Increases base action damage and autoturret damage by 20%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageIiTrait => _IncreasedActionDamageIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SplitShotMasteryTraitCreator = new(() => new BaseTrait(288));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50288\"><strong>Split Shot Mastery</strong></see> (MCH) [288]\r\n /// <para>Upgrades Split Shot to Heated Split Shot.</para>\r\n /// </summary>\r\n public IBaseTrait SplitShotMasteryTrait => _SplitShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SlugShotMasteryTraitCreator = new(() => new BaseTrait(289));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50289\"><strong>Slug Shot Mastery</strong></see> (MCH) [289]\r\n /// <para>Upgrades Slug Shot to Heated Slug Shot.</para>\r\n /// </summary>\r\n public IBaseTrait SlugShotMasteryTrait => _SlugShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CleanShotMasteryTraitCreator = new(() => new BaseTrait(290));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50290\"><strong>Clean Shot Mastery</strong></see> (MCH) [290]\r\n /// <para>Upgrades Clean Shot to Heated Clean Shot.</para>\r\n /// </summary>\r\n public IBaseTrait CleanShotMasteryTrait => _CleanShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HotShotMasteryTraitCreator = new(() => new BaseTrait(291));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50291\"><strong>Hot Shot Mastery</strong></see> (MCH) [291]\r\n /// <para>Upgrades Hot Shot to Air Anchor.</para>\r\n /// </summary>\r\n public IBaseTrait HotShotMasteryTrait => _HotShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ChargedActionMasteryTraitCreator = new(() => new BaseTrait(292));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50292\"><strong>Charged Action Mastery</strong></see> (MCH) [292]\r\n /// <para>Allows a third charge of Gauss Round and Ricochet.</para>\r\n /// </summary>\r\n public IBaseTrait ChargedActionMasteryTrait => _ChargedActionMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedWildfireTraitCreator = new(() => new BaseTrait(293));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50293\"><strong>Enhanced Wildfire</strong></see> (MCH) [293]\r\n /// <para>Improves Wildfire's potency increase for landing weaponskills to 240.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedWildfireTrait => _EnhancedWildfireTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _PromotionTraitCreator = new(() => new BaseTrait(294));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50294\"><strong>Promotion</strong></see> (MCH) [294]\r\n /// <para>Upgrades Rook Autoturret and Rook Overdrive to Automaton Queen and Queen Overdrive respectively.</para>\r\n /// </summary>\r\n public IBaseTrait PromotionTrait => _PromotionTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SpreadShotMasteryTraitCreator = new(() => new BaseTrait(449));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50449\"><strong>Spread Shot Mastery</strong></see> (MCH) [449]\r\n /// <para>Upgrades Spread Shot to Scattergun.</para>\r\n /// </summary>\r\n public IBaseTrait SpreadShotMasteryTrait => _SpreadShotMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedReassembleTraitCreator = new(() => new BaseTrait(450));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50450\"><strong>Enhanced Reassemble</strong></see> (MCH) [450]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Reassemble.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedReassembleTrait => _EnhancedReassembleTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _QueensGambitTraitCreator = new(() => new BaseTrait(451));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50451\"><strong>Queen's Gambit</strong></see> (MCH) [451]\r\n /// <para>After executing Pile Bunker, the Automaton Queen will also execute Crowned Collider.</para>\r\n /// </summary>\r\n public IBaseTrait QueensGambitTrait => _QueensGambitTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedTacticianTraitCreator = new(() => new BaseTrait(452));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50452\"><strong>Enhanced Tactician</strong></see> (MCH) [452]\r\n /// <para>Reduces Tactician recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedTacticianTrait => _EnhancedTacticianTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MarksmansMasteryTraitCreator = new(() => new BaseTrait(517));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50517\"><strong>Marksman's Mastery</strong></see> (MCH) [517]\r\n /// <para>Increases the potency of Heated Split Shot to 200, Heated Slug Shot to 120, and Heated Clean Shot to 120.</para>\r\n /// </summary>\r\n public IBaseTrait MarksmansMasteryTrait => _MarksmansMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "DarkKnightRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/darkknight\"><strong>Dark Knight</strong></see>\r\n/// </summary>\r\npublic abstract partial class DarkKnightRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.DRK };\r\n static DRKGauge JobGauge => Svc.Gauges.Get<DRKGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HardSlash_PvECreator = new(ActionFactory.Create3617);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3617\"><strong>Hard Slash</strong></see> <i>PvE</i> (DRK) [3617] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction HardSlash_PvE => _HardSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unleash_PvECreator = new(ActionFactory.Create3621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3621\"><strong>Unleash</strong></see> <i>PvE</i> (DRK) [3621] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 120 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Unleash_PvE => _Unleash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SyphonStrike_PvECreator = new(ActionFactory.Create3623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3623\"><strong>Syphon Strike</strong></see> <i>PvE</i> (DRK) [3623] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Hard Slash</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction SyphonStrike_PvE => _SyphonStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unmend_PvECreator = new(ActionFactory.Create3624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3624\"><strong>Unmend</strong></see> <i>PvE</i> (DRK) [3624] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150.</para>\n /// <para>Additional Effect: Increased enmity</para>\n /// <para>Additional Effect: Reduces the recast time of Plunge by 5 seconds</para>\r\n /// </summary>\r\n public IBaseAction Unmend_PvE => _Unmend_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodWeapon_PvECreator = new(ActionFactory.Create3625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3625\"><strong>Blood Weapon</strong></see> <i>PvE</i> (DRK) [3625] [Ability]\r\n /// <para>Grants 5 stacks of Blood Weapon, each stack increasing Blood Gauge by 10 and restoring MPrestoring MPrestoring MP upon landing weaponskills or spells.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect does not stack when hitting multiple targets with a single attack.</para>\r\n /// </summary>\r\n public IBaseAction BloodWeapon_PvE => _BloodWeapon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Grit_PvECreator = new(ActionFactory.Create3629);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3629\"><strong>Grit</strong></see> <i>PvE</i> (DRK) [3629] [Ability]\r\n /// <para>Significantly increases enmity generation.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction Grit_PvE => _Grit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Souleater_PvECreator = new(ActionFactory.Create3632);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3632\"><strong>Souleater</strong></see> <i>PvE</i> (DRK) [3632] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Syphon Strike</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Restores own HP</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Combo Bonus: Increases Blood Gauge by 20</para>\r\n /// </summary>\r\n public IBaseAction Souleater_PvE => _Souleater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkMind_PvECreator = new(ActionFactory.Create3634);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3634\"><strong>Dark Mind</strong></see> <i>PvE</i> (DRK) [3634] [Ability]\r\n /// <para>Reduces magic vulnerability by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction DarkMind_PvE => _DarkMind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShadowWall_PvECreator = new(ActionFactory.Create3636);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3636\"><strong>Shadow Wall</strong></see> <i>PvE</i> (DRK) [3636] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ShadowWall_PvE => _ShadowWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LivingDead_PvECreator = new(ActionFactory.Create3638);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3638\"><strong>Living Dead</strong></see> <i>PvE</i> (DRK) [3638] [Ability]\r\n /// <para>Grants the effect of Living Dead.</para>\n /// <para>When HP is reduced to 0 while under the effect of Living Dead, instead of becoming KO'd, your status will change to Walking Dead.</para>\n /// <para>Living Dead Duration: 10s</para>\n /// <para>Additional Effect: Restores HP with each weaponskill successfully delivered or spell cast</para>\n /// <para>Cure Potency: 1500</para>\n /// <para>While under the effect of Walking Dead, most attacks will not lower your HP below 1. If, before the Walking Dead timer runs out, an amount of HP totaling your maximum HP is restored, the effect will change to Undead Rebirth. If this amount is not restored, you will be KO'd.</para>\n /// <para>Walking Dead Duration: 10s</para>\n /// <para>While under the effect of Undead Rebirth, most attacks will not lower your HP below 1.</para>\n /// <para>Undead Rebirth Duration: Time remaining on Walking Dead</para>\r\n /// </summary>\r\n public IBaseAction LivingDead_PvE => _LivingDead_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SaltedEarth_PvECreator = new(ActionFactory.Create3639);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3639\"><strong>Salted Earth</strong></see> <i>PvE</i> (DRK) [3639] [Ability]\r\n /// <para>Creates a patch of salted earth at your feet, dealing unaspected damage with a potency of 50 to any enemies who enter.</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※Action changes to Salt and Darkness upon execution.</para>\r\n /// </summary>\r\n public IBaseAction SaltedEarth_PvE => _SaltedEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Plunge_PvECreator = new(ActionFactory.Create3640);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3640\"><strong>Plunge</strong></see> <i>PvE</i> (DRK) [3640] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Plunge_PvE => _Plunge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AbyssalDrain_PvECreator = new(ActionFactory.Create3641);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3641\"><strong>Abyssal Drain</strong></see> <i>PvE</i> (DRK) [3641] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 240 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Restores MP</para>\n /// <para>Shares a recast timer with Carve and Spit.</para>\r\n /// </summary>\r\n public IBaseAction AbyssalDrain_PvE => _AbyssalDrain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CarveAndSpit_PvECreator = new(ActionFactory.Create3643);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3643\"><strong>Carve and Spit</strong></see> <i>PvE</i> (DRK) [3643] [Ability]\r\n /// <para>Delivers a threefold attack with a potency of 510.</para>\n /// <para>Additional Effect: Restores MP</para>\n /// <para>Shares a recast timer with Abyssal Drain.</para>\r\n /// </summary>\r\n public IBaseAction CarveAndSpit_PvE => _CarveAndSpit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Delirium_PvECreator = new(ActionFactory.Create7390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7390\"><strong>Delirium</strong></see> <i>PvE</i> (DRK) [7390] [Ability]\r\n /// <para>Grants 3 stacks of Delirium, each stack allowing the execution of Quietus or Bloodspiller without Blackblood cost, restoring MP when landing either weaponskill.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Delirium_PvE => _Delirium_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quietus_PvECreator = new(ActionFactory.Create7391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7391\"><strong>Quietus</strong></see> <i>PvE</i> (DRK) [7391] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200 to all nearby enemies.</para>\n /// <para>Blood Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Quietus_PvE => _Quietus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodspiller_PvECreator = new(ActionFactory.Create7392);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7392\"><strong>Bloodspiller</strong></see> <i>PvE</i> (DRK) [7392] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Blood Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Bloodspiller_PvE => _Bloodspiller_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheBlackestNight_PvECreator = new(ActionFactory.Create7393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7393\"><strong>The Blackest Night</strong></see> <i>PvE</i> (DRK) [7393] [Ability]\r\n /// <para>Creates a barrier around self or target party member that absorbs damage totaling 25% of target's maximum HP.</para>\n /// <para>Duration: 7s</para>\n /// <para>Grants Dark Arts when barrier is completely absorbed.</para>\n /// <para>Dark Arts Effect: Consume Dark Arts instead of MP to execute Edge of Shadow or Flood of ShadowEdge of Darkness or Flood of DarknessEdge of Darkness or Flood of Darkness</para>\r\n /// </summary>\r\n public IBaseAction TheBlackestNight_PvE => _TheBlackestNight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create7531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7531\"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Provoke_PvECreator = new(ActionFactory.Create7533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7533\"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list while gaining additional enmity.</para>\r\n /// </summary>\r\n public IBaseAction Provoke_PvE => _Provoke_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reprisal_PvECreator = new(ActionFactory.Create7535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7535\"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability]\r\n /// <para>Reduces damage dealt by nearby enemies by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Reprisal_PvE => _Reprisal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shirk_PvECreator = new(ActionFactory.Create7537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7537\"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability]\r\n /// <para>Diverts 25% of enmity to target party member.</para>\r\n /// </summary>\r\n public IBaseAction Shirk_PvE => _Shirk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create7538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7538\"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowBlow_PvECreator = new(ActionFactory.Create7540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7540\"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction LowBlow_PvE => _LowBlow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheMartialist_PvECreator = new(ActionFactory.Create12959);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12959\"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheMartialist_PvE => _WisdomOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheGuardian_PvECreator = new(ActionFactory.Create12961);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12961\"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell]\r\n /// <para>Reduces damage taken by 45% while increasing maximum HP by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheGuardian_PvE => _WisdomOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheWatcher_PvECreator = new(ActionFactory.Create12964);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12964\"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell]\r\n /// <para>Increases evasion by 25% while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheWatcher_PvE => _WisdomOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HaymakerL_PvECreator = new(ActionFactory.Create12987);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12987\"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Can only be executed immediately after evading an attack.</para>\n /// <para>Additional Effect: Slow +20%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HaymakerL_PvE => _HaymakerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmiteL_PvECreator = new(ActionFactory.Create13001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13001\"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Can only be executed when your HP is below 50%.</para>\n /// <para>Additional Effect: Restores an amount of own HP proportional to damage dealt</para>\r\n /// </summary>\r\n public IBaseAction SmiteL_PvE => _SmiteL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIndomitable_PvECreator = new(ActionFactory.Create14480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14480\"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell]\r\n /// <para>Reduces damage taken by 64%.</para>\n /// <para>Grants one stack of HP Boost each time damage equal to or greater than half of maximum HP is taken from a single-target attack.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIndomitable_PvE => _WisdomOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvE_15537Creator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE_15537 => _Interject_PvE_15537Creator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FloodOfDarkness_PvECreator = new(ActionFactory.Create16466);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16466\"><strong>Flood of Darkness</strong></see> <i>PvE</i> (DRK) [16466] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 100 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para>\n /// <para>Shares a recast timer with Edge of Darkness.</para>\r\n /// </summary>\r\n public IBaseAction FloodOfDarkness_PvE => _FloodOfDarkness_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EdgeOfDarkness_PvECreator = new(ActionFactory.Create16467);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16467\"><strong>Edge of Darkness</strong></see> <i>PvE</i> (DRK) [16467] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\n /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para>\n /// <para>Shares a recast timer with Flood of Darkness.</para>\r\n /// </summary>\r\n public IBaseAction EdgeOfDarkness_PvE => _EdgeOfDarkness_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StalwartSoul_PvECreator = new(ActionFactory.Create16468);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16468\"><strong>Stalwart Soul</strong></see> <i>PvE</i> (DRK) [16468] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Unleash</para>\n /// <para>Combo Potency: 140</para>\n /// <para>Combo Bonus: Restores MP</para>\n /// <para>Combo Bonus: Increases Blood Gauge by 20</para>\r\n /// </summary>\r\n public IBaseAction StalwartSoul_PvE => _StalwartSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FloodOfShadow_PvECreator = new(ActionFactory.Create16469);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16469\"><strong>Flood of Shadow</strong></see> <i>PvE</i> (DRK) [16469] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 160 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para>\n /// <para>Shares a recast timer with Edge of Shadow.</para>\r\n /// </summary>\r\n public IBaseAction FloodOfShadow_PvE => _FloodOfShadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EdgeOfShadow_PvECreator = new(ActionFactory.Create16470);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16470\"><strong>Edge of Shadow</strong></see> <i>PvE</i> (DRK) [16470] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 460.</para>\n /// <para>Additional Effect: Grants Darkside, increasing damage dealt by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends Darkside duration by 30s to a maximum of 60s.</para>\n /// <para>Shares a recast timer with Flood of Shadow.</para>\r\n /// </summary>\r\n public IBaseAction EdgeOfShadow_PvE => _EdgeOfShadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkMissionary_PvECreator = new(ActionFactory.Create16471);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16471\"><strong>Dark Missionary</strong></see> <i>PvE</i> (DRK) [16471] [Ability]\r\n /// <para>Reduces magic damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction DarkMissionary_PvE => _DarkMissionary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LivingShadow_PvECreator = new(ActionFactory.Create16472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16472\"><strong>Living Shadow</strong></see> <i>PvE</i> (DRK) [16472] [Ability]\r\n /// <para>Conjure a simulacrum of your darkside to fight alongside you.</para>\n /// <para>Simulacrum Attack Potency: </para>\n /// <para>Duration: 20s</para>\n /// <para>Blood Gauge Cost: 50</para>\n /// <para>Additional Effect: Simulacrum is able to execute Shadowbringer, delivering an attack to all enemies in a straight line before it with a potency of 500 for the first enemy, and 25% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction LivingShadow_PvE => _LivingShadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfTirelessConviction_PvECreator = new(ActionFactory.Create20722);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20722\"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability]\r\n /// <para>Storm the field under the Banner of Tireless Conviction, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Tireless Conviction Effect: Increases damage taken by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfTirelessConviction_PvE => _BannerOfTirelessConviction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20742);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20742\"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item]\r\n /// <para>Increases damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheMartialist_PvE => _EssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20746);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20746\"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item]\r\n /// <para>Increases defense by 30% and maximum HP by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheGuardian_PvE => _EssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20751);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20751\"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item]\r\n /// <para>Increases damage dealt by 90% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheIrregular_PvE => _EssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20753);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20753\"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBloodsucker_PvE => _EssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20757);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20757\"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item]\r\n /// <para>Increases damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheMartialist_PvE => _DeepEssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20761);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20761\"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item]\r\n /// <para>Increases defense by 36% and maximum HP by 12%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheGuardian_PvE => _DeepEssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20766\"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item]\r\n /// <para>Increases damage dealt by 108% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheIrregular_PvE => _DeepEssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20768);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20768\"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item]\r\n /// <para>Increases damage dealt by 48%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBloodsucker_PvE => _DeepEssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheIndomitable_PvECreator = new(ActionFactory.Create22350);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22350\"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item]\r\n /// <para>Increases defense by 40%, damage dealt by 72%, and maximum HP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheIndomitable_PvE => _PureEssenceOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAethershield_PvECreator = new(ActionFactory.Create22355);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22355\"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction LostAethershield_PvE => _LostAethershield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBloodRage_PvECreator = new(ActionFactory.Create23921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23921\"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability]\r\n /// <para>Increases damage dealt by 15% and reduces damage taken by 5% per stack. Stacks increase with each use of a dash attack while effect is active, to a maximum of 4.</para>\n /// <para>Duration: 18s</para>\n /// <para>Maximum stacks grant the effect of Blood Rush.</para>\n /// <para>Blood Rush Effect: Increases damage dealt by 60%, shortens recast times of abilities by 75%, and gradually restores HP and MP. Recast time reduction does not apply to charged actions.</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostBloodRage_PvE => _LostBloodRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Oblation_PvECreator = new(ActionFactory.Create25754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25754\"><strong>Oblation</strong></see> <i>PvE</i> (DRK) [25754] [Ability]\r\n /// <para>Reduces damage taken by target party member or self by 10%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Oblation_PvE => _Oblation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SaltAndDarkness_PvECreator = new(ActionFactory.Create25755);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25755\"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25755] [Ability]\r\n /// <para>All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SaltAndDarkness_PvE => _SaltAndDarkness_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SaltAndDarkness_PvE_25756Creator = new(ActionFactory.Create25756);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25756\"><strong>Salt and Darkness</strong></see> <i>PvE</i> (DRK) [25756] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SaltAndDarkness_PvE_25756 => _SaltAndDarkness_PvE_25756Creator.Value;\n private readonly Lazy<IBaseAction> _Shadowbringer_PvECreator = new(ActionFactory.Create25757);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25757\"><strong>Shadowbringer</strong></see> <i>PvE</i> (DRK) [25757] [Ability]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed while under the effect of Darkside.</para>\r\n /// </summary>\r\n public IBaseAction Shadowbringer_PvE => _Shadowbringer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvE_26253Creator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE_26253 => _Rampart_PvE_26253Creator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HardSlash_PvPCreator = new(ActionFactory.Create29085);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29085\"><strong>Hard Slash</strong></see> <i>PvP</i> (DRK) [29085] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HardSlash_PvP => _HardSlash_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SyphonStrike_PvPCreator = new(ActionFactory.Create29086);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29086\"><strong>Syphon Strike</strong></see> <i>PvP</i> (DRK) [29086] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Hard Slash</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SyphonStrike_PvP => _SyphonStrike_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Souleater_PvPCreator = new(ActionFactory.Create29087);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29087\"><strong>Souleater</strong></see> <i>PvP</i> (DRK) [29087] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Syphon Strike</para>\n /// <para>Additional Effect: Converts 100% of damage dealt into HP</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Souleater_PvP => _Souleater_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bloodspiller_PvPCreator = new(ActionFactory.Create29088);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29088\"><strong>Bloodspiller</strong></see> <i>PvP</i> (DRK) [29088] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 6,000.</para>\n /// <para>Potency increases up to 12,000 as HP decreases, reaching its maximum value when HP falls below 25%.</para>\n /// <para>Can only be executed while under the effect of Blackblood.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Bloodspiller_PvP => _Bloodspiller_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Shadowbringer_PvPCreator = new(ActionFactory.Create29091);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29091\"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29091] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a straight line before you.</para>\n /// <para>Consumes 20% of your maximum HP when executed.</para>\n /// <para>Additional Effect: Grants Blackblood</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed when current HP is lower than 20%.</para>\n /// <para></para>\n /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para>\r\n /// </summary>\r\n public IBaseAction Shadowbringer_PvP => _Shadowbringer_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Plunge_PvPCreator = new(ActionFactory.Create29092);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29092\"><strong>Plunge</strong></see> <i>PvP</i> (DRK) [29092] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 2,000.</para>\n /// <para>Additional Effect: Afflicts target with Sole Survivor</para>\n /// <para>Sole Survivor Effect: Reduces target's HP recovered by healing actions by 20%</para>\n /// <para>Duration: 15s</para>\n /// <para>If that target should be KO'd in battle before Sole Survivor expires, your HP and MP will be restored by 20%, and the recast time of Plunge will be reset.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Plunge_PvP => _Plunge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TheBlackestNight_PvPCreator = new(ActionFactory.Create29093);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29093\"><strong>the Blackest Night</strong></see> <i>PvP</i> (DRK) [29093] [Ability]\r\n /// <para>Creates a barrier around self or target party member that absorbs damage equivalent to a heal of 8,000 potency.</para>\n /// <para>Duration: 10s</para>\n /// <para>Grants Dark Arts when barrier is completely absorbed.</para>\n /// <para>Duration: 10s</para>\n /// <para>Dark Arts Effect: Consume Dark Arts instead of HP to execute Shadowbringer</para>\r\n /// </summary>\r\n public IBaseAction TheBlackestNight_PvP => _TheBlackestNight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SaltedEarth_PvPCreator = new(ActionFactory.Create29094);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29094\"><strong>Salted Earth</strong></see> <i>PvP</i> (DRK) [29094] [Ability]\r\n /// <para>Instantly draws nearby enemies to your side, and creates a patch of salted earth at your feet, dealing unaspected damage over time to any enemies inside.</para>\n /// <para>Potency: 2,000</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Gradually restores your HP and reduces damage taken by 20% while standing in the patch of salted earth</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para></para>\n /// <para>※Action changes to Salt and Darkness while Salted Earth is active.</para>\r\n /// </summary>\r\n public IBaseAction SaltedEarth_PvP => _SaltedEarth_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SaltAndDarkness_PvPCreator = new(ActionFactory.Create29095);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29095\"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29095] [Ability]\r\n /// <para>All enemies standing in the corrupted patch of Salted Earth take additional unaspected damage with a potency of 4,000.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 2s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SaltAndDarkness_PvP => _SaltAndDarkness_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SaltAndDarkness_PvP_29096Creator = new(ActionFactory.Create29096);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29096\"><strong>Salt and Darkness</strong></see> <i>PvP</i> (DRK) [29096] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SaltAndDarkness_PvP_29096 => _SaltAndDarkness_PvP_29096Creator.Value;\n private readonly Lazy<IBaseAction> _Eventide_PvPCreator = new(ActionFactory.Create29097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29097\"><strong>Eventide</strong></see> <i>PvP</i> (DRK) [29097] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 6,000 to all enemies in a straight line before and behind you.</para>\n /// <para>Potency increases up to 24,000 as HP nears maximum.</para>\n /// <para>HP is reduced to 1 upon execution.</para>\n /// <para>Additional Effect: Grants Undead Redemption</para>\n /// <para>Undead Redemption Effect: Most attacks cannot reduce your HP to less than 1, and you absorb 100% of weaponskill damage dealt as HP</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Blackblood</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 105s</para>\n /// <para></para>\n /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para>\r\n /// </summary>\r\n public IBaseAction Eventide_PvP => _Eventide_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _Quietus_PvPCreator = new(ActionFactory.Create29737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29737\"><strong>Quietus</strong></see> <i>PvP</i> (DRK) [29737] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Quietus_PvP => _Quietus_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Shadowbringer_PvP_29738Creator = new(ActionFactory.Create29738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29738\"><strong>Shadowbringer</strong></see> <i>PvP</i> (DRK) [29738] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 6,000 to all enemies in a straight line before you.</para>\n /// <para>Consumes 20% of your maximum HP when executed.</para>\n /// <para>Additional Effect: Grants Blackblood</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed when current HP falls below 20%.</para>\n /// <para></para>\n /// <para>※Souleater Combo changes to Bloodspiller while under the effect of Blackblood.</para>\r\n /// </summary>\r\n public IBaseAction Shadowbringer_PvP_29738 => _Shadowbringer_PvP_29738Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReleaseGrit_PvECreator = new(ActionFactory.Create32067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32067\"><strong>Release Grit</strong></see> <i>PvE</i> (DRK) [32067] [Ability]\r\n /// <para>Cancels the effect of Grit.</para>\r\n /// </summary>\r\n public IBaseAction ReleaseGrit_PvE => _ReleaseGrit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _BlackbloodTraitCreator = new(() => new BaseTrait(158));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50158\"><strong>Blackblood</strong></see> (DRK) [158]\r\n /// <para>Allows for Blood Gauge accumulation upon the landing of certain actions.</para>\r\n /// </summary>\r\n public IBaseTrait BlackbloodTrait => _BlackbloodTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedBlackbloodTraitCreator = new(() => new BaseTrait(159));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50159\"><strong>Enhanced Blackblood</strong></see> (DRK) [159]\r\n /// <para>Allows for Blood Gauge accumulation upon the landing of any weaponskill or spell while under the effect of Blood Weapon.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedBlackbloodTrait => _EnhancedBlackbloodTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DarksideMasteryTraitCreator = new(() => new BaseTrait(271));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50271\"><strong>Darkside Mastery</strong></see> (DRK) [271]\r\n /// <para>Upgrades Flood of Darkness and Edge of Darkness to Flood of Shadow and Edge of Shadow respectively.</para>\r\n /// </summary>\r\n public IBaseTrait DarksideMasteryTrait => _DarksideMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedPlungeTraitCreator = new(() => new BaseTrait(272));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50272\"><strong>Enhanced Plunge</strong></see> (DRK) [272]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Plunge.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedPlungeTrait => _EnhancedPlungeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TankMasteryTraitCreator = new(() => new BaseTrait(319));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50319\"><strong>Tank Mastery</strong></see> (DRK) [319]\r\n /// <para>Reduces damage taken by 20%. Furthermore, grants a bonus to maximum HP based on your vitality attribute, and a bonus to damage dealt based on your strength attribute.</para>\r\n /// </summary>\r\n public IBaseTrait TankMasteryTrait => _TankMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedUnmendTraitCreator = new(() => new BaseTrait(422));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50422\"><strong>Enhanced Unmend</strong></see> (DRK) [422]\r\n /// <para>Reduces recast time of Plunge by 5 seconds when executing Unmend on most targets.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedUnmendTrait => _EnhancedUnmendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedLivingShadowIiTraitCreator = new(() => new BaseTrait(423));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50423\"><strong>Enhanced Living Shadow II</strong></see> (DRK) [423]\r\n /// <para>Upgrades Flood of Shadow executed by your simulacrum to Shadowbringer, which delivers an attack to all enemies in a straight line before it with a potency of 500 for the first enemy, and 25% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedLivingShadowIiTrait => _EnhancedLivingShadowIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(506));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50506\"><strong>Melee Mastery</strong></see> (DRK) [506]\r\n /// <para>Increases the potency of Hard Slash to 170, Syphon Strike to 120, and Souleater to 120.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedLivingShadowTraitCreator = new(() => new BaseTrait(511));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50511\"><strong>Enhanced Living Shadow</strong></see> (DRK) [511]\r\n /// <para>Increases the potency of attacks dealt by your simulacrum to 350.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedLivingShadowTrait => _EnhancedLivingShadowTraitCreator.Value;\r\n#endregion\r\n}", + "AstrologianRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/astrologian\"><strong>Astrologian</strong></see>\r\n/// </summary>\r\npublic abstract partial class AstrologianRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.AST };\r\n static ASTGauge JobGauge => Svc.Gauges.Get<ASTGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvECreator = new(ActionFactory.Create1584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1584\"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability]\r\n /// <para>Restores own or target party member's HP while also removing Stun, Sleep, Bind, Heavy, and Silence.</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Cure potency is doubled when a status affliction is removed. Can be used regardless of own status affliction.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvE => _Purify_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Draw_PvECreator = new(ActionFactory.Create3590);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3590\"><strong>Draw</strong></see> <i>PvE</i> (AST) [3590] [Ability]\r\n /// <para>Draws a card (arcanum) from your divining deck. Only one arcanum can be drawn at a time.</para>\n /// <para>Arcanum effect can be triggered using the action Play.</para>\n /// <para>Additional Effect: Restores 5% of maximum MP</para>\n /// <para>Additional Effect: Grants Clarifying Draw, allowing the execution of Redraw</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Draw_PvE => _Draw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Redraw_PvECreator = new(ActionFactory.Create3593);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3593\"><strong>Redraw</strong></see> <i>PvE</i> (AST) [3593] [Ability]\r\n /// <para>Draws a different arcanum from your deck.</para>\n /// <para>Can only be executed while under the effect of Clarifying Draw.</para>\r\n /// </summary>\r\n public IBaseAction Redraw_PvE => _Redraw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create3594);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3594\"><strong>Benefic</strong></see> <i>PvE</i> (AST) [3594] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: 15% chance next Benefic II will restore critical HP</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedBenefic_PvECreator = new(ActionFactory.Create3595);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3595\"><strong>Aspected Benefic</strong></see> <i>PvE</i> (AST) [3595] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: </para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedBenefic_PvE => _AspectedBenefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Malefic_PvECreator = new(ActionFactory.Create3596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3596\"><strong>Malefic</strong></see> <i>PvE</i> (AST) [3596] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Malefic_PvE => _Malefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIi_PvECreator = new(ActionFactory.Create3598);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3598\"><strong>Malefic II</strong></see> <i>PvE</i> (AST) [3598] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 160.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIi_PvE => _MaleficIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Combust_PvECreator = new(ActionFactory.Create3599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3599\"><strong>Combust</strong></see> <i>PvE</i> (AST) [3599] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Combust_PvE => _Combust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Helios_PvECreator = new(ActionFactory.Create3600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3600\"><strong>Helios</strong></see> <i>PvE</i> (AST) [3600] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Helios_PvE => _Helios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create3601);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3601\"><strong>Aspected Helios</strong></see> <i>PvE</i> (AST) [3601] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: </para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: </para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ascend_PvECreator = new(ActionFactory.Create3603);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3603\"><strong>Ascend</strong></see> <i>PvE</i> (AST) [3603] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Ascend_PvE => _Ascend_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lightspeed_PvECreator = new(ActionFactory.Create3606);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3606\"><strong>Lightspeed</strong></see> <i>PvE</i> (AST) [3606] [Ability]\r\n /// <para>Reduces cast times for spells by 2.5 seconds.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Lightspeed_PvE => _Lightspeed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CombustIi_PvECreator = new(ActionFactory.Create3608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3608\"><strong>Combust II</strong></see> <i>PvE</i> (AST) [3608] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction CombustIi_PvE => _CombustIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BeneficIi_PvECreator = new(ActionFactory.Create3610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3610\"><strong>Benefic II</strong></see> <i>PvE</i> (AST) [3610] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction BeneficIi_PvE => _BeneficIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Synastry_PvECreator = new(ActionFactory.Create3612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3612\"><strong>Synastry</strong></see> <i>PvE</i> (AST) [3612] [Ability]\r\n /// <para>Generate an aetheric bond with target party member. Each time you cast a single-target healing spell on yourself or a party member, the party member with whom you have the bond will also recover HP equaling 40% of the original spell.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Synastry_PvE => _Synastry_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CollectiveUnconscious_PvECreator = new(ActionFactory.Create3613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3613\"><strong>Collective Unconscious</strong></see> <i>PvE</i> (AST) [3613] [Ability]\r\n /// <para>Creates a celestial ring 8 yalms around the caster.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Reduces damage taken by 10% for self and any party members within 30 yalms and applies Wheel of Fortune to self and any party members within 8 yalms</para>\n /// <para>Duration: 5s</para>\n /// <para>Wheel of Fortune Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effects will be applied continuously to self and all party members standing within the celestial ring.</para>\n /// <para>Collective Unconscious effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction CollectiveUnconscious_PvE => _CollectiveUnconscious_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssentialDignity_PvECreator = new(ActionFactory.Create3614);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3614\"><strong>Essential Dignity</strong></see> <i>PvE</i> (AST) [3614] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Potency increases up to 900 as the target's HP decreases, reaching its maximum value when the target has 30% HP or less.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction EssentialDignity_PvE => _EssentialDignity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gravity_PvECreator = new(ActionFactory.Create3615);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3615\"><strong>Gravity</strong></see> <i>PvE</i> (AST) [3615] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction Gravity_PvE => _Gravity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheBalance_PvECreator = new(ActionFactory.Create4401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4401\"><strong>the Balance</strong></see> <i>PvE</i> (AST) [4401] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Solar Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheBalance_PvE => _TheBalance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheArrow_PvECreator = new(ActionFactory.Create4402);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4402\"><strong>the Arrow</strong></see> <i>PvE</i> (AST) [4402] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Lunar Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheArrow_PvE => _TheArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheSpear_PvECreator = new(ActionFactory.Create4403);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4403\"><strong>the Spear</strong></see> <i>PvE</i> (AST) [4403] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is melee DPS or tank, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Celestial Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheSpear_PvE => _TheSpear_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheBole_PvECreator = new(ActionFactory.Create4404);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4404\"><strong>the Bole</strong></see> <i>PvE</i> (AST) [4404] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Solar Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheBole_PvE => _TheBole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEwer_PvECreator = new(ActionFactory.Create4405);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4405\"><strong>the Ewer</strong></see> <i>PvE</i> (AST) [4405] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Lunar Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheEwer_PvE => _TheEwer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheSpire_PvECreator = new(ActionFactory.Create4406);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4406\"><strong>the Spire</strong></see> <i>PvE</i> (AST) [4406] [Ability]\r\n /// <para>Increases damage dealt by a party member or self by 6% if target is ranged DPS or healer, or 3% for all other roles.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants a Celestial Sign when used in combat</para>\n /// <para>Only one arcanum effect can be applied to a target at a time.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheSpire_PvE => _TheSpire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EarthlyStar_PvECreator = new(ActionFactory.Create7439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7439\"><strong>Earthly Star</strong></see> <i>PvE</i> (AST) [7439] [Ability]\r\n /// <para>Deploys an Earthly Star in the designated area and grants the effect of Earthly Dominance.</para>\n /// <para>Duration: 10s</para>\n /// <para>Executing Stellar Detonation while under the effect of Earthly Dominance creates a Stellar Burst dealing unaspected damage with a potency of 205 to all nearby enemies. Also restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 540</para>\n /// <para>After 10s, Earthly Dominance effect is changed to Giant Dominance.</para>\n /// <para>Duration: 10s</para>\n /// <para>Waiting 10s or executing Stellar Detonation while under the effect of Giant Dominance creates a Stellar Explosion dealing unaspected damage with a potency of 310 to all nearby enemies. Also restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 720</para>\r\n /// </summary>\r\n public IBaseAction EarthlyStar_PvE => _EarthlyStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StellarBurst_PvECreator = new(ActionFactory.Create7440);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7440\"><strong>Stellar Burst</strong></see> <i>PvE</i> (AST) [7440] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StellarBurst_PvE => _StellarBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StellarExplosion_PvECreator = new(ActionFactory.Create7441);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7441\"><strong>Stellar Explosion</strong></see> <i>PvE</i> (AST) [7441] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StellarExplosion_PvE => _StellarExplosion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create7442);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7442\"><strong>Malefic III</strong></see> <i>PvE</i> (AST) [7442] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 190.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MinorArcana_PvECreator = new(ActionFactory.Create7443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7443\"><strong>Minor Arcana</strong></see> <i>PvE</i> (AST) [7443] [Ability]\r\n /// <para>Draws either the Lord of Crowns or the Lady of Crowns from your divining deck.</para>\n /// <para>Action changes to the drawn arcanum.</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction MinorArcana_PvE => _MinorArcana_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create7444);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7444\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (AST) [7444] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 250 to all nearby enemies.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LadyOfCrowns_PvECreator = new(ActionFactory.Create7445);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7445\"><strong>Lady of Crowns</strong></see> <i>PvE</i> (AST) [7445] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 400</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction LadyOfCrowns_PvE => _LadyOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Esuna_PvECreator = new(ActionFactory.Create7568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7568\"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction Esuna_PvE => _Esuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rescue_PvECreator = new(ActionFactory.Create7571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7571\"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability]\r\n /// <para>Instantly draws target party member to your side. Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction Rescue_PvE => _Rescue_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StellarDetonation_PvECreator = new(ActionFactory.Create8324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8324\"><strong>Stellar Detonation</strong></see> <i>PvE</i> (AST) [8324] [Ability]\r\n /// <para>While under the effect of Earthly Dominance, detonates the currently deployed Earthly Star, creating a Stellar Burst that deals unaspected damage with a potency of 205 to all nearby enemies.</para>\n /// <para>Additional Effect: Restores own HP and the HP of all nearby party members</para>\n /// <para>Cure Potency: 540</para>\n /// <para>While under the effect of Giant Dominance, detonates the currently deployed Earthly Star, creating a Stellar Explosion that deals unaspected damage with a potency of 310 to all nearby enemies.</para>\n /// <para>Additional Effect: Restores own HP and the HP of all nearby party members</para>\n /// <para>Cure Potency: 720</para>\r\n /// </summary>\r\n public IBaseAction StellarDetonation_PvE => _StellarDetonation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Undraw_PvECreator = new(ActionFactory.Create9629);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9629\"><strong>Undraw</strong></see> <i>PvE</i> (AST) [9629] [Ability]\r\n /// <para>Returns the currently drawn arcanum back to your deck.</para>\r\n /// </summary>\r\n public IBaseAction Undraw_PvE => _Undraw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheAetherweaver_PvECreator = new(ActionFactory.Create12958);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12958\"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell]\r\n /// <para>Increases magic damage dealt by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheAetherweaver_PvE => _WisdomOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheOrdained_PvECreator = new(ActionFactory.Create12962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12962\"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell]\r\n /// <para>Increases maximum MP by 50% and healing magic potency by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheOrdained_PvE => _WisdomOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheTemplar_PvECreator = new(ActionFactory.Create12965);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12965\"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell]\r\n /// <para>Increases healing magic potency by 50% and maximum HP by 30%, while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheTemplar_PvE => _WisdomOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RefreshL_PvECreator = new(ActionFactory.Create13002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13002\"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell]\r\n /// <para>Increases the amount of magia aether regenerated over time by self and nearby party members.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction RefreshL_PvE => _RefreshL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishL_PvECreator = new(ActionFactory.Create13003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13003\"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishL_PvE => _BanishL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishLIii_PvECreator = new(ActionFactory.Create13004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13004\"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishLIii_PvE => _BanishLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SacrificeL_PvECreator = new(ActionFactory.Create14481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14481\"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SacrificeL_PvE => _SacrificeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Divination_PvECreator = new(ActionFactory.Create16552);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16552\"><strong>Divination</strong></see> <i>PvE</i> (AST) [16552] [Ability]\r\n /// <para>Increases damage dealt by self and nearby party members by 6%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Divination_PvE => _Divination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CelestialOpposition_PvECreator = new(ActionFactory.Create16553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16553\"><strong>Celestial Opposition</strong></see> <i>PvE</i> (AST) [16553] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction CelestialOpposition_PvE => _CelestialOpposition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CombustIii_PvECreator = new(ActionFactory.Create16554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16554\"><strong>Combust III</strong></see> <i>PvE</i> (AST) [16554] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction CombustIii_PvE => _CombustIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIv_PvECreator = new(ActionFactory.Create16555);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16555\"><strong>Malefic IV</strong></see> <i>PvE</i> (AST) [16555] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 230.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIv_PvE => _MaleficIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CelestialIntersection_PvECreator = new(ActionFactory.Create16556);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16556\"><strong>Celestial Intersection</strong></see> <i>PvE</i> (AST) [16556] [Ability]\r\n /// <para>Restores own or target party member's HP.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Sect Effect: Erects a magicked barrier which nullifies damage equaling 200% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction CelestialIntersection_PvE => _CelestialIntersection_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Horoscope_PvECreator = new(ActionFactory.Create16557);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16557\"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16557] [Ability]\r\n /// <para>Reads your fortune and those of nearby party members, granting them Horoscope.</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect upgraded to Horoscope Helios upon receiving the effects of Helios or Aspected Helios.</para>\n /// <para>Duration: 30s</para>\n /// <para>Restores the HP of those under either effect when the cards are read a second time or the effect expires.</para>\n /// <para>Horoscope Cure Potency: 200</para>\n /// <para>Horoscope Helios Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Horoscope_PvE => _Horoscope_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Horoscope_PvE_16558Creator = new(ActionFactory.Create16558);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16558\"><strong>Horoscope</strong></see> <i>PvE</i> (AST) [16558] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Potency is determined by the Horoscope effect of party members. Effect expires upon execution.</para>\n /// <para>Horoscope Potency: 200</para>\n /// <para>Horoscope Helios Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Horoscope_PvE_16558 => _Horoscope_PvE_16558Creator.Value;\n private readonly Lazy<IBaseAction> _NeutralSect_PvECreator = new(ActionFactory.Create16559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16559\"><strong>Neutral Sect</strong></see> <i>PvE</i> (AST) [16559] [Ability]\r\n /// <para>Increases healing magic potency by 20%.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: When casting Aspected Benefic or Aspected Helios, erects a magicked barrier which nullifies damage</para>\n /// <para>Aspected Benefic Effect: Nullifies damage equaling 250% of the amount of HP restored</para>\n /// <para>Aspected Helios Effect: Nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction NeutralSect_PvE => _NeutralSect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Repose_PvECreator = new(ActionFactory.Create16560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16560\"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell]\r\n /// <para>Afflicts target with Sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Repose_PvE => _Repose_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Play_PvECreator = new(ActionFactory.Create17055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17055\"><strong>Play</strong></see> <i>PvE</i> (AST) [17055] [Ability]\r\n /// <para>Triggers the effect of your drawn arcanum.</para>\r\n /// </summary>\r\n public IBaseAction Play_PvE => _Play_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20741);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20741\"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item]\r\n /// <para>Increases damage dealt by 80%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheAetherweaver_PvE => _EssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheProfane_PvECreator = new(ActionFactory.Create20750);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20750\"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheProfane_PvE => _EssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20755);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20755\"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item]\r\n /// <para>Increases defense by 50%, maximum HP by 45%, and damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheTemplar_PvE => _EssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20756);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20756\"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item]\r\n /// <para>Increases damage dealt by 96%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheAetherweaver_PvE => _DeepEssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheProfane_PvECreator = new(ActionFactory.Create20765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20765\"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 120%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheProfane_PvE => _DeepEssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20770);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20770\"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item]\r\n /// <para>Increases defense by 60%, maximum HP by 54%, and damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheTemplar_PvE => _DeepEssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvE_21498Creator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE_21498 => _MaleficIii_PvE_21498Creator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvE_21607Creator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE_21607 => _LordOfCrowns_PvE_21607Creator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvE_21608Creator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE_21608 => _Benefic_PvE_21608Creator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvE_21609Creator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE_21609 => _AspectedHelios_PvE_21609Creator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDivine_PvECreator = new(ActionFactory.Create22351);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22351\"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 35%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDivine_PvE => _PureEssenceOfTheDivine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSeraphStrike_PvECreator = new(ActionFactory.Create22354);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22354\"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability]\r\n /// <para>Consumes MP to deliver a jumping attack that deals unaspected damage with a potency of 500.</para>\n /// <para>Additional Effect: Reduces target's accuracy by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Cleric Stance to self.</para>\n /// <para>Cleric Stance Bonus: Reduces healing potency by 60% while increasing damage dealt by 60%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostSeraphStrike_PvE => _LostSeraphStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFullCure_PvECreator = new(ActionFactory.Create23920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23920\"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability]\r\n /// <para>Fully restores HP and MP while granting Auto-potion and Auto-ether to self and nearby party members.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion and Auto-ether effect to end is reduced to 10%</para>\r\n /// </summary>\r\n public IBaseAction LostFullCure_PvE => _LostFullCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Astrodyne_PvECreator = new(ActionFactory.Create25870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25870\"><strong>Astrodyne</strong></see> <i>PvE</i> (AST) [25870] [Ability]\r\n /// <para>Grants an effect using the astrosigns read from your divining deck.</para>\n /// <para>Can only be executed after reading three astrosigns.</para>\n /// <para>Effects granted are determined by the number of different types of astrosigns read.</para>\n /// <para>1 Sign Type: Grants Harmony of Spirit</para>\n /// <para>2 Sign Types: Grants Harmony of Spirit and Harmony of Body</para>\n /// <para>3 Sign Types: Grants Harmony of Spirit, Harmony of Body, and Harmony of Mind</para>\n /// <para>Duration: 15s</para>\n /// <para>Harmony of Spirit Effect: Gradually restores own MP</para>\n /// <para>Potency: 50</para>\n /// <para>Harmony of Body Effect: Reduces spell cast time and recast time, and auto-attack delay by 10%</para>\n /// <para>Harmony of Mind Effect: Increases damage dealt and healing potency by 5%</para>\r\n /// </summary>\r\n public IBaseAction Astrodyne_PvE => _Astrodyne_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallMalefic_PvECreator = new(ActionFactory.Create25871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25871\"><strong>Fall Malefic</strong></see> <i>PvE</i> (AST) [25871] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 250.</para>\r\n /// </summary>\r\n public IBaseAction FallMalefic_PvE => _FallMalefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GravityIi_PvECreator = new(ActionFactory.Create25872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25872\"><strong>Gravity II</strong></see> <i>PvE</i> (AST) [25872] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 130 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction GravityIi_PvE => _GravityIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Exaltation_PvECreator = new(ActionFactory.Create25873);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25873\"><strong>Exaltation</strong></see> <i>PvE</i> (AST) [25873] [Ability]\r\n /// <para>Reduces damage taken by self or target party member by 10%.</para>\n /// <para>Duration: 8s</para>\n /// <para>Additional Effect: Restores HP at the end of the effect's duration</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction Exaltation_PvE => _Exaltation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Macrocosmos_PvECreator = new(ActionFactory.Create25874);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25874\"><strong>Macrocosmos</strong></see> <i>PvE</i> (AST) [25874] [Spell]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 250 for the first enemy, and 40% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Macrocosmos to self and all nearby party members</para>\n /// <para>Duration: 15s</para>\n /// <para>Action changes to Microcosmos upon execution.</para>\n /// <para>For the effect's duration, 50% of damage taken is compiled.</para>\n /// <para>Restores HP equal to a cure of 200 potency plus compiled damage when the effect expires or upon execution of Microcosmos.</para>\n /// <para>Amount restored cannot exceed the target's maximum HP.</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction Macrocosmos_PvE => _Macrocosmos_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Microcosmos_PvECreator = new(ActionFactory.Create25875);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25875\"><strong>Microcosmos</strong></see> <i>PvE</i> (AST) [25875] [Ability]\r\n /// <para>Triggers the healing effect of Macrocosmos, restoring HP equal to a cure of 200 potency plus 50% of compiled damage.</para>\n /// <para>Amount restored cannot exceed the target's maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction Microcosmos_PvE => _Microcosmos_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _FallMalefic_PvPCreator = new(ActionFactory.Create29242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29242\"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29242] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 5,000.</para>\r\n /// </summary>\r\n public IBaseAction FallMalefic_PvP => _FallMalefic_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AspectedBenefic_PvPCreator = new(ActionFactory.Create29243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29243\"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29243] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Potency increases up to 10,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para>\n /// <para>Additional Effect: Grants Diurnal Benefic to target</para>\n /// <para>Diurnal Benefic Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AspectedBenefic_PvP => _AspectedBenefic_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _GravityIi_PvPCreator = new(ActionFactory.Create29244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29244\"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29244] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts first target with Heavy +75%</para>\n /// <para>Duration: 5s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction GravityIi_PvP => _GravityIi_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleCast_PvPCreator = new(ActionFactory.Create29245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29245\"><strong>Double Cast</strong></see> <i>PvP</i> (AST) [29245] [Ability]\r\n /// <para>Repeats the spell you previously cast.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed following a spell.</para>\r\n /// </summary>\r\n public IBaseAction DoubleCast_PvP => _DoubleCast_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _FallMalefic_PvP_29246Creator = new(ActionFactory.Create29246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29246\"><strong>Fall Malefic</strong></see> <i>PvP</i> (AST) [29246] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 5,000.</para>\n /// <para>Additonal Effect: Reduces the recast time of Double Cast by 10 seconds</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction FallMalefic_PvP_29246 => _FallMalefic_PvP_29246Creator.Value;\n private readonly Lazy<IBaseAction> _AspectedBenefic_PvP_29247Creator = new(ActionFactory.Create29247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29247\"><strong>Aspected Benefic</strong></see> <i>PvP</i> (AST) [29247] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Potency increases up to 10,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para>\n /// <para>Additional Effect: Grants Nocturnal Benefic to target</para>\n /// <para>Nocturnal Benefic Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 5,000 potency</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AspectedBenefic_PvP_29247 => _AspectedBenefic_PvP_29247Creator.Value;\n private readonly Lazy<IBaseAction> _GravityIi_PvP_29248Creator = new(ActionFactory.Create29248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29248\"><strong>Gravity II</strong></see> <i>PvP</i> (AST) [29248] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts first target with Bind</para>\n /// <para>Duration: 3s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction GravityIi_PvP_29248 => _GravityIi_PvP_29248Creator.Value;\n private readonly Lazy<IBaseAction> _Draw_PvPCreator = new(ActionFactory.Create29249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29249\"><strong>Draw</strong></see> <i>PvP</i> (AST) [29249] [Ability]\r\n /// <para>Draws the Balance, the Bole, or the Arrow from your divining deck.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Draw_PvP => _Draw_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TheBalance_PvPCreator = new(ActionFactory.Create29250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29250\"><strong>the Balance</strong></see> <i>PvP</i> (AST) [29250] [Ability]\r\n /// <para>Increases damage dealt by self or target and all nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheBalance_PvP => _TheBalance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Macrocosmos_PvPCreator = new(ActionFactory.Create29253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29253\"><strong>Macrocosmos</strong></see> <i>PvP</i> (AST) [29253] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 12,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Grants Macrocosmos to self and all nearby party members</para>\n /// <para>Duration: 10s</para>\n /// <para>Action changes to Microcosmos upon execution.</para>\n /// <para>For the effect's duration, 25% of damage taken is compiled.</para>\n /// <para>Restores HP equal to a cure of 4,000 potency plus compiled damage when the effect expires or upon execution of Microcosmos.</para>\r\n /// </summary>\r\n public IBaseAction Macrocosmos_PvP => _Macrocosmos_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Microcosmos_PvPCreator = new(ActionFactory.Create29254);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29254\"><strong>Microcosmos</strong></see> <i>PvP</i> (AST) [29254] [Ability]\r\n /// <para>Triggers the healing effect of Macrocosmos, restoring HP equal to a cure of 4,000 potency plus 25% of compiled damage.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Microcosmos_PvP => _Microcosmos_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CelestialRiver_PvPCreator = new(ActionFactory.Create29255);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29255\"><strong>Celestial River</strong></see> <i>PvP</i> (AST) [29255] [Limit Break]\r\n /// <para>Reduces damage dealt by nearby enemies by 30%. Effect is reduced by 10% every 5 seconds.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Increases damage dealt by self and nearby party members by 30%. Effect is reduced by 10% every 5s.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 105s</para>\r\n /// </summary>\r\n public IBaseAction CelestialRiver_PvP => _CelestialRiver_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _TheBole_PvPCreator = new(ActionFactory.Create29783);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29783\"><strong>the Bole</strong></see> <i>PvP</i> (AST) [29783] [Ability]\r\n /// <para>Reduces damage taken by self or target and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheBole_PvP => _TheBole_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TheArrow_PvPCreator = new(ActionFactory.Create29784);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29784\"><strong>the Arrow</strong></see> <i>PvP</i> (AST) [29784] [Ability]\r\n /// <para>Reduces weaponskill cast time and recast time, as well as spell cast time and recast time for self or target and nearby party members by 10%, while also increasing movement speed by 25%.</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TheArrow_PvP => _TheArrow_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(122));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50122\"><strong>Maim and Mend</strong></see> (AST) [122]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedBeneficTraitCreator = new(() => new BaseTrait(124));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50124\"><strong>Enhanced Benefic</strong></see> (AST) [124]\r\n /// <para>Grants a 15% chance that your next Benefic II will restore critical HP.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedBeneficTrait => _EnhancedBeneficTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(125));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50125\"><strong>Maim and Mend II</strong></see> (AST) [125]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CombustMasteryTraitCreator = new(() => new BaseTrait(186));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50186\"><strong>Combust Mastery</strong></see> (AST) [186]\r\n /// <para>Upgrades Combust to Combust II.</para>\r\n /// </summary>\r\n public IBaseTrait CombustMasteryTrait => _CombustMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaleficMasteryTraitCreator = new(() => new BaseTrait(187));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50187\"><strong>Malefic Mastery</strong></see> (AST) [187]\r\n /// <para>Upgrades Malefic to Malefic II.</para>\r\n /// </summary>\r\n public IBaseTrait MaleficMasteryTrait => _MaleficMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaleficMasteryIiTraitCreator = new(() => new BaseTrait(188));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50188\"><strong>Malefic Mastery II</strong></see> (AST) [188]\r\n /// <para>Upgrades Malefic II to Malefic III.</para>\r\n /// </summary>\r\n public IBaseTrait MaleficMasteryIiTrait => _MaleficMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HyperLightspeedTraitCreator = new(() => new BaseTrait(189));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50189\"><strong>Hyper Lightspeed</strong></see> (AST) [189]\r\n /// <para>Reduces Lightspeed recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait HyperLightspeedTrait => _HyperLightspeedTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CombustMasteryIiTraitCreator = new(() => new BaseTrait(314));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50314\"><strong>Combust Mastery II</strong></see> (AST) [314]\r\n /// <para>Upgrades Combust II to Combust III.</para>\r\n /// </summary>\r\n public IBaseTrait CombustMasteryIiTrait => _CombustMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaleficMasteryIiiTraitCreator = new(() => new BaseTrait(315));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50315\"><strong>Malefic Mastery III</strong></see> (AST) [315]\r\n /// <para>Upgrades Malefic III to Malefic IV.</para>\r\n /// </summary>\r\n public IBaseTrait MaleficMasteryIiiTrait => _MaleficMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEssentialDignityTraitCreator = new(() => new BaseTrait(316));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50316\"><strong>Enhanced Essential Dignity</strong></see> (AST) [316]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Essential Dignity.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEssentialDignityTrait => _EnhancedEssentialDignityTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDrawTraitCreator = new(() => new BaseTrait(495));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50495\"><strong>Enhanced Draw</strong></see> (AST) [495]\r\n /// <para>Grants Clarifying Draw after executing Draw.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDrawTrait => _EnhancedDrawTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDrawIiTraitCreator = new(() => new BaseTrait(496));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50496\"><strong>Enhanced Draw II</strong></see> (AST) [496]\r\n /// <para>Grants a Solar Sign, Lunar Sign, or Celestial Sign according to your arcanum played in combat.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDrawIiTrait => _EnhancedDrawIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaleficMasteryIvTraitCreator = new(() => new BaseTrait(497));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50497\"><strong>Malefic Mastery IV</strong></see> (AST) [497]\r\n /// <para>Upgrades Malefic IV to Fall Malefic.</para>\r\n /// </summary>\r\n public IBaseTrait MaleficMasteryIvTrait => _MaleficMasteryIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _GravityMasteryTraitCreator = new(() => new BaseTrait(498));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50498\"><strong>Gravity Mastery</strong></see> (AST) [498]\r\n /// <para>Upgrades Gravity to Gravity II.</para>\r\n /// </summary>\r\n public IBaseTrait GravityMasteryTrait => _GravityMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedHealingMagicTraitCreator = new(() => new BaseTrait(499));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50499\"><strong>Enhanced Healing Magic</strong></see> (AST) [499]\r\n /// <para>Increases the healing potency of Benefic to 500, Helios to 400, Benefic II to 800, Aspected Benefic to 250, Aspected Benefic's Regen effect to 250, Aspected Helios to 250, and Aspected Helios's Regen effect to 150.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedHealingMagicTrait => _EnhancedHealingMagicTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedCelestialIntersectionTraitCreator = new(() => new BaseTrait(500));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50500\"><strong>Enhanced Celestial Intersection</strong></see> (AST) [500]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Celestial Intersection.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedCelestialIntersectionTrait => _EnhancedCelestialIntersectionTraitCreator.Value;\r\n#endregion\r\n}", + "SamuraiRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/samurai\"><strong>Samurai</strong></see>\r\n/// </summary>\r\npublic abstract partial class SamuraiRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.SAM };\r\n static SAMGauge JobGauge => Svc.Gauges.Get<SAMGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hakaze_PvECreator = new(ActionFactory.Create7477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7477\"><strong>Hakaze</strong></see> <i>PvE</i> (SAM) [7477] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Increases Kenki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction Hakaze_PvE => _Hakaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Jinpu_PvECreator = new(ActionFactory.Create7478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7478\"><strong>Jinpu</strong></see> <i>PvE</i> (SAM) [7478] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Hakaze</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Grants Fugetsu</para>\n /// <para>Fugetsu Effect: Increases damage dealt by %</para>\n /// <para>Duration: 40s</para>\n /// <para>Combo Bonus: Increases Kenki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction Jinpu_PvE => _Jinpu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shifu_PvECreator = new(ActionFactory.Create7479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7479\"><strong>Shifu</strong></see> <i>PvE</i> (SAM) [7479] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Hakaze</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Grants Fuka</para>\n /// <para>Fuka Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by %</para>\n /// <para>Duration: 40s</para>\n /// <para>Combo Bonus: Increases Kenki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction Shifu_PvE => _Shifu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yukikaze_PvECreator = new(ActionFactory.Create7480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7480\"><strong>Yukikaze</strong></see> <i>PvE</i> (SAM) [7480] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Hakaze</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Kenki Gauge by </para>\n /// <para>Combo Bonus: Grants Setsu</para>\n /// <para>Combo Bonus: Grants Setsu</para>\n /// <para>Combo Bonus: Grants Setsu</para>\r\n /// </summary>\r\n public IBaseAction Yukikaze_PvE => _Yukikaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gekko_PvECreator = new(ActionFactory.Create7481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7481\"><strong>Gekko</strong></see> <i>PvE</i> (SAM) [7481] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's rear.</para>\n /// <para>Combo Action: Jinpu</para>\n /// <para>Combo Potency: </para>\n /// <para>Rear Combo Potency: </para>\n /// <para>Combo Bonus: Increases Kenki Gauge by </para>\n /// <para>Combo Bonus: Grants Getsu</para>\r\n /// </summary>\r\n public IBaseAction Gekko_PvE => _Gekko_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kasha_PvECreator = new(ActionFactory.Create7482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7482\"><strong>Kasha</strong></see> <i>PvE</i> (SAM) [7482] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para> when executed from a target's flank.</para>\n /// <para>Combo Action: Shifu</para>\n /// <para>Combo Potency: </para>\n /// <para>Flank Combo Potency: </para>\n /// <para>Combo Bonus: Increases Kenki Gauge by </para>\n /// <para>Combo Bonus: Grants Ka</para>\r\n /// </summary>\r\n public IBaseAction Kasha_PvE => _Kasha_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fuga_PvECreator = new(ActionFactory.Create7483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7483\"><strong>Fuga</strong></see> <i>PvE</i> (SAM) [7483] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 90 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Increases Kenki Gauge by 5</para>\r\n /// </summary>\r\n public IBaseAction Fuga_PvE => _Fuga_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mangetsu_PvECreator = new(ActionFactory.Create7484);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7484\"><strong>Mangetsu</strong></see> <i>PvE</i> (SAM) [7484] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: FukoFugaFuga</para>\n /// <para>Combo Potency: 120</para>\n /// <para>Combo Bonus: Grants Fugetsu</para>\n /// <para>Fugetsu Effect: Increases damage dealt by %</para>\n /// <para>Duration: 40s</para>\n /// <para>Combo Bonus: Increases Kenki Gauge by </para>\n /// <para>Combo Bonus: Grants Getsu</para>\n /// <para>Combo Bonus: Grants Getsu</para>\n /// <para>Combo Bonus: Grants Getsu</para>\r\n /// </summary>\r\n public IBaseAction Mangetsu_PvE => _Mangetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Oka_PvECreator = new(ActionFactory.Create7485);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7485\"><strong>Oka</strong></see> <i>PvE</i> (SAM) [7485] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: FukoFugaFuga</para>\n /// <para>Combo Potency: 120</para>\n /// <para>Combo Bonus: Grants Fuka</para>\n /// <para>Fuka Effect: Reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by %</para>\n /// <para>Duration: 40s</para>\n /// <para>Combo Bonus: Increases Kenki Gauge by </para>\n /// <para>Combo Bonus: Grants Ka</para>\n /// <para>Combo Bonus: Grants Ka</para>\n /// <para>Combo Bonus: Grants Ka</para>\r\n /// </summary>\r\n public IBaseAction Oka_PvE => _Oka_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Enpi_PvECreator = new(ActionFactory.Create7486);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7486\"><strong>Enpi</strong></see> <i>PvE</i> (SAM) [7486] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Enhanced Enpi Bonus Potency: 260</para>\n /// <para>Additional Effect: Increases Kenki Gauge by </para>\r\n /// </summary>\r\n public IBaseAction Enpi_PvE => _Enpi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MidareSetsugekka_PvECreator = new(ActionFactory.Create7487);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7487\"><strong>Midare Setsugekka</strong></see> <i>PvE</i> (SAM) [7487] [Weaponskill]\r\n /// <para>Delivers a critical hit with a potency of 640.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Additional Effect: Grants a stack of Meditation, up to a maximum of 3</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction MidareSetsugekka_PvE => _MidareSetsugekka_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TenkaGoken_PvECreator = new(ActionFactory.Create7488);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7488\"><strong>Tenka Goken</strong></see> <i>PvE</i> (SAM) [7488] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Grants a stack of Meditation, up to a maximum of 3</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TenkaGoken_PvE => _TenkaGoken_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Higanbana_PvECreator = new(ActionFactory.Create7489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7489\"><strong>Higanbana</strong></see> <i>PvE</i> (SAM) [7489] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 45</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Grants a stack of Meditation, up to a maximum of 3</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Higanbana_PvE => _Higanbana_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuShinten_PvECreator = new(ActionFactory.Create7490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7490\"><strong>Hissatsu: Shinten</strong></see> <i>PvE</i> (SAM) [7490] [Ability]\r\n /// <para>Delivers an attack with a potency of 250.</para>\n /// <para>Kenki Gauge Cost: 25</para>\r\n /// </summary>\r\n public IBaseAction HissatsuShinten_PvE => _HissatsuShinten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuKyuten_PvECreator = new(ActionFactory.Create7491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7491\"><strong>Hissatsu: Kyuten</strong></see> <i>PvE</i> (SAM) [7491] [Ability]\r\n /// <para>Delivers an attack with a potency of 120 to all nearby enemies.</para>\n /// <para>Kenki Gauge Cost: 25</para>\r\n /// </summary>\r\n public IBaseAction HissatsuKyuten_PvE => _HissatsuKyuten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create7492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7492\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (SAM) [7492] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\n /// <para>Kenki Gauge Cost: 10</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuYaten_PvECreator = new(ActionFactory.Create7493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7493\"><strong>Hissatsu: Yaten</strong></see> <i>PvE</i> (SAM) [7493] [Ability]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: 10-yalm backstep</para>\n /// <para>Additional Effect: Grants Enhanced Enpi</para>\n /// <para>Duration: 15s</para>\n /// <para>Kenki Gauge Cost: 10</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuYaten_PvE => _HissatsuYaten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hagakure_PvECreator = new(ActionFactory.Create7495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7495\"><strong>Hagakure</strong></see> <i>PvE</i> (SAM) [7495] [Ability]\r\n /// <para>Converts Setsu, Getsu, and Ka into Kenki. Each Sen converted increases your Kenki Gauge by 10. Can only be executed if under the effect of at least one of the three statuses.</para>\r\n /// </summary>\r\n public IBaseAction Hagakure_PvE => _Hagakure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGuren_PvECreator = new(ActionFactory.Create7496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7496\"><strong>Hissatsu: Guren</strong></see> <i>PvE</i> (SAM) [7496] [Ability]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 500 for the first enemy, and 25% less for all remaining enemies.</para>\n /// <para>Kenki Gauge Cost: 25</para>\n /// <para>Shares a recast timer with Hissatsu: Senei.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGuren_PvE => _HissatsuGuren_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meditate_PvECreator = new(ActionFactory.Create7497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7497\"><strong>Meditate</strong></see> <i>PvE</i> (SAM) [7497] [Ability]\r\n /// <para>Gradually increases your Kenki Gauge.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants stacks of Meditation when used in combat, up to a maximum of 3</para>\n /// <para>Kenki Gauge not affected when used outside battle.</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction Meditate_PvE => _Meditate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThirdEye_PvECreator = new(ActionFactory.Create7498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7498\"><strong>Third Eye</strong></see> <i>PvE</i> (SAM) [7498] [Ability]\r\n /// <para>Reduces the amount of damage taken by the next attack by 10%.</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Increases Kenki Gauge by 10 when hit</para>\r\n /// </summary>\r\n public IBaseAction ThirdEye_PvE => _ThirdEye_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MeikyoShisui_PvECreator = new(ActionFactory.Create7499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7499\"><strong>Meikyo Shisui</strong></see> <i>PvE</i> (SAM) [7499] [Ability]\r\n /// <para>Execute up to 3 weaponskill combos without meeting combo prerequisites. Does not affect Iaijutsu or Ogi Namikiri.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Successfully landing Gekko grants Fugetsu, and successfully landing Kasha grants Fuka</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction MeikyoShisui_PvE => _MeikyoShisui_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create7542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7542\"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueNorth_PvECreator = new(ActionFactory.Create7546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7546\"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability]\r\n /// <para>Nullifies all action direction requirements.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction TrueNorth_PvE => _TrueNorth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Feint_PvECreator = new(ActionFactory.Create7549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7549\"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Feint_PvE => _Feint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegSweep_PvECreator = new(ActionFactory.Create7863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7863\"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction LegSweep_PvE => _LegSweep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Iaijutsu_PvECreator = new(ActionFactory.Create7867);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7867\"><strong>Iaijutsu</strong></see> <i>PvE</i> (SAM) [7867] [Weaponskill]\r\n /// <para>Executes a weaponskill depending on current number of Sen stored in Sen Gauge.</para>\n /// <para>1 Sen: Higanbana</para>\n /// <para>2 Sen: Tenka Goken</para>\n /// <para>3 Sen: Midare Setsugekka</para>\r\n /// </summary>\r\n public IBaseAction Iaijutsu_PvE => _Iaijutsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheDuelist_PvECreator = new(ActionFactory.Create14478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14478\"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell]\r\n /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheDuelist_PvE => _WisdomOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvE_14842Creator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE_14842 => _HissatsuGyoten_PvE_14842Creator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuSenei_PvECreator = new(ActionFactory.Create16481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16481\"><strong>Hissatsu: Senei</strong></see> <i>PvE</i> (SAM) [16481] [Ability]\r\n /// <para>Delivers an attack with a potency of 860.</para>\n /// <para>Kenki Gauge Cost: 25</para>\n /// <para>Shares a recast timer with Hissatsu: Guren.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuSenei_PvE => _HissatsuSenei_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ikishoten_PvECreator = new(ActionFactory.Create16482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16482\"><strong>Ikishoten</strong></see> <i>PvE</i> (SAM) [16482] [Ability]\r\n /// <para>Increases Kenki Gauge by 50.</para>\n /// <para>Additional Effect: Grants Ogi Namikiri Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Ikishoten_PvE => _Ikishoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tsubamegaeshi_PvECreator = new(ActionFactory.Create16483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16483\"><strong>Tsubame-gaeshi</strong></see> <i>PvE</i> (SAM) [16483] [Ability]\r\n /// <para>Repeats the previously executed iaijutsu.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Can only be executed immediately following Iaijutsu.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction Tsubamegaeshi_PvE => _Tsubamegaeshi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KaeshiHiganbana_PvECreator = new(ActionFactory.Create16484);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16484\"><strong>Kaeshi: Higanbana</strong></see> <i>PvE</i> (SAM) [16484] [Ability]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 45</para>\n /// <para>Duration: 60s</para>\n /// <para>Effect cannot be stacked with Higanbana.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KaeshiHiganbana_PvE => _KaeshiHiganbana_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KaeshiGoken_PvECreator = new(ActionFactory.Create16485);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16485\"><strong>Kaeshi: Goken</strong></see> <i>PvE</i> (SAM) [16485] [Ability]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KaeshiGoken_PvE => _KaeshiGoken_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KaeshiSetsugekka_PvECreator = new(ActionFactory.Create16486);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16486\"><strong>Kaeshi: Setsugekka</strong></see> <i>PvE</i> (SAM) [16486] [Ability]\r\n /// <para>Delivers a critical hit with a potency of 640.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KaeshiSetsugekka_PvE => _KaeshiSetsugekka_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shoha_PvECreator = new(ActionFactory.Create16487);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16487\"><strong>Shoha</strong></see> <i>PvE</i> (SAM) [16487] [Ability]\r\n /// <para>Delivers an attack with a potency of 560.</para>\n /// <para>Can only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikirior Meditateor Meditate while in combat.</para>\n /// <para>Meditation effect fades upon execution.</para>\n /// <para>Shares a recast timer with Shoha II.</para>\r\n /// </summary>\r\n public IBaseAction Shoha_PvE => _Shoha_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDuelist_PvECreator = new(ActionFactory.Create22348);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22348\"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDuelist_PvE => _PureEssenceOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRendArmor_PvECreator = new(ActionFactory.Create22353);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22353\"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 100.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostRendArmor_PvE => _LostRendArmor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShohaIi_PvECreator = new(ActionFactory.Create25779);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25779\"><strong>Shoha II</strong></see> <i>PvE</i> (SAM) [25779] [Ability]\r\n /// <para>Delivers an attack with a potency of 200 to all nearby enemies.</para>\n /// <para>Can only be executed after accumulating three stacks of Meditation by executing Iaijutsu, Meditate, or Ogi Namikirior Meditateor Meditate while in combat.</para>\n /// <para>Meditation effect fades upon execution.</para>\n /// <para>Shares a recast timer with Shoha.</para>\r\n /// </summary>\r\n public IBaseAction ShohaIi_PvE => _ShohaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fuko_PvECreator = new(ActionFactory.Create25780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25780\"><strong>Fuko</strong></see> <i>PvE</i> (SAM) [25780] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Increases Kenki Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction Fuko_PvE => _Fuko_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OgiNamikiri_PvECreator = new(ActionFactory.Create25781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25781\"><strong>Ogi Namikiri</strong></see> <i>PvE</i> (SAM) [25781] [Weaponskill]\r\n /// <para>Delivers a critical hit to all enemies in a cone before you with a potency of 860 for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Grants a stack of Meditation, up to a maximum of 3.</para>\n /// <para>Can only be executed while under the effect of Ogi Namikiri Ready.</para>\n /// <para></para>\n /// <para>※Action changes to Kaeshi: Namikiri upon execution.</para>\r\n /// </summary>\r\n public IBaseAction OgiNamikiri_PvE => _OgiNamikiri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KaeshiNamikiri_PvECreator = new(ActionFactory.Create25782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25782\"><strong>Kaeshi: Namikiri</strong></see> <i>PvE</i> (SAM) [25782] [Ability]\r\n /// <para>Delivers a critical hit to all enemies in a cone before you with a potency of 860 for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate.</para>\n /// <para>Triggers the cooldown of weaponskills upon execution. Cannot be executed during the cooldown of weaponskills.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KaeshiNamikiri_PvE => _KaeshiNamikiri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yukikaze_PvPCreator = new(ActionFactory.Create29523);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29523\"><strong>Yukikaze</strong></see> <i>PvP</i> (SAM) [29523] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※Action changes to Hyosetsu while under the effect of Kaiten.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Yukikaze_PvP => _Yukikaze_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Gekko_PvPCreator = new(ActionFactory.Create29524);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29524\"><strong>Gekko</strong></see> <i>PvP</i> (SAM) [29524] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Yukikaze or Hyosetsu</para>\n /// <para></para>\n /// <para>※Action changes to Mangetsu while under the effect of Kaiten.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Gekko_PvP => _Gekko_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Kasha_PvPCreator = new(ActionFactory.Create29525);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29525\"><strong>Kasha</strong></see> <i>PvP</i> (SAM) [29525] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Gekko or Mangetsu</para>\n /// <para></para>\n /// <para>※Action changes to Oka while under the effect of Kaiten.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Kasha_PvP => _Kasha_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Hyosetsu_PvPCreator = new(ActionFactory.Create29526);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29526\"><strong>Hyosetsu</strong></see> <i>PvP</i> (SAM) [29526] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 2s</para>\n /// <para>Can only be executed while under the effect of Kaiten.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hyosetsu_PvP => _Hyosetsu_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mangetsu_PvPCreator = new(ActionFactory.Create29527);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29527\"><strong>Mangetsu</strong></see> <i>PvP</i> (SAM) [29527] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all nearby enemies.</para>\n /// <para>Combo Action: Yukikaze or Hyosetsu</para>\n /// <para>Can only be executed while under the effect of Kaiten.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Mangetsu_PvP => _Mangetsu_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Oka_PvPCreator = new(ActionFactory.Create29528);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29528\"><strong>Oka</strong></see> <i>PvP</i> (SAM) [29528] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000 to all nearby enemies.</para>\n /// <para>Combo Action: Gekko or Mangetsu</para>\n /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para>\n /// <para>Can only be executed while under the effect of Kaiten.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Oka_PvP => _Oka_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MidareSetsugekka_PvPCreator = new(ActionFactory.Create29529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29529\"><strong>Midare Setsugekka</strong></see> <i>PvP</i> (SAM) [29529] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 16,000.</para>\n /// <para>Can only be executed while under the effect of Midare.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction MidareSetsugekka_PvP => _MidareSetsugekka_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _OgiNamikiri_PvPCreator = new(ActionFactory.Create29530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29530\"><strong>Ogi Namikiri</strong></see> <i>PvP</i> (SAM) [29530] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para>\n /// <para>Potency is increased by 50% when attacking only a single target.</para>\n /// <para>Additional Effect: When attacking two or more targets, creates a barrier around self that absorbs damage equivalent to a heal of 8,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Kaeshi: Namikiri upon execution.</para>\r\n /// </summary>\r\n public IBaseAction OgiNamikiri_PvP => _OgiNamikiri_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _KaeshiNamikiri_PvPCreator = new(ActionFactory.Create29531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29531\"><strong>Kaeshi: Namikiri</strong></see> <i>PvP</i> (SAM) [29531] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para>\n /// <para>Potency is increased by 50% when attacking only a single target.</para>\n /// <para>Combo Action: Ogi Namikiri</para>\n /// <para>Additional Effect: When attacking two or more targets, creates a barrier around self that absorbs damage equivalent to a heal of 8,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KaeshiNamikiri_PvP => _KaeshiNamikiri_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuSoten_PvPCreator = new(ActionFactory.Create29532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29532\"><strong>Hissatsu: Soten</strong></see> <i>PvP</i> (SAM) [29532] [Ability]\r\n /// <para>Swiftly charges forward, dealing damage with a potency of 4,000 to targets in your path.</para>\n /// <para>Additional Effect: Grants Kaiten</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 3</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Yukikaze changes to Hyosetsu while under the effect of Kaiten.</para>\n /// <para>※Gekko changes to Mangetsu while under the effect of Kaiten.</para>\n /// <para>※Kasha changes to Oka while under the effect of Kaiten.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuSoten_PvP => _HissatsuSoten_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuChiten_PvPCreator = new(ActionFactory.Create29533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29533\"><strong>Hissatsu: Chiten</strong></see> <i>PvP</i> (SAM) [29533] [Ability]\r\n /// <para>Reduces damage taken by 25% and delivers an attack with a potency of 2,000 every time you suffer damage.</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Afflicts target with Kuzushi</para>\n /// <para>Kuzushi Effect: Increases damage you deal target by 25%</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction HissatsuChiten_PvP => _HissatsuChiten_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mineuchi_PvPCreator = new(ActionFactory.Create29535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29535\"><strong>Mineuchi</strong></see> <i>PvP</i> (SAM) [29535] [Ability]\r\n /// <para>Deals damage to target equal to 10% of their current HP.</para>\n /// <para>Ignores the effects of Guard when dealing damage.</para>\n /// <para>Deals damage with a potency of 4,000 to players riding machina and non-player combatants.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 2s</para>\r\n /// </summary>\r\n public IBaseAction Mineuchi_PvP => _Mineuchi_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MeikyoShisui_PvPCreator = new(ActionFactory.Create29536);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29536\"><strong>Meikyo Shisui</strong></see> <i>PvP</i> (SAM) [29536] [Ability]\r\n /// <para>Grants Meikyo Shisui and Midare.</para>\n /// <para>Meikyo Shisui Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 3s</para>\n /// <para>Midare Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Midare Setsugekka while under the effect of Midare.</para>\r\n /// </summary>\r\n public IBaseAction MeikyoShisui_PvP => _MeikyoShisui_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Zantetsuken_PvPCreator = new(ActionFactory.Create29537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29537\"><strong>Zantetsuken</strong></see> <i>PvP</i> (SAM) [29537] [Limit Break]\r\n /// <para>Swiftly charges forward, dealing damage to target and all enemies nearby it with a potency of 24,000.</para>\n /// <para>If target is afflicted with Kuzushi, deals damage equal to 100% of their maximum HP.</para>\n /// <para>Ignores the effects of Guard when dealing damage.</para>\n /// <para>The additional effect of Kuzushi cannot be applied to players riding machina and non-player combatants.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 120s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Zantetsuken_PvP => _Zantetsuken_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvE_33013Creator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE_33013 => _Bloodbath_PvE_33013Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _KenkiMasteryIiTraitCreator = new(() => new BaseTrait(208));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50208\"><strong>Kenki Mastery II</strong></see> (SAM) [208]\r\n /// <para>Increases Kenki Gauge when landing all weaponskills excluding Iaijutsu.</para>\r\n /// </summary>\r\n public IBaseTrait KenkiMasteryIiTrait => _KenkiMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _KenkiMasteryTraitCreator = new(() => new BaseTrait(215));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50215\"><strong>Kenki Mastery</strong></see> (SAM) [215]\r\n /// <para>Increases Kenki Gauge when landing select weaponskills or when taking damage while under the effect of Third Eye.</para>\r\n /// </summary>\r\n public IBaseTrait KenkiMasteryTrait => _KenkiMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedIaijutsuTraitCreator = new(() => new BaseTrait(277));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50277\"><strong>Enhanced Iaijutsu</strong></see> (SAM) [277]\r\n /// <para>Reduces Iaijutsu cast time to 1.3 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedIaijutsuTrait => _EnhancedIaijutsuTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedFugetsuAndFukaTraitCreator = new(() => new BaseTrait(278));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50278\"><strong>Enhanced Fugetsu and Fuka</strong></see> (SAM) [278]\r\n /// <para>Improves Fugetsu's damage increase to 13% and Fuka's reduction to weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay to 13%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedFugetsuAndFukaTrait => _EnhancedFugetsuAndFukaTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedTsubamegaeshiTraitCreator = new(() => new BaseTrait(442));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50442\"><strong>Enhanced Tsubame-gaeshi</strong></see> (SAM) [442]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Tsubame-gaeshi.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedTsubamegaeshiTrait => _EnhancedTsubamegaeshiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedMeikyoShisuiTraitCreator = new(() => new BaseTrait(443));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50443\"><strong>Enhanced Meikyo Shisui</strong></see> (SAM) [443]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Meikyo Shisui.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedMeikyoShisuiTrait => _EnhancedMeikyoShisuiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedIkishotenTraitCreator = new(() => new BaseTrait(514));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50514\"><strong>Enhanced Ikishoten</strong></see> (SAM) [514]\r\n /// <para>Grants Ogi Namikiri Ready upon execution of Ikishoten.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedIkishotenTrait => _EnhancedIkishotenTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FugaMasteryTraitCreator = new(() => new BaseTrait(519));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50519\"><strong>Fuga Mastery</strong></see> (SAM) [519]\r\n /// <para>Upgrades Fuga to Fuko.</para>\r\n /// </summary>\r\n public IBaseTrait FugaMasteryTrait => _FugaMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _WayOfTheSamuraiTraitCreator = new(() => new BaseTrait(520));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50520\"><strong>Way of the Samurai</strong></see> (SAM) [520]\r\n /// <para>Increases the potency of Hakaze to 200, Jinpu to 120, and Shifu to 120.</para>\r\n /// </summary>\r\n public IBaseTrait WayOfTheSamuraiTrait => _WayOfTheSamuraiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _WayOfTheSamuraiIiTraitCreator = new(() => new BaseTrait(521));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50521\"><strong>Way of the Samurai II</strong></see> (SAM) [521]\r\n /// <para>Increases the potency of Gekko, Kasha, and Yukikaze to 120.</para>\r\n /// </summary>\r\n public IBaseTrait WayOfTheSamuraiIiTrait => _WayOfTheSamuraiIiTraitCreator.Value;\r\n#endregion\r\n}", + "RedMageRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/redmage\"><strong>Red Mage</strong></see>\r\n/// </summary>\r\npublic abstract partial class RedMageRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.RDM };\r\n static RDMGauge JobGauge => Svc.Gauges.Get<RDMGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Jolt_PvECreator = new(ActionFactory.Create7503);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7503\"><strong>Jolt</strong></see> <i>PvE</i> (RDM) [7503] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 170.</para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 2</para>\r\n /// </summary>\r\n public IBaseAction Jolt_PvE => _Jolt_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Riposte_PvECreator = new(ActionFactory.Create7504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7504\"><strong>Riposte</strong></see> <i>PvE</i> (RDM) [7504] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 130.</para>\n /// <para>Action upgraded to Enchanted Riposte if both Black Mana and White Mana are at 20 or more.</para>\r\n /// </summary>\r\n public IBaseAction Riposte_PvE => _Riposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create7505);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7505\"><strong>Verthunder</strong></see> <i>PvE</i> (RDM) [7505] [Spell]\r\n /// <para>Deals lightning damage with a potency of .</para>\n /// <para>Additional Effect: Increases Black Mana by 6</para>\n /// <para>Additional Effect: 50% chance of becoming Verfire Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create7506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7506\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (RDM) [7506] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 130.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create7507);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7507\"><strong>Veraero</strong></see> <i>PvE</i> (RDM) [7507] [Spell]\r\n /// <para>Deals wind damage with a potency of .</para>\n /// <para>Additional Effect: Increases White Mana by 6</para>\n /// <para>Additional Effect: 50% chance of becoming Verstone Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scatter_PvECreator = new(ActionFactory.Create7509);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7509\"><strong>Scatter</strong></see> <i>PvE</i> (RDM) [7509] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 120 to target and all enemies nearby it.</para>\n /// <para>Acceleration Potency: 170</para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 3</para>\r\n /// </summary>\r\n public IBaseAction Scatter_PvE => _Scatter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create7510);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7510\"><strong>Verfire</strong></see> <i>PvE</i> (RDM) [7510] [Spell]\r\n /// <para>Deals fire damage with a potency of .</para>\n /// <para>Additional Effect: Increases Black Mana by 5</para>\n /// <para>Can only be executed while Verfire Ready is active.</para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create7511);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7511\"><strong>Verstone</strong></see> <i>PvE</i> (RDM) [7511] [Spell]\r\n /// <para>Deals earth damage with a potency of .</para>\n /// <para>Additional Effect: Increases White Mana by 5</para>\n /// <para>Can only be executed while Verstone Ready is active.</para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Zwerchhau_PvECreator = new(ActionFactory.Create7512);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7512\"><strong>Zwerchhau</strong></see> <i>PvE</i> (RDM) [7512] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Riposte or Enchanted Riposte</para>\n /// <para>Combo Potency: 150</para>\n /// <para>Action upgraded to Enchanted Zwerchhau if both Black Mana and White Mana are at 15 or more.</para>\r\n /// </summary>\r\n public IBaseAction Zwerchhau_PvE => _Zwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Moulinet_PvECreator = new(ActionFactory.Create7513);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7513\"><strong>Moulinet</strong></see> <i>PvE</i> (RDM) [7513] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 60 to all enemies in a cone before you.</para>\n /// <para>Action upgraded to Enchanted Moulinet if both Black Mana and White Mana are at 20 or more.</para>\r\n /// </summary>\r\n public IBaseAction Moulinet_PvE => _Moulinet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create7514);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7514\"><strong>Vercure</strong></see> <i>PvE</i> (RDM) [7514] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create7515);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7515\"><strong>Displacement</strong></see> <i>PvE</i> (RDM) [7515] [Ability]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: 15-yalm backstep</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>Shares a recast timer with Engagement.</para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Redoublement_PvECreator = new(ActionFactory.Create7516);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7516\"><strong>Redoublement</strong></see> <i>PvE</i> (RDM) [7516] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Zwerchhau or Enchanted Zwerchhau</para>\n /// <para>Combo Potency: 230</para>\n /// <para>Action upgraded to Enchanted Redoublement if both Black Mana and White Mana are at 15 or more.</para>\r\n /// </summary>\r\n public IBaseAction Redoublement_PvE => _Redoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create7517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7517\"><strong>Fleche</strong></see> <i>PvE</i> (RDM) [7517] [Ability]\r\n /// <para>Delivers an attack with a potency of 460.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Acceleration_PvECreator = new(ActionFactory.Create7518);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7518\"><strong>Acceleration</strong></see> <i>PvE</i> (RDM) [7518] [Ability]\r\n /// <para>Ensures the next Verthunder III, Veraero IIIVerthunder, VeraeroVerthunder, Veraero, or ImpactScatterScatter can be cast immediately.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Increases the potency of ImpactScatterScatter by 50</para>\n /// <para>Additional Effect: Ensures Verthunder III and Veraero IIIVerthunder and VeraeroVerthunder and Veraero trigger Verfire Ready or Verstone Ready respectively</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Acceleration_PvE => _Acceleration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create7519);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7519\"><strong>Contre Sixte</strong></see> <i>PvE</i> (RDM) [7519] [Ability]\r\n /// <para>Delivers an attack with a potency of 380 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create7520);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7520\"><strong>Embolden</strong></see> <i>PvE</i> (RDM) [7520] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Manafication_PvECreator = new(ActionFactory.Create7521);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7521\"><strong>Manafication</strong></see> <i>PvE</i> (RDM) [7521] [Ability]\r\n /// <para>Increases both Black Mana and White Mana by 50.</para>\n /// <para>Additional Effect: Grants stacks of Manafication</para>\n /// <para>Manafication Effect: Increases magic damage dealt by 5%</para>\n /// <para>Duration: 15s</para>\n /// <para>All combos are canceled upon execution of Manafication.</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Manafication_PvE => _Manafication_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verraise_PvECreator = new(ActionFactory.Create7523);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7523\"><strong>Verraise</strong></see> <i>PvE</i> (RDM) [7523] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Verraise_PvE => _Verraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _JoltIi_PvECreator = new(ActionFactory.Create7524);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7524\"><strong>Jolt II</strong></see> <i>PvE</i> (RDM) [7524] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 2</para>\r\n /// </summary>\r\n public IBaseAction JoltIi_PvE => _JoltIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create7525);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7525\"><strong>Verflare</strong></see> <i>PvE</i> (RDM) [7525] [Spell]\r\n /// <para>Deals fire damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Additional Effect: Increases Black Mana by 11</para>\n /// <para>Additional Effect: 20% chance of becoming Verfire Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Chance to become Verfire Ready increases to 100% if White Mana is higher than Black Mana at time of execution.</para>\n /// <para>Mana Stack Cost: 3</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create7526);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7526\"><strong>Verholy</strong></see> <i>PvE</i> (RDM) [7526] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Additional Effect: Increases White Mana by 11</para>\n /// <para>Additional Effect: 20% chance of becoming Verstone Ready</para>\n /// <para>Duration: 30s</para>\n /// <para>Chance to become Verstone Ready increases to 100% if Black Mana is higher than White Mana at time of execution.</para>\n /// <para>Mana Stack Cost: 3</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create7527);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7527\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (RDM) [7527] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Additional Effect: Grants a Mana Stack</para>\n /// <para>Balance Gauge Cost: 20 Black Mana</para>\n /// <para>Balance Gauge Cost: 20 White Mana</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create7528);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7528\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (RDM) [7528] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Combo Action: Riposte or Enchanted Riposte</para>\n /// <para>Combo Potency: </para>\n /// <para>Additional Effect: Grants a Mana Stack</para>\n /// <para>Balance Gauge Cost: 15 Black Mana</para>\n /// <para>Balance Gauge Cost: 15 White Mana</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create7529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7529\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (RDM) [7529] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Combo Action: Enchanted Zwerchhau</para>\n /// <para>Combo Potency: </para>\n /// <para>Additional Effect: Grants a Mana Stack</para>\n /// <para>Balance Gauge Cost: 15 Black Mana</para>\n /// <para>Balance Gauge Cost: 15 White Mana</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedMoulinet_PvECreator = new(ActionFactory.Create7530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7530\"><strong>Enchanted Moulinet</strong></see> <i>PvE</i> (RDM) [7530] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 130 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Grants a Mana Stack</para>\n /// <para>Balance Gauge Cost: 20 Black Mana</para>\n /// <para>Balance Gauge Cost: 20 White Mana</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedMoulinet_PvE => _EnchantedMoulinet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Addle_PvECreator = new(ActionFactory.Create7560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7560\"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 5% and magic damage dealt by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Addle_PvE => _Addle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheElder_PvECreator = new(ActionFactory.Create14477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14477\"><strong>Wisdom of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [14477] [Spell]\r\n /// <para>Increases magic damage dealt by 35% while reducing magic damage taken by 22% and decreasing spell MP cost.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheElder_PvE => _WisdomOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VerthunderIi_PvECreator = new(ActionFactory.Create16524);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16524\"><strong>Verthunder II</strong></see> <i>PvE</i> (RDM) [16524] [Spell]\r\n /// <para>Deals lightning damage with a potency of to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases Black Mana by 7</para>\r\n /// </summary>\r\n public IBaseAction VerthunderIi_PvE => _VerthunderIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VeraeroIi_PvECreator = new(ActionFactory.Create16525);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16525\"><strong>Veraero II</strong></see> <i>PvE</i> (RDM) [16525] [Spell]\r\n /// <para>Deals wind damage with a potency of to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases White Mana by 7</para>\r\n /// </summary>\r\n public IBaseAction VeraeroIi_PvE => _VeraeroIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Impact_PvECreator = new(ActionFactory.Create16526);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16526\"><strong>Impact</strong></see> <i>PvE</i> (RDM) [16526] [Spell]\r\n /// <para>Deals unaspected damage with a potency of to target and all enemies nearby it.</para>\n /// <para>Acceleration Potency: </para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 3</para>\r\n /// </summary>\r\n public IBaseAction Impact_PvE => _Impact_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create16527);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16527\"><strong>Engagement</strong></see> <i>PvE</i> (RDM) [16527] [Ability]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Shares a recast timer with Displacement.</para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedReprise_PvECreator = new(ActionFactory.Create16528);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16528\"><strong>Enchanted Reprise</strong></see> <i>PvE</i> (RDM) [16528] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Balance Gauge Cost: 5 Black Mana</para>\n /// <para>Balance Gauge Cost: 5 White Mana</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedReprise_PvE => _EnchantedReprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reprise_PvECreator = new(ActionFactory.Create16529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16529\"><strong>Reprise</strong></see> <i>PvE</i> (RDM) [16529] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Action upgraded to Enchanted Reprise if both Black Mana and White Mana are at 5 or more.</para>\r\n /// </summary>\r\n public IBaseAction Reprise_PvE => _Reprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create16530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16530\"><strong>Scorch</strong></see> <i>PvE</i> (RDM) [16530] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 680 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Combo Action: Verflare or Verholy</para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 4</para>\n /// <para>Jolt II and Impact are changed to Scorch upon landing Verflare or Verholy as a combo action.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_20529Creator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_20529 => _Verfire_PvE_20529Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_20530Creator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_20530 => _Veraero_PvE_20530Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_20531Creator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_20531 => _Verstone_PvE_20531Creator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_20532Creator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_20532 => _Verflare_PvE_20532Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvE_21494Creator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE_21494 => _Fleche_PvE_21494Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_21495Creator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_21495 => _ContreSixte_PvE_21495Creator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvE_21496Creator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE_21496 => _Displacement_PvE_21496Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_21497Creator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_21497 => _Vercure_PvE_21497Creator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_21923Creator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_21923 => _Verholy_PvE_21923Creator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheElder_PvECreator = new(ActionFactory.Create22347);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22347\"><strong>Pure Essence of the Elder</strong></see> <i>PvE</i> (BLM SMN RDM) [22347] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 50%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheElder_PvE => _PureEssenceOfTheElder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFlareStar_PvECreator = new(ActionFactory.Create22352);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22352\"><strong>Lost Flare Star</strong></see> <i>PvE</i> (BLM SMN RDM) [22352] [Spell]\r\n /// <para>Consumes MP to deal unaspected damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 350</para>\n /// <para>Duration: 60s</para>\n /// <para>The damage over time effect of Lost Flare Star can only be applied once per target at any given time. This effect cannot be stacked by multiple players.</para>\r\n /// </summary>\r\n public IBaseAction LostFlareStar_PvE => _LostFlareStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24831Creator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24831 => _Scorch_PvE_24831Creator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_24917Creator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_24917 => _Corpsacorps_PvE_24917Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_24918Creator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_24918 => _EnchantedRiposte_PvE_24918Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_24919Creator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_24919 => _EnchantedZwerchhau_PvE_24919Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_24920Creator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_24920 => _EnchantedRedoublement_PvE_24920Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VerthunderIii_PvECreator = new(ActionFactory.Create25855);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25855\"><strong>Verthunder III</strong></see> <i>PvE</i> (RDM) [25855] [Spell]\r\n /// <para>Deals lightning damage with a potency of 380.</para>\n /// <para>Additional Effect: Increases Black Mana by 6</para>\n /// <para>Additional Effect: 50% chance of becoming Verfire Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction VerthunderIii_PvE => _VerthunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VeraeroIii_PvECreator = new(ActionFactory.Create25856);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25856\"><strong>Veraero III</strong></see> <i>PvE</i> (RDM) [25856] [Spell]\r\n /// <para>Deals wind damage with a potency of 380.</para>\n /// <para>Additional Effect: Increases White Mana by 6</para>\n /// <para>Additional Effect: 50% chance of becoming Verstone Ready</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction VeraeroIii_PvE => _VeraeroIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagickBarrier_PvECreator = new(ActionFactory.Create25857);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25857\"><strong>Magick Barrier</strong></see> <i>PvE</i> (RDM) [25857] [Ability]\r\n /// <para>Reduces magic damage taken by self and nearby party members by 10%, while increasing HP recovered by healing actions by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction MagickBarrier_PvE => _MagickBarrier_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Resolution_PvECreator = new(ActionFactory.Create25858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25858\"><strong>Resolution</strong></see> <i>PvE</i> (RDM) [25858] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 750 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Combo Action: Scorch</para>\n /// <para>Additional Effect: Increases both Black Mana and White Mana by 4</para>\n /// <para>Scorch is changed to Resolution upon landing Scorch as a combo action.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Resolution_PvE => _Resolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sleep_PvECreator = new(ActionFactory.Create25880);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25880\"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell]\r\n /// <para>Puts target and all nearby enemies to sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Sleep_PvE => _Sleep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvE_26225Creator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE_26225 => _Embolden_PvE_26225Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvE_27051Creator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE_27051 => _Verthunder_PvE_27051Creator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvE_27058Creator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE_27058 => _Engagement_PvE_27058Creator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvPCreator = new(ActionFactory.Create29683);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29683\"><strong>Verstone</strong></see> <i>PvP</i> (RDM) [29683] [Spell]\r\n /// <para>Deals earth damage with a potency of 5,000.</para>\n /// <para>Additional Effect: Grants Dualcast, allowing next spell to be cast immediately</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of White Shift.</para>\n /// <para></para>\n /// <para>※Action changes to Veraero III while under the effect of Dualcast.</para>\n /// <para>※Action changes to Verfire while under the effect of Black Shift.</para>\n /// <para>※Action changes to Verthunder III while under the effect of Black Shift and Dualcast.</para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvP => _Verstone_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _VeraeroIii_PvPCreator = new(ActionFactory.Create29684);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29684\"><strong>Veraero III</strong></see> <i>PvP</i> (RDM) [29684] [Spell]\r\n /// <para>Deals wind damage with a potency of 5,000.</para>\n /// <para>Can only be executed while under the effect of White Shift and Dualcast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction VeraeroIii_PvP => _VeraeroIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvPCreator = new(ActionFactory.Create29685);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29685\"><strong>Verholy</strong></see> <i>PvP</i> (RDM) [29685] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Restores own HP</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Additional Effect: Restores HP of party members near target</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Can only be executed while under the effect of White Shift and Vermilion Radiance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvP => _Verholy_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvPCreator = new(ActionFactory.Create29686);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29686\"><strong>Verfire</strong></see> <i>PvP</i> (RDM) [29686] [Spell]\r\n /// <para>Deals fire damage with a potency of 5,000.</para>\n /// <para>Additional Effect: Grants Dualcast, allowing next spell to be cast immediately</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Black Shift.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvP => _Verfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _VerthunderIii_PvPCreator = new(ActionFactory.Create29687);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29687\"><strong>Verthunder III</strong></see> <i>PvP</i> (RDM) [29687] [Spell]\r\n /// <para>Deals lightning damage with a potency of 5,000.</para>\n /// <para>Can only be executed while under the effect of Black Shift and Dualcast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction VerthunderIii_PvP => _VerthunderIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvPCreator = new(ActionFactory.Create29688);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29688\"><strong>Verflare</strong></see> <i>PvP</i> (RDM) [29688] [Spell]\r\n /// <para>Deals fire damage with a potency of 12,000 to target and all enemies nearby it.</para>\n /// <para>Can only be executed while under the effect of Black Shift and Vermilion Radiance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvP => _Verflare_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvPCreator = new(ActionFactory.Create29689);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29689\"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29689] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 6,000.</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Enchanted Zwerchhau upon execution.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvP => _EnchantedRiposte_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvPCreator = new(ActionFactory.Create29690);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29690\"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29690] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 7,000.</para>\n /// <para>Combo Action: Enchanted Riposte</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Enchanted Redoublement upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvP => _EnchantedZwerchhau_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvPCreator = new(ActionFactory.Create29691);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29691\"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29691] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 8,000.</para>\n /// <para>Combo Action: Enchanted Zwerchhau</para>\n /// <para>Additional Effect: Grants Vermilion Radiance</para>\n /// <para>Duration: 10s</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Verholy while under the effect of White Shift and Vermilion Radiance.</para>\n /// <para>※Action changes to Verflare while under the effect of Black Shift and Vermilion Radiance.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvP => _EnchantedRedoublement_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvP_29692Creator = new(ActionFactory.Create29692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29692\"><strong>Enchanted Riposte</strong></see> <i>PvP</i> (RDM) [29692] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 6,000.</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Enchanted Zwerchhau upon execution.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvP_29692 => _EnchantedRiposte_PvP_29692Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvP_29693Creator = new(ActionFactory.Create29693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29693\"><strong>Enchanted Zwerchhau</strong></see> <i>PvP</i> (RDM) [29693] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 7,000.</para>\n /// <para>Combo Action: Enchanted Riposte</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Enchanted Redoublement upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvP_29693 => _EnchantedZwerchhau_PvP_29693Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvP_29694Creator = new(ActionFactory.Create29694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29694\"><strong>Enchanted Redoublement</strong></see> <i>PvP</i> (RDM) [29694] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 8,000.</para>\n /// <para>Combo Action: Enchanted Zwerchhau</para>\n /// <para>Additional Effect: Grants Vermilion Radiance</para>\n /// <para>Duration: 10s</para>\n /// <para>White Shift Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Barrier potency is increased by 10% when target is afflicted with Monomachy</para>\n /// <para>Black Shift Effect: Damage over time</para>\n /// <para>Potency: 3,000</para>\n /// <para>Duration: 6s</para>\n /// <para></para>\n /// <para>※Action changes to Verholy while under the effect of White Shift and Vermilion Radiance.</para>\n /// <para>※Action changes to Verflare while under the effect of Black Shift and Vermilion Radiance.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvP_29694 => _EnchantedRedoublement_PvP_29694Creator.Value;\n private readonly Lazy<IBaseAction> _Resolution_PvPCreator = new(ActionFactory.Create29695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29695\"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29695] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>White Shift Effect: Silence</para>\n /// <para>Duration: 2s</para>\n /// <para>Black Shift Effect: Bind</para>\n /// <para>Duration: 3s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Resolution_PvP => _Resolution_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Resolution_PvP_29696Creator = new(ActionFactory.Create29696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29696\"><strong>Resolution</strong></see> <i>PvP</i> (RDM) [29696] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 8,000 to all enemies in a straight line before you.</para>\n /// <para>White Shift Effect: Silence</para>\n /// <para>Duration: 2s</para>\n /// <para>Black Shift Effect: Bind</para>\n /// <para>Duration: 3s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Resolution_PvP_29696 => _Resolution_PvP_29696Creator.Value;\n private readonly Lazy<IBaseAction> _MagickBarrier_PvPCreator = new(ActionFactory.Create29697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29697\"><strong>Magick Barrier</strong></see> <i>PvP</i> (RDM) [29697] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 10%, while increasing HP recovered via healing actions by 10%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of White Shift.</para>\n /// <para>Shares a recast timer with Frazzle.</para>\n /// <para></para>\n /// <para>※Action changes to Frazzle while under the effect of Black Shift.</para>\r\n /// </summary>\r\n public IBaseAction MagickBarrier_PvP => _MagickBarrier_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Frazzle_PvPCreator = new(ActionFactory.Create29698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29698\"><strong>Frazzle</strong></see> <i>PvP</i> (RDM) [29698] [Ability]\r\n /// <para>Increases damage taken by nearby enemies by 10%, while reducing HP recovered via healing actions by 10%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Black Shift.</para>\n /// <para>Shares a recast timer with Magick Barrier.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Frazzle_PvP => _Frazzle_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvPCreator = new(ActionFactory.Create29699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29699\"><strong>Corps-a-corps</strong></see> <i>PvP</i> (RDM) [29699] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: Afflicts target with Monomachy</para>\n /// <para>Monomachy Effect: Increases damage dealt to target by 10% while lowering damage taken from target by 10%</para>\n /// <para>Duration: 7s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvP => _Corpsacorps_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvPCreator = new(ActionFactory.Create29700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29700\"><strong>Displacement</strong></see> <i>PvP</i> (RDM) [29700] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Additional Effect: 15-yalm backstep</para>\n /// <para>Additional Effect: Grants Manafication</para>\n /// <para>Manafication Effect: Increases damage and healing potency of next spell cast by 20%</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvP => _Displacement_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BlackShift_PvPCreator = new(ActionFactory.Create29702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29702\"><strong>Black Shift</strong></see> <i>PvP</i> (RDM) [29702] [Ability]\r\n /// <para>Grants Black Shift, altering the effects of several actions.</para>\n /// <para>Can only be executed while under the effect of White Shift.</para>\n /// <para></para>\n /// <para>※Action changes to White Shift upon execution.</para>\r\n /// </summary>\r\n public IBaseAction BlackShift_PvP => _BlackShift_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _WhiteShift_PvPCreator = new(ActionFactory.Create29703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29703\"><strong>White Shift</strong></see> <i>PvP</i> (RDM) [29703] [Ability]\r\n /// <para>Grants White Shift, altering the effects of several actions.</para>\n /// <para>Can only be executed while under the effect of Black Shift.</para>\n /// <para>Activates automatically when class is changed to red mage.</para>\n /// <para></para>\n /// <para>※Action changes to Black Shift upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WhiteShift_PvP => _WhiteShift_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SouthernCross_PvPCreator = new(ActionFactory.Create29704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29704\"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29704] [Limit Break]\r\n /// <para>Emblazons a grand cross on the ground beneath a party member or enemy, restoring HP of party members within range while damaging enemies.</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Damage Potency: 8,000</para>\n /// <para>White Shift Effect: Cure potency is increased by 50%</para>\n /// <para>Black Shift Effect: Damage potency is increased by 50%</para>\n /// <para>Targets standing at the cross's center will receive the effects of this action twice.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\r\n /// </summary>\r\n public IBaseAction SouthernCross_PvP => _SouthernCross_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SouthernCross_PvP_29705Creator = new(ActionFactory.Create29705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29705\"><strong>Southern Cross</strong></see> <i>PvP</i> (RDM) [29705] [Limit Break]\r\n /// <para>Emblazons a grand cross on the ground beneath a party member or enemy, restoring HP of party members within range while damaging enemies.</para>\n /// <para>Cure Potency: 8,000</para>\n /// <para>Damage Potency: 8,000</para>\n /// <para>White Shift Effect: Cure potency is increased by 50%</para>\n /// <para>Black Shift Effect: Damage potency is increased by 50%</para>\n /// <para>Targets standing at the cross's center will receive the effects of this action twice.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\r\n /// </summary>\r\n public IBaseAction SouthernCross_PvP_29705 => _SouthernCross_PvP_29705Creator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _EnhancedJoltTraitCreator = new(() => new BaseTrait(195));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50195\"><strong>Enhanced Jolt</strong></see> (RDM) [195]\r\n /// <para>Upgrades Jolt to Jolt II. Also increases the potency of Verthunder and Veraero to 360, and the potency of Verfire and Verstone to 300.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedJoltTrait => _EnhancedJoltTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(200));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50200\"><strong>Maim and Mend</strong></see> (RDM) [200]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(201));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50201\"><strong>Maim and Mend II</strong></see> (RDM) [201]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DualcastTraitCreator = new(() => new BaseTrait(216));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50216\"><strong>Dualcast</strong></see> (RDM) [216]\r\n /// <para>Grants the effect of Dualcast upon casting any spell with a cast time. While under the effect of Dualcast, your next spell will require no time to cast. Effect is canceled upon execution of any action other than an ability. Auto-attacks do not cancel effect.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseTrait DualcastTrait => _DualcastTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ScatterMasteryTraitCreator = new(() => new BaseTrait(303));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50303\"><strong>Scatter Mastery</strong></see> (RDM) [303]\r\n /// <para>Upgrades Scatter to Impact.</para>\r\n /// </summary>\r\n public IBaseTrait ScatterMasteryTrait => _ScatterMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDisplacementTraitCreator = new(() => new BaseTrait(304));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50304\"><strong>Enhanced Displacement</strong></see> (RDM) [304]\r\n /// <para>Increases Displacement and Engagement potency to 180.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDisplacementTrait => _EnhancedDisplacementTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedManaficationTraitCreator = new(() => new BaseTrait(305));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50305\"><strong>Enhanced Manafication</strong></see> (RDM) [305]\r\n /// <para>Reduces Manafication recast timer to 110 seconds and adds an additional effect that increases magic damage dealt by 5%.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedManaficationTrait => _EnhancedManaficationTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RedMagicMasteryTraitCreator = new(() => new BaseTrait(306));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50306\"><strong>Red Magic Mastery</strong></see> (RDM) [306]\r\n /// <para>Reduces Contre Sixte recast timer to 35 seconds and increases the potency of both Verthunder II and Veraero II to 120.</para>\r\n /// </summary>\r\n public IBaseTrait RedMagicMasteryTrait => _RedMagicMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ManaStackTraitCreator = new(() => new BaseTrait(482));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50482\"><strong>Mana Stack</strong></see> (RDM) [482]\r\n /// <para>Adds a Mana Stack to your Balance Gauge upon landing Enchanted Riposte, Enchanted Zwerchhau, Enchanted Redoublement, or Enchanted Moulinet, up to a maximum of 3.</para>\n /// <para>Upon gaining 3 Mana Stacks, Verthunder and Verthunder II are upgraded to Verflare.</para>\n /// <para>Upon learning Verholy, gaining 3 Mana Stacks also upgrades Veraero and Veraero II to Verholy.</para>\r\n /// </summary>\r\n public IBaseTrait ManaStackTrait => _ManaStackTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RedMagicMasteryIiTraitCreator = new(() => new BaseTrait(483));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50483\"><strong>Red Magic Mastery II</strong></see> (RDM) [483]\r\n /// <para>Upgrades Verthunder to Verthunder III and Veraero to Veraero III.</para>\n /// <para>Upon gaining 3 Mana Stacks, Verthunder III is upgraded to Verflare and Veraero III is upgraded to Verholy.</para>\r\n /// </summary>\r\n public IBaseTrait RedMagicMasteryIiTrait => _RedMagicMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _RedMagicMasteryIiiTraitCreator = new(() => new BaseTrait(484));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50484\"><strong>Red Magic Mastery III</strong></see> (RDM) [484]\r\n /// <para>Increases the potency of Enchanted Riposte to 280, Verthunder II to 140, Veraero II to 140, Verfire to 340, Verstone to 340, Enchanted Zwerchhau to 150, Enchanted Redoublement to 130, Jolt II to 320, Impact to 210, and Enchanted Reprise to 340.</para>\r\n /// </summary>\r\n public IBaseTrait RedMagicMasteryIiiTrait => _RedMagicMasteryIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAccelerationTraitCreator = new(() => new BaseTrait(485));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50485\"><strong>Enhanced Acceleration</strong></see> (RDM) [485]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Acceleration.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAccelerationTrait => _EnhancedAccelerationTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedManaficationIiTraitCreator = new(() => new BaseTrait(486));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50486\"><strong>Enhanced Manafication II</strong></see> (RDM) [486]\r\n /// <para>Increases maximum stacks of Manafication to 6.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedManaficationIiTrait => _EnhancedManaficationIiTraitCreator.Value;\r\n#endregion\r\n}", + "BlueMageRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/bluemage\"><strong>Blue Mage</strong></see>\r\n/// </summary>\r\npublic abstract partial class BlueMageRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.BLU };\r\n static BLUGauge JobGauge => Svc.Gauges.Get<BLUGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Addle_PvECreator = new(ActionFactory.Create7560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7560\"><strong>Addle</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [7560] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 5% and magic damage dealt by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Addle_PvE => _Addle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvE_11383Creator = new(ActionFactory.Create11383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11383\"><strong>Snort</strong></see> <i>PvE</i> (BLU) [11383] [Spell]\r\n /// <para>Deals a 20-yalm knockback to all enemies in a cone before you.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE_11383 => _Snort_PvE_11383Creator.Value;\n private readonly Lazy<IBaseAction> __4TonzeWeight_PvECreator = new(ActionFactory.Create11384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11384\"><strong>4-tonze Weight</strong></see> <i>PvE</i> (BLU) [11384] [Spell]\r\n /// <para>Drops a 4-tonze weight dealing physical damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Heavy +40%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction _4TonzeWeight_PvE => __4TonzeWeight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaterCannon_PvECreator = new(ActionFactory.Create11385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11385\"><strong>Water Cannon</strong></see> <i>PvE</i> (BLU) [11385] [Spell]\r\n /// <para>Deals water damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction WaterCannon_PvE => _WaterCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SongOfTorment_PvECreator = new(ActionFactory.Create11386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11386\"><strong>Song of Torment</strong></see> <i>PvE</i> (BLU) [11386] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 50.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction SongOfTorment_PvE => _SongOfTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighVoltage_PvECreator = new(ActionFactory.Create11387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11387\"><strong>High Voltage</strong></see> <i>PvE</i> (BLU) [11387] [Spell]\r\n /// <para>Deals lightning damage to all nearby enemies with a potency of 180 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Paralysis</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Potency increased to 220 when target is afflicted with Dropsy</para>\n /// <para>Additional Effect: Duration of Paralysis is increased to 30 seconds when target is afflicted with Dropsy</para>\r\n /// </summary>\r\n public IBaseAction HighVoltage_PvE => _HighVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BadBreath_PvECreator = new(ActionFactory.Create11388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11388\"><strong>Bad Breath</strong></see> <i>PvE</i> (BLU) [11388] [Spell]\r\n /// <para>Blow noxious breath on all enemies in a cone before you, inflicting Slow +20%, Heavy +40%, Blind, and Paralysis.</para>\n /// <para>Additional Effect: Poison</para>\n /// <para>Potency: 20</para>\n /// <para>Additional Effect: Damage dealt reduced 10%</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Interrupts target</para>\r\n /// </summary>\r\n public IBaseAction BadBreath_PvE => _BadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FlyingFrenzy_PvECreator = new(ActionFactory.Create11389);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11389\"><strong>Flying Frenzy</strong></see> <i>PvE</i> (BLU) [11389] [Spell]\r\n /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 150 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction FlyingFrenzy_PvE => _FlyingFrenzy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaBreath_PvECreator = new(ActionFactory.Create11390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11390\"><strong>Aqua Breath</strong></see> <i>PvE</i> (BLU) [11390] [Spell]\r\n /// <para>Deals water damage to all enemies in a cone before you with a potency of 140 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Inflicts Dropsy, dealing water damage over time</para>\n /// <para>Potency: 20</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction AquaBreath_PvE => _AquaBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Plaincracker_PvECreator = new(ActionFactory.Create11391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11391\"><strong>Plaincracker</strong></see> <i>PvE</i> (BLU) [11391] [Spell]\r\n /// <para>Deals earth damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Plaincracker_PvE => _Plaincracker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcornBomb_PvECreator = new(ActionFactory.Create11392);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11392\"><strong>Acorn Bomb</strong></see> <i>PvE</i> (BLU) [11392] [Spell]\r\n /// <para>Puts target and all enemies nearby it to sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction AcornBomb_PvE => _AcornBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bristle_PvECreator = new(ActionFactory.Create11393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11393\"><strong>Bristle</strong></see> <i>PvE</i> (BLU) [11393] [Spell]\r\n /// <para>Increases the potency of the next spell cast by 50%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Harmonized.</para>\r\n /// </summary>\r\n public IBaseAction Bristle_PvE => _Bristle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MindBlast_PvECreator = new(ActionFactory.Create11394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11394\"><strong>Mind Blast</strong></see> <i>PvE</i> (BLU) [11394] [Spell]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Paralysis</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction MindBlast_PvE => _MindBlast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodDrain_PvECreator = new(ActionFactory.Create11395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11395\"><strong>Blood Drain</strong></see> <i>PvE</i> (BLU) [11395] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 50.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction BloodDrain_PvE => _BloodDrain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BombToss_PvECreator = new(ActionFactory.Create11396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11396\"><strong>Bomb Toss</strong></see> <i>PvE</i> (BLU) [11396] [Spell]\r\n /// <para>Deals fire damage at a designated location with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction BombToss_PvE => _BombToss_PvECreator.Value;\n private readonly Lazy<IBaseAction> __1000Needles_PvECreator = new(ActionFactory.Create11397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11397\"><strong>1000 Needles</strong></see> <i>PvE</i> (BLU) [11397] [Spell]\r\n /// <para>Deals a fixed 1,000 points of physical damage which is shared by all enemies around you.</para>\r\n /// </summary>\r\n public IBaseAction _1000Needles_PvE => __1000Needles_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DrillCannons_PvECreator = new(ActionFactory.Create11398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11398\"><strong>Drill Cannons</strong></see> <i>PvE</i> (BLU) [11398] [Spell]\r\n /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Potency is increased to 600 when target is afflicted with Petrification. The Petrification effect is also removed.</para>\r\n /// </summary>\r\n public IBaseAction DrillCannons_PvE => _DrillCannons_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheLook_PvECreator = new(ActionFactory.Create11399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11399\"><strong>the Look</strong></see> <i>PvE</i> (BLU) [11399] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Increased enmity</para>\r\n /// </summary>\r\n public IBaseAction TheLook_PvE => _TheLook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SharpenedKnife_PvECreator = new(ActionFactory.Create11400);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11400\"><strong>Sharpened Knife</strong></see> <i>PvE</i> (BLU) [11400] [Spell]\r\n /// <para>Deals physical damage with a potency of 220.</para>\n /// <para>Additional Effect: Potency is increased to 450 when target is stunned</para>\r\n /// </summary>\r\n public IBaseAction SharpenedKnife_PvE => _SharpenedKnife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Loom_PvECreator = new(ActionFactory.Create11401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11401\"><strong>Loom</strong></see> <i>PvE</i> (BLU) [11401] [Spell]\r\n /// <para>Move quickly to the specified location.</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction Loom_PvE => _Loom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FlameThrower_PvECreator = new(ActionFactory.Create11402);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11402\"><strong>Flame Thrower</strong></see> <i>PvE</i> (BLU) [11402] [Spell]\r\n /// <para>Deals fire damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction FlameThrower_PvE => _FlameThrower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Faze_PvECreator = new(ActionFactory.Create11403);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11403\"><strong>Faze</strong></see> <i>PvE</i> (BLU) [11403] [Spell]\r\n /// <para>Stuns all enemies in a cone before you.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Faze_PvE => _Faze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Glower_PvECreator = new(ActionFactory.Create11404);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11404\"><strong>Glower</strong></see> <i>PvE</i> (BLU) [11404] [Spell]\r\n /// <para>Deals lightning damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Paralysis</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Glower_PvE => _Glower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Missile_PvECreator = new(ActionFactory.Create11405);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11405\"><strong>Missile</strong></see> <i>PvE</i> (BLU) [11405] [Spell]\r\n /// <para>Deals damage equal to 50% of target's current HP.</para>\n /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction Missile_PvE => _Missile_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhiteWind_PvECreator = new(ActionFactory.Create11406);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11406\"><strong>White Wind</strong></see> <i>PvE</i> (BLU) [11406] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members by an amount equal to your current HP.</para>\r\n /// </summary>\r\n public IBaseAction WhiteWind_PvE => _WhiteWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalSting_PvECreator = new(ActionFactory.Create11407);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11407\"><strong>Final Sting</strong></see> <i>PvE</i> (BLU) [11407] [Spell]\r\n /// <para>Deals physical damage with a potency of 2,000 while incapacitating self.</para>\n /// <para>Additional Effect: Inflicts Brush with Death on self</para>\n /// <para>Duration: 600s</para>\n /// <para>Effect will not be removed upon revival or further incapacitation.</para>\n /// <para>Cannot be executed while under the effect of Brush with Death.</para>\r\n /// </summary>\r\n public IBaseAction FinalSting_PvE => _FinalSting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdestruct_PvECreator = new(ActionFactory.Create11408);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11408\"><strong>Self-destruct</strong></see> <i>PvE</i> (BLU) [11408] [Spell]\r\n /// <para>Deals fire damage with a potency of 1,500 to all nearby enemies while incapacitating self.</para>\n /// <para>Additional Effect: Potency is increased to 1,800 when you are under the effect of Toad Oil</para>\n /// <para>Additional Effect: Inflicts Brush with Death on self</para>\n /// <para>Duration: 600s</para>\n /// <para>Effect will not be removed upon revival or further incapacitation.</para>\n /// <para>Cannot be executed while under the effect of Brush with Death.</para>\r\n /// </summary>\r\n public IBaseAction Selfdestruct_PvE => _Selfdestruct_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Transfusion_PvECreator = new(ActionFactory.Create11409);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11409\"><strong>Transfusion</strong></see> <i>PvE</i> (BLU) [11409] [Spell]\r\n /// <para>Restores all HP and MP of a single party member while incapacitating self.</para>\n /// <para>Additional Effect: Inflicts Brush with Death on self</para>\n /// <para>Duration: 600s</para>\n /// <para>Effect will not be removed upon revival or further incapacitation.</para>\n /// <para>Cannot be executed while under the effect of Brush with Death.</para>\r\n /// </summary>\r\n public IBaseAction Transfusion_PvE => _Transfusion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadOil_PvECreator = new(ActionFactory.Create11410);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11410\"><strong>Toad Oil</strong></see> <i>PvE</i> (BLU) [11410] [Spell]\r\n /// <para>Increases evasion by 20%.</para>\n /// <para>Duration: 180s</para>\r\n /// </summary>\r\n public IBaseAction ToadOil_PvE => _ToadOil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Offguard_PvECreator = new(ActionFactory.Create11411);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11411\"><strong>Off-guard</strong></see> <i>PvE</i> (BLU) [11411] [Spell]\r\n /// <para>Increases target's damage taken by 5%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Recast timer cannot be affected by other spells. However, this action shares a recast timer with Peculiar Light.</para>\r\n /// </summary>\r\n public IBaseAction Offguard_PvE => _Offguard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StickyTongue_PvECreator = new(ActionFactory.Create11412);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11412\"><strong>Sticky Tongue</strong></see> <i>PvE</i> (BLU) [11412] [Spell]\r\n /// <para>Draws target towards caster.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Increased enmity</para>\r\n /// </summary>\r\n public IBaseAction StickyTongue_PvE => _StickyTongue_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TailScrew_PvECreator = new(ActionFactory.Create11413);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11413\"><strong>Tail Screw</strong></see> <i>PvE</i> (BLU) [11413] [Spell]\r\n /// <para>Reduces target's HP to a single digit.</para>\n /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction TailScrew_PvE => _TailScrew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Level5Petrify_PvECreator = new(ActionFactory.Create11414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11414\"><strong>Level 5 Petrify</strong></see> <i>PvE</i> (BLU) [11414] [Spell]\r\n /// <para>Petrifies all enemies in a cone before you.</para>\n /// <para>Duration: 20s</para>\n /// <para>Chance of successful attack is low.</para>\n /// <para>Enemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction Level5Petrify_PvE => _Level5Petrify_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MoonFlute_PvECreator = new(ActionFactory.Create11415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11415\"><strong>Moon Flute</strong></see> <i>PvE</i> (BLU) [11415] [Spell]\r\n /// <para>Grants the effect of Waxing Nocturne, increasing damage dealt by 50% and movement speed by 30%.</para>\n /// <para>Duration: 15s</para>\n /// <para>When effect ends, the player is afflicted with Waning Nocturne, preventing the use of auto-attack, weaponskills, spells, or abilities.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MoonFlute_PvE => _MoonFlute_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Doom_PvECreator = new(ActionFactory.Create11416);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11416\"><strong>Doom</strong></see> <i>PvE</i> (BLU) [11416] [Spell]\r\n /// <para>Inflicts Doom on target.</para>\n /// <para>Duration: 15s</para>\n /// <para>When effect expires, the target will be KO'd.</para>\n /// <para>Chance of successful attack is low. Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction Doom_PvE => _Doom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyGuard_PvECreator = new(ActionFactory.Create11417);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11417\"><strong>Mighty Guard</strong></see> <i>PvE</i> (BLU) [11417] [Spell]\r\n /// <para>Reduces damage taken by 40% while reducing damage dealt by 40%, increasing enmity generation, and preventing casting interruptions via damage taken.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction MightyGuard_PvE => _MightyGuard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IceSpikes_PvECreator = new(ActionFactory.Create11418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11418\"><strong>Ice Spikes</strong></see> <i>PvE</i> (BLU) [11418] [Spell]\r\n /// <para>Counters enemies with ice damage every time you suffer physical damage.</para>\n /// <para>Counter Potency: 40</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Veil of the Whorl or Schiltron.</para>\n /// <para>Additional Effect: 50% chance that when you are struck, the striker will be afflicted with Slow +20%</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IceSpikes_PvE => _IceSpikes_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheRamsVoice_PvECreator = new(ActionFactory.Create11419);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11419\"><strong>the Ram's Voice</strong></see> <i>PvE</i> (BLU) [11419] [Spell]\r\n /// <para>Deals ice damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Deep Freeze</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction TheRamsVoice_PvE => _TheRamsVoice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheDragonsVoice_PvECreator = new(ActionFactory.Create11420);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11420\"><strong>the Dragon's Voice</strong></see> <i>PvE</i> (BLU) [11420] [Spell]\r\n /// <para>Deals lightning damage to all nearby enemies with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Enemies within an 8-yalm radius will be unaffected.</para>\n /// <para>Additional Effect: Paralysis</para>\n /// <para>Duration: 9s</para>\n /// <para>Additional Effect: Potency is increased to 400 against most enemies afflicted with Deep Freeze. The Deep Freeze effect is also removed.</para>\r\n /// </summary>\r\n public IBaseAction TheDragonsVoice_PvE => _TheDragonsVoice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create11421);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11421\"><strong>Peculiar Light</strong></see> <i>PvE</i> (BLU) [11421] [Spell]\r\n /// <para>Increases magic damage taken by all nearby enemies by 5%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Recast timer cannot be affected by other spells. However, this action shares a recast timer with Off-guard.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InkJet_PvECreator = new(ActionFactory.Create11422);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11422\"><strong>Ink Jet</strong></see> <i>PvE</i> (BLU) [11422] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Blind</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction InkJet_PvE => _InkJet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FlyingSardine_PvECreator = new(ActionFactory.Create11423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11423\"><strong>Flying Sardine</strong></see> <i>PvE</i> (BLU) [11423] [Spell]\r\n /// <para>Deals physical damage with a potency of 10.</para>\n /// <para>Additional Effect: Interrupts target</para>\r\n /// </summary>\r\n public IBaseAction FlyingSardine_PvE => _FlyingSardine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diamondback_PvECreator = new(ActionFactory.Create11424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11424\"><strong>Diamondback</strong></see> <i>PvE</i> (BLU) [11424] [Spell]\r\n /// <para>Reduces damage taken by 90% and nullifies most knockback and draw-in effects.</para>\n /// <para>Unable to move or take action for the duration of this effect.</para>\n /// <para>Duration: 10s</para>\n /// <para>If used when Waxing Nocturne is active, its effect will transition immediately to Waning Nocturne.</para>\n /// <para>The effect of this action cannot be ended manually.</para>\r\n /// </summary>\r\n public IBaseAction Diamondback_PvE => _Diamondback_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireAngon_PvECreator = new(ActionFactory.Create11425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11425\"><strong>Fire Angon</strong></see> <i>PvE</i> (BLU) [11425] [Spell]\r\n /// <para>Deals physical fire damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction FireAngon_PvE => _FireAngon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherRain_PvECreator = new(ActionFactory.Create11426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11426\"><strong>Feather Rain</strong></see> <i>PvE</i> (BLU) [11426] [Ability]\r\n /// <para>Deals wind damage with a potency of 220 to all enemies at a designated location.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 6s</para>\n /// <para>Shares a recast timer with Eruption.</para>\r\n /// </summary>\r\n public IBaseAction FeatherRain_PvE => _FeatherRain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Eruption_PvECreator = new(ActionFactory.Create11427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11427\"><strong>Eruption</strong></see> <i>PvE</i> (BLU) [11427] [Ability]\r\n /// <para>Deals fire damage with a potency of 300 to all enemies at a designated location.</para>\n /// <para>Shares a recast timer with Feather Rain.</para>\r\n /// </summary>\r\n public IBaseAction Eruption_PvE => _Eruption_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MountainBuster_PvECreator = new(ActionFactory.Create11428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11428\"><strong>Mountain Buster</strong></see> <i>PvE</i> (BLU) [11428] [Ability]\r\n /// <para>Deals physical earth damage to all enemies in a cone before you with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Shares a recast timer with Shock Strike.</para>\r\n /// </summary>\r\n public IBaseAction MountainBuster_PvE => _MountainBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShockStrike_PvECreator = new(ActionFactory.Create11429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11429\"><strong>Shock Strike</strong></see> <i>PvE</i> (BLU) [11429] [Ability]\r\n /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Shares a recast timer with Mountain Buster.</para>\r\n /// </summary>\r\n public IBaseAction ShockStrike_PvE => _ShockStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GlassDance_PvECreator = new(ActionFactory.Create11430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11430\"><strong>Glass Dance</strong></see> <i>PvE</i> (BLU) [11430] [Ability]\r\n /// <para>Deals ice damage to all enemies in a wide arc to your fore and flanks with a potency of 350 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Shares a recast timer with Veil of the Whorl.</para>\r\n /// </summary>\r\n public IBaseAction GlassDance_PvE => _GlassDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VeilOfTheWhorl_PvECreator = new(ActionFactory.Create11431);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11431\"><strong>Veil of the Whorl</strong></see> <i>PvE</i> (BLU) [11431] [Ability]\r\n /// <para>Counters enemies with water damage every time you suffer damage.</para>\n /// <para>Counter Potency: 50</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Ice Spikes or Schiltron.</para>\n /// <para>Shares a recast timer with Glass Dance.</para>\r\n /// </summary>\r\n public IBaseAction VeilOfTheWhorl_PvE => _VeilOfTheWhorl_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _AlpineDraft_PvECreator = new(ActionFactory.Create18295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18295\"><strong>Alpine Draft</strong></see> <i>PvE</i> (BLU) [18295] [Spell]\r\n /// <para>Deals wind damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction AlpineDraft_PvE => _AlpineDraft_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProteanWave_PvECreator = new(ActionFactory.Create18296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18296\"><strong>Protean Wave</strong></see> <i>PvE</i> (BLU) [18296] [Spell]\r\n /// <para>Deals water damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction ProteanWave_PvE => _ProteanWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Northerlies_PvECreator = new(ActionFactory.Create18297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18297\"><strong>Northerlies</strong></see> <i>PvE</i> (BLU) [18297] [Spell]\r\n /// <para>Deals ice damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Enemies affected by Dropsy are frozen. The Dropsy effect is also removed.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Northerlies_PvE => _Northerlies_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Electrogenesis_PvECreator = new(ActionFactory.Create18298);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18298\"><strong>Electrogenesis</strong></see> <i>PvE</i> (BLU) [18298] [Spell]\r\n /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Electrogenesis_PvE => _Electrogenesis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kaltstrahl_PvECreator = new(ActionFactory.Create18299);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18299\"><strong>Kaltstrahl</strong></see> <i>PvE</i> (BLU) [18299] [Spell]\r\n /// <para>Deals physical damage to all enemies in a cone before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Kaltstrahl_PvE => _Kaltstrahl_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AbyssalTransfixion_PvECreator = new(ActionFactory.Create18300);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18300\"><strong>Abyssal Transfixion</strong></see> <i>PvE</i> (BLU) [18300] [Spell]\r\n /// <para>Deals physical damage with a potency of 220.</para>\n /// <para>Additional Effect: Paralysis</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AbyssalTransfixion_PvE => _AbyssalTransfixion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chirp_PvECreator = new(ActionFactory.Create18301);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18301\"><strong>Chirp</strong></see> <i>PvE</i> (BLU) [18301] [Spell]\r\n /// <para>Puts all nearby enemies to sleep.</para>\n /// <para>Duration: 40s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Chirp_PvE => _Chirp_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EerieSoundwave_PvECreator = new(ActionFactory.Create18302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18302\"><strong>Eerie Soundwave</strong></see> <i>PvE</i> (BLU) [18302] [Spell]\r\n /// <para>Removes one beneficial effect from all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction EerieSoundwave_PvE => _EerieSoundwave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomCure_PvECreator = new(ActionFactory.Create18303);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18303\"><strong>Pom Cure</strong></see> <i>PvE</i> (BLU) [18303] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Cure potency is increased to 500 when you are under the effect of Aetheric Mimicry: Healer.</para>\r\n /// </summary>\r\n public IBaseAction PomCure_PvE => _PomCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gobskin_PvECreator = new(ActionFactory.Create18304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18304\"><strong>Gobskin</strong></see> <i>PvE</i> (BLU) [18304] [Spell]\r\n /// <para>Creates a barrier around self and all nearby party members that absorbs damage equivalent to a heal of 100 potency.</para>\n /// <para>Duration: 30s</para>\n /// <para>Barrier strength is increased to absorb damage equivalent to a heal of 250 potency when you are under the effect of Aetheric Mimicry: Healer.</para>\n /// <para>Effect cannot be stacked with those of scholar's Galvanize or sage's Eukrasian Diagnosis and Eukrasian Prognosis.</para>\r\n /// </summary>\r\n public IBaseAction Gobskin_PvE => _Gobskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicHammer_PvECreator = new(ActionFactory.Create18305);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18305\"><strong>Magic Hammer</strong></see> <i>PvE</i> (BLU) [18305] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Lowers intelligence and mind attributes by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Restores 10% of maximum MP</para>\n /// <para>Shares a recast timer with Candy Cane.</para>\r\n /// </summary>\r\n public IBaseAction MagicHammer_PvE => _MagicHammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Avail_PvECreator = new(ActionFactory.Create18306);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18306\"><strong>Avail</strong></see> <i>PvE</i> (BLU) [18306] [Spell]\r\n /// <para>Direct damage intended for you to another party member.</para>\n /// <para>Duration: 12s</para>\n /// <para>Can only be executed when member is within 10 yalms. Does not activate with certain attacks.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Avail_PvE => _Avail_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FrogLegs_PvECreator = new(ActionFactory.Create18307);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18307\"><strong>Frog Legs</strong></see> <i>PvE</i> (BLU) [18307] [Spell]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list.</para>\r\n /// </summary>\r\n public IBaseAction FrogLegs_PvE => _FrogLegs_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicBoom_PvECreator = new(ActionFactory.Create18308);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18308\"><strong>Sonic Boom</strong></see> <i>PvE</i> (BLU) [18308] [Spell]\r\n /// <para>Deals wind damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction SonicBoom_PvE => _SonicBoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whistle_PvECreator = new(ActionFactory.Create18309);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18309\"><strong>Whistle</strong></see> <i>PvE</i> (BLU) [18309] [Spell]\r\n /// <para>Increases the potency of the next physical damage spell cast by 80%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Boost.</para>\r\n /// </summary>\r\n public IBaseAction Whistle_PvE => _Whistle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhiteKnightsTour_PvECreator = new(ActionFactory.Create18310);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18310\"><strong>White Knight's Tour</strong></see> <i>PvE</i> (BLU) [18310] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Potency is increased to 400 when enemies are bound. The Bind effect is also removed.</para>\n /// <para>Additional Effect: Slow +20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction WhiteKnightsTour_PvE => _WhiteKnightsTour_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackKnightsTour_PvECreator = new(ActionFactory.Create18311);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18311\"><strong>Black Knight's Tour</strong></see> <i>PvE</i> (BLU) [18311] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Potency is increased to 400 when enemies are under the effect of Slow. The Slow effect is also removed.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction BlackKnightsTour_PvE => _BlackKnightsTour_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Level5Death_PvECreator = new(ActionFactory.Create18312);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18312\"><strong>Level 5 Death</strong></see> <i>PvE</i> (BLU) [18312] [Spell]\r\n /// <para>KOs all nearby enemies.</para>\n /// <para>Chance of successful attack is low.</para>\n /// <para>Enemy level must be a multiple of 5. Has no effect on enemies whose level is higher than your own.</para>\n /// <para>Shares a recast timer with Ultravibration.</para>\r\n /// </summary>\r\n public IBaseAction Level5Death_PvE => _Level5Death_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Launcher_PvECreator = new(ActionFactory.Create18313);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18313\"><strong>Launcher</strong></see> <i>PvE</i> (BLU) [18313] [Spell]\r\n /// <para>Delivers an attack to all nearby enemies randomly dealing 50%, 30%, 20%, or 10% of their HP.</para>\n /// <para>Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction Launcher_PvE => _Launcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerpetualRay_PvECreator = new(ActionFactory.Create18314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18314\"><strong>Perpetual Ray</strong></see> <i>PvE</i> (BLU) [18314] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 220.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\n /// <para>Ignores target's Stun resistance.</para>\r\n /// </summary>\r\n public IBaseAction PerpetualRay_PvE => _PerpetualRay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cactguard_PvECreator = new(ActionFactory.Create18315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18315\"><strong>Cactguard</strong></see> <i>PvE</i> (BLU) [18315] [Spell]\r\n /// <para>Reduces target party member's damage taken by 5%.</para>\n /// <para>Duration: 6s</para>\n /// <para>Increases damage reduction to 15% when you are under the effect of Aetheric Mimicry: Tank.</para>\r\n /// </summary>\r\n public IBaseAction Cactguard_PvE => _Cactguard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RevengeBlast_PvECreator = new(ActionFactory.Create18316);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18316\"><strong>Revenge Blast</strong></see> <i>PvE</i> (BLU) [18316] [Spell]\r\n /// <para>Deals physical damage with a potency of 50.</para>\n /// <para>Potency is increased to 500 when your HP is below 20%.</para>\r\n /// </summary>\r\n public IBaseAction RevengeBlast_PvE => _RevengeBlast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelWhisper_PvECreator = new(ActionFactory.Create18317);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18317\"><strong>Angel Whisper</strong></see> <i>PvE</i> (BLU) [18317] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AngelWhisper_PvE => _AngelWhisper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Exuviation_PvECreator = new(ActionFactory.Create18318);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18318\"><strong>Exuviation</strong></see> <i>PvE</i> (BLU) [18318] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 50</para>\n /// <para>Additional Effect: Removes one detrimental effect from all nearby party members</para>\n /// <para>Cure potency is increased to 300 when you are under the effect of Aetheric Mimicry: Healer.</para>\r\n /// </summary>\r\n public IBaseAction Exuviation_PvE => _Exuviation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reflux_PvECreator = new(ActionFactory.Create18319);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18319\"><strong>Reflux</strong></see> <i>PvE</i> (BLU) [18319] [Spell]\r\n /// <para>Deals lightning damage with a potency of 220.</para>\n /// <para>Additional Effect: Heavy +40%</para>\n /// <para>Duration: 10s</para>\n /// <para>Ignores target's Heavy resistance.</para>\r\n /// </summary>\r\n public IBaseAction Reflux_PvE => _Reflux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Devour_PvECreator = new(ActionFactory.Create18320);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18320\"><strong>Devour</strong></see> <i>PvE</i> (BLU) [18320] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 250.</para>\n /// <para>Additional Effect: Increases maximum HP by 20%</para>\n /// <para>Duration: 15s</para>\n /// <para>Increases duration to 70s when you are under the effect of Aetheric Mimicry: Tank.</para>\n /// <para>Additional Effect: Restores an amount of own HP equal to damage dealt</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Devour_PvE => _Devour_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CondensedLibra_PvECreator = new(ActionFactory.Create18321);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18321\"><strong>Condensed Libra</strong></see> <i>PvE</i> (BLU) [18321] [Spell]\r\n /// <para>Afflicts target with Physical Attenuation, Astral Attenuation, or Umbral Attenuation.</para>\n /// <para>Duration: 30s</para>\n /// <para>Physical Attenuation Effect: Increases damage taken from physical attacks by 5%</para>\n /// <para>Astral Attenuation Effect: Increases damage taken from fire-, wind-, and lightning-aspected attacks by 5%</para>\n /// <para>Umbral Attenuation Effect: Increases damage taken from water-, earth-, and ice-aspected attacks by 5%</para>\n /// <para>Only one of these statuses can be applied to a target at a time.</para>\r\n /// </summary>\r\n public IBaseAction CondensedLibra_PvE => _CondensedLibra_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericMimicry_PvECreator = new(ActionFactory.Create18322);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18322\"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [18322] [Spell]\r\n /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para>\n /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para>\n /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para>\n /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing potency by 20% and augmenting certain blue magic spells.</para>\n /// <para>Cannot be cast on self. Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction AethericMimicry_PvE => _AethericMimicry_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surpanakha_PvECreator = new(ActionFactory.Create18323);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18323\"><strong>Surpanakha</strong></see> <i>PvE</i> (BLU) [18323] [Ability]\r\n /// <para>Deals earth damage to all enemies in a cone before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Surpanakha's Fury, increasing potency of Surpanakha by 50%</para>\n /// <para>Duration: 3s</para>\n /// <para>Can be stacked up to 3 times.</para>\n /// <para>Maximum Charges: 4</para>\n /// <para>Effect is canceled upon execution of any action other than Surpanakha.</para>\r\n /// </summary>\r\n public IBaseAction Surpanakha_PvE => _Surpanakha_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quasar_PvECreator = new(ActionFactory.Create18324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18324\"><strong>Quasar</strong></see> <i>PvE</i> (BLU) [18324] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Shares a recast timer with J Kick.</para>\r\n /// </summary>\r\n public IBaseAction Quasar_PvE => _Quasar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _JKick_PvECreator = new(ActionFactory.Create18325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18325\"><strong>J Kick</strong></see> <i>PvE</i> (BLU) [18325] [Ability]\r\n /// <para>Delivers a jumping physical attack to target and all enemies nearby it with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>Shares a recast timer with Quasar.</para>\r\n /// </summary>\r\n public IBaseAction JKick_PvE => _JKick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericMimicry_PvE_19238Creator = new(ActionFactory.Create19238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19238\"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19238] [Spell]\r\n /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para>\n /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para>\n /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para>\n /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para>\n /// <para>Cannot be cast on self. Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction AethericMimicry_PvE_19238 => _AethericMimicry_PvE_19238Creator.Value;\n private readonly Lazy<IBaseAction> _AethericMimicry_PvE_19239Creator = new(ActionFactory.Create19239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19239\"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19239] [Spell]\r\n /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para>\n /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para>\n /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para>\n /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para>\n /// <para>Cannot be cast on self. Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction AethericMimicry_PvE_19239 => _AethericMimicry_PvE_19239Creator.Value;\n private readonly Lazy<IBaseAction> _AethericMimicry_PvE_19240Creator = new(ActionFactory.Create19240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19240\"><strong>Aetheric Mimicry</strong></see> <i>PvE</i> (BLU) [19240] [Spell]\r\n /// <para>Mirror the aetheric properties of your target, granting yourself a beneficial effect corresponding with the target's role.</para>\n /// <para>If target is a tank, grants Aetheric Mimicry: Tank, increasing your defense and augmenting certain blue magic spells.</para>\n /// <para>If target is a DPS, grants Aetheric Mimicry: DPS, increasing critical hit rate and direct hit rate by 20%, as well as augmenting certain blue magic spells.</para>\n /// <para>If target is a healer, grants Aetheric Mimicry: Healer, increasing healing magic potency by 20% and augmenting certain blue magic spells.</para>\n /// <para>Cannot be cast on self. Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction AethericMimicry_PvE_19240 => _AethericMimicry_PvE_19240Creator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20030Creator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20030 => _PeculiarLight_PvE_20030Creator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _TripleTrident_PvECreator = new(ActionFactory.Create23264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23264\"><strong>Triple Trident</strong></see> <i>PvE</i> (BLU) [23264] [Spell]\r\n /// <para>Delivers a threefold attack, each hit with a potency of 150.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction TripleTrident_PvE => _TripleTrident_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tingle_PvECreator = new(ActionFactory.Create23265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23265\"><strong>Tingle</strong></see> <i>PvE</i> (BLU) [23265] [Spell]\r\n /// <para>Deals lightning damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Increases the potency of the next physical damage spell cast by 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Tingle_PvE => _Tingle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tatamigaeshi_PvECreator = new(ActionFactory.Create23266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23266\"><strong>Tatami-gaeshi</strong></see> <i>PvE</i> (BLU) [23266] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction Tatamigaeshi_PvE => _Tatamigaeshi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ColdFog_PvECreator = new(ActionFactory.Create23267);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23267\"><strong>Cold Fog</strong></see> <i>PvE</i> (BLU) [23267] [Spell]\r\n /// <para>Grants Cold Fog to self.</para>\n /// <para>Duration: 5s</para>\n /// <para>Effect changes to Touch of Frost if damage is taken.</para>\n /// <para>Touch of Frost Effect: Action changes from Cold Fog to White Death</para>\n /// <para>Duration: 15s</para>\n /// <para></para>\n /// <para>White Death</para>\n /// <para>Deals ice damage with a potency of 400.</para>\n /// <para>Additional Effect: Deep Freeze</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Touch of Frost.</para>\r\n /// </summary>\r\n public IBaseAction ColdFog_PvE => _ColdFog_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhiteDeath_PvECreator = new(ActionFactory.Create23268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23268\"><strong>White Death</strong></see> <i>PvE</i> (BLU) [23268] [Spell]\r\n /// <para>Deals ice damage with a potency of 400.</para>\n /// <para>Additional Effect: Deep Freeze</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Touch of Frost.</para>\r\n /// </summary>\r\n public IBaseAction WhiteDeath_PvE => _WhiteDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stotram_PvECreator = new(ActionFactory.Create23269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23269\"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23269] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para>\n /// <para>Action effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetheric Mimicry: Healer.</para>\n /// <para>Cure Potency: 300</para>\r\n /// </summary>\r\n public IBaseAction Stotram_PvE => _Stotram_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SaintlyBeam_PvECreator = new(ActionFactory.Create23270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23270\"><strong>Saintly Beam</strong></see> <i>PvE</i> (BLU) [23270] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100 to target and all enemies nearby it.</para>\n /// <para>Potency increases to 500 when used against undead enemies.</para>\r\n /// </summary>\r\n public IBaseAction SaintlyBeam_PvE => _SaintlyBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeculentFlood_PvECreator = new(ActionFactory.Create23271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23271\"><strong>Feculent Flood</strong></see> <i>PvE</i> (BLU) [23271] [Spell]\r\n /// <para>Deals earth damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction FeculentFlood_PvE => _FeculentFlood_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelsSnack_PvECreator = new(ActionFactory.Create23272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23272\"><strong>Angel's Snack</strong></see> <i>PvE</i> (BLU) [23272] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Grants healing over time effect when you are under the effect of Aetheric Mimicry: Healer</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 15s</para>\n /// <para>Shares a recast timer with Dragon Force and Matra Magic.</para>\r\n /// </summary>\r\n public IBaseAction AngelsSnack_PvE => _AngelsSnack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChelonianGate_PvECreator = new(ActionFactory.Create23273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23273\"><strong>Chelonian Gate</strong></see> <i>PvE</i> (BLU) [23273] [Spell]\r\n /// <para>Summons a chelonian gate, reducing damage taken by 20%.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Grants Auspicious Trance after taking damage equal to 30% of maximum HP</para>\n /// <para>Auspicious Trance Effect: Action changes from Chelonian Gate to Divine Cataract</para>\n /// <para>Chelonian Gate effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Auspicious Trance ends upon losing the effect of Chelonian Gate.</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Shares a recast timer with The Rose of Destruction and Ruby Dynamics.</para>\n /// <para></para>\n /// <para>Divine Cataract</para>\n /// <para>Deals water damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Potency increases to 1,000 when you are under the effect of Aetheric Mimicry: Tank.</para>\n /// <para>Can only be executed when under the effect of Auspicious Trance.</para>\r\n /// </summary>\r\n public IBaseAction ChelonianGate_PvE => _ChelonianGate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DivineCataract_PvECreator = new(ActionFactory.Create23274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23274\"><strong>Divine Cataract</strong></see> <i>PvE</i> (BLU) [23274] [Spell]\r\n /// <para>Deals water damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Potency increases to 1,000 when you are under the effect of Aetheric Mimicry: Tank.</para>\n /// <para>Can only be executed when under the effect of Auspicious Trance.</para>\r\n /// </summary>\r\n public IBaseAction DivineCataract_PvE => _DivineCataract_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheRoseOfDestruction_PvECreator = new(ActionFactory.Create23275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23275\"><strong>The Rose of Destruction</strong></see> <i>PvE</i> (BLU) [23275] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 400.</para>\n /// <para>Additional Effect: 10-yalm knockback</para>\n /// <para>Shares a recast timer with Chelonian Gate and Ruby Dynamics.</para>\r\n /// </summary>\r\n public IBaseAction TheRoseOfDestruction_PvE => _TheRoseOfDestruction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BasicInstinct_PvECreator = new(ActionFactory.Create23276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23276\"><strong>Basic Instinct</strong></see> <i>PvE</i> (BLU) [23276] [Spell]\r\n /// <para>Increases movement speed by 30%, and healing potency and damage dealt by 100%. Also ignores the damage penalty inflicted by Mighty Guard.</para>\n /// <para>Can only be used in duties intended for two or more players while playing alone, while no other party members are in the instance, or when all party members are incapacitated. Effect ends when joined by one or more party members.</para>\r\n /// </summary>\r\n public IBaseAction BasicInstinct_PvE => _BasicInstinct_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ultravibration_PvECreator = new(ActionFactory.Create23277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23277\"><strong>Ultravibration</strong></see> <i>PvE</i> (BLU) [23277] [Spell]\r\n /// <para>KOs all nearby enemies afflicted with Deep Freeze or Petrification. Has no effect on enemies whose level is higher than your own, and certain others.</para>\n /// <para>Shares a recast timer with Level 5 Death.</para>\r\n /// </summary>\r\n public IBaseAction Ultravibration_PvE => _Ultravibration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Blaze_PvECreator = new(ActionFactory.Create23278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23278\"><strong>Blaze</strong></see> <i>PvE</i> (BLU) [23278] [Spell]\r\n /// <para>Deals ice damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Blaze_PvE => _Blaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MustardBomb_PvECreator = new(ActionFactory.Create23279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23279\"><strong>Mustard Bomb</strong></see> <i>PvE</i> (BLU) [23279] [Spell]\r\n /// <para>Deals fire damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Enemies affected by Lightheaded suffer damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MustardBomb_PvE => _MustardBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonForce_PvECreator = new(ActionFactory.Create23280);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23280\"><strong>Dragon Force</strong></see> <i>PvE</i> (BLU) [23280] [Spell]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Increases damage reduction to 40% when you are under the effect of Aetheric Mimicry: Tank.</para>\n /// <para>Shares a recast timer with Angel's Snack and Matra Magic.</para>\r\n /// </summary>\r\n public IBaseAction DragonForce_PvE => _DragonForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialSpark_PvECreator = new(ActionFactory.Create23281);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23281\"><strong>Aetherial Spark</strong></see> <i>PvE</i> (BLU) [23281] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 50 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AetherialSpark_PvE => _AetherialSpark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HydroPull_PvECreator = new(ActionFactory.Create23282);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23282\"><strong>Hydro Pull</strong></see> <i>PvE</i> (BLU) [23282] [Spell]\r\n /// <para>Deals water damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Draw-in</para>\r\n /// </summary>\r\n public IBaseAction HydroPull_PvE => _HydroPull_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaledictionOfWater_PvECreator = new(ActionFactory.Create23283);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23283\"><strong>Malediction of Water</strong></see> <i>PvE</i> (BLU) [23283] [Spell]\r\n /// <para>Deals water damage to all enemies in a straight line before you with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: 10-yalm knockback to all enemies and party members in range</para>\n /// <para>Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction MaledictionOfWater_PvE => _MaledictionOfWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoMeteor_PvECreator = new(ActionFactory.Create23284);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23284\"><strong>Choco Meteor</strong></see> <i>PvE</i> (BLU) [23284] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Potency increases to 300 when partied with your personal chocobo.</para>\r\n /// </summary>\r\n public IBaseAction ChocoMeteor_PvE => _ChocoMeteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MatraMagic_PvECreator = new(ActionFactory.Create23285);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23285\"><strong>Matra Magic</strong></see> <i>PvE</i> (BLU) [23285] [Spell]\r\n /// <para>Deals an unaspected eightfold attack, each hit with a potency of 50.</para>\n /// <para>Potency is increased to 100 when you are under the effect of Aetheric Mimicry: DPS.</para>\n /// <para>Shares a recast timer with Angel's Snack and Dragon Force.</para>\r\n /// </summary>\r\n public IBaseAction MatraMagic_PvE => _MatraMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeripheralSynthesis_PvECreator = new(ActionFactory.Create23286);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23286\"><strong>Peripheral Synthesis</strong></see> <i>PvE</i> (BLU) [23286] [Spell]\r\n /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Potency increased to 400 when target becomes afflicted with Lightheaded.</para>\n /// <para>Additional Effect: Inflicts Lightheaded</para>\n /// <para>Duration: 5s</para>\n /// <para>Repeated use of this action in a short period will reduce the additional effect's duration, eventually rendering targets immune to Lightheaded.</para>\r\n /// </summary>\r\n public IBaseAction PeripheralSynthesis_PvE => _PeripheralSynthesis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BothEnds_PvECreator = new(ActionFactory.Create23287);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23287\"><strong>Both Ends</strong></see> <i>PvE</i> (BLU) [23287] [Ability]\r\n /// <para>Deals physical damage with a potency of 600 to all nearby enemies.</para>\n /// <para>Shares a recast timer with Nightbloom.</para>\r\n /// </summary>\r\n public IBaseAction BothEnds_PvE => _BothEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhantomFlurry_PvECreator = new(ActionFactory.Create23288);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23288\"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23288] [Ability]\r\n /// <para>Deals physical damage over time with a potency of 200 to all enemies in a cone before you.</para>\n /// <para>Duration: 5s</para>\n /// <para>Executing Phantom Flurry again before its effect expires deals physical damage to all enemies in a cone before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Effect ends upon using an action other than Phantom Flurry or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction PhantomFlurry_PvE => _PhantomFlurry_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhantomFlurry_PvE_23289Creator = new(ActionFactory.Create23289);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23289\"><strong>Phantom Flurry</strong></see> <i>PvE</i> (BLU) [23289] [Ability]\r\n /// <para>Deals physical damage over time with a potency of 200 to all enemies in a cone before you.</para>\n /// <para>Duration: 5s</para>\n /// <para>Executing Phantom Flurry again before its effect expires deals physical damage to all enemies in a cone before you with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Effect ends upon using an action other than Phantom Flurry or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction PhantomFlurry_PvE_23289 => _PhantomFlurry_PvE_23289Creator.Value;\n private readonly Lazy<IBaseAction> _Nightbloom_PvECreator = new(ActionFactory.Create23290);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23290\"><strong>Nightbloom</strong></see> <i>PvE</i> (BLU) [23290] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 400 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Unaspected damage over time</para>\n /// <para>Potency: 75</para>\n /// <para>Duration: 60s</para>\n /// <para>Shares a recast timer with Both Ends.</para>\r\n /// </summary>\r\n public IBaseAction Nightbloom_PvE => _Nightbloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stotram_PvE_23416Creator = new(ActionFactory.Create23416);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23416\"><strong>Stotram</strong></see> <i>PvE</i> (BLU) [23416] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 140 to all nearby enemies.</para>\n /// <para> Action effect changes, restoring own HP and the HP of all nearby party members when you are under the effect of Aetheric Mimicry: Healer.</para>\n /// <para> Cure Potency: 300</para>\r\n /// </summary>\r\n public IBaseAction Stotram_PvE_23416 => _Stotram_PvE_23416Creator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sleep_PvECreator = new(ActionFactory.Create25880);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25880\"><strong>Sleep</strong></see> <i>PvE</i> (THM ACN BLM SMN RDM BLU) [25880] [Spell]\r\n /// <para>Puts target and all nearby enemies to sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Sleep_PvE => _Sleep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _GoblinPunch_PvECreator = new(ActionFactory.Create34563);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34563\"><strong>Goblin Punch</strong></see> <i>PvE</i> (BLU) [34563] [Spell]\r\n /// <para>Deals physical damage with a potency of 120.</para>\n /// <para>220 when executed in front of a target.</para>\n /// <para>Potency is increased to 220 when you are under the effect of Mighty Guard.</para>\n /// <para>320 when executed in front of a target while you are under the effect of Mighty Guard.</para>\r\n /// </summary>\r\n public IBaseAction GoblinPunch_PvE => _GoblinPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightRound_PvECreator = new(ActionFactory.Create34564);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34564\"><strong>Right Round</strong></see> <i>PvE</i> (BLU) [34564] [Spell]\r\n /// <para>Deals physical damage with a potency of 110 to all nearby enemies.</para>\n /// <para>Additional Effect: 10-yalm knockback to all enemies and party members in range</para>\n /// <para>Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction RightRound_PvE => _RightRound_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Schiltron_PvECreator = new(ActionFactory.Create34565);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34565\"><strong>Schiltron</strong></see> <i>PvE</i> (BLU) [34565] [Spell]\r\n /// <para>Counters enemies with unaspected damage every time you suffer physical damage.</para>\n /// <para>Counter Potency: 50</para>\n /// <para>Duration: 15s</para>\n /// <para>Potency is increased to 100 when you are under the effect of Aetheric Mimicry: Tank.</para>\n /// <para>Effect cannot be stacked with Veil of the Whorl or Ice Spikes.</para>\r\n /// </summary>\r\n public IBaseAction Schiltron_PvE => _Schiltron_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rehydration_PvECreator = new(ActionFactory.Create34566);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34566\"><strong>Rehydration</strong></see> <i>PvE</i> (BLU) [34566] [Spell]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction Rehydration_PvE => _Rehydration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfMagic_PvECreator = new(ActionFactory.Create34567);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34567\"><strong>Breath of Magic</strong></see> <i>PvE</i> (BLU) [34567] [Spell]\r\n /// <para>Deals unaspected damage over time with a potency of 120 to all enemies in a cone before you.</para>\n /// <para>Duration: 60s</para>\n /// <para>Only one effect inflicted by this action can be active at a time.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfMagic_PvE => _BreathOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WildRage_PvECreator = new(ActionFactory.Create34568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34568\"><strong>Wild Rage</strong></see> <i>PvE</i> (BLU) [34568] [Spell]\r\n /// <para>Deals physical damage to all nearby enemies with a potency of 500 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Consumes 50% of your maximum HP when executed.</para>\r\n /// </summary>\r\n public IBaseAction WildRage_PvE => _WildRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeatPelt_PvECreator = new(ActionFactory.Create34569);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34569\"><strong>Peat Pelt</strong></see> <i>PvE</i> (BLU) [34569] [Spell]\r\n /// <para>Deals earth damage to target and all enemies nearby it with a potency of 100 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Afflicts target with Begrimed</para>\n /// <para>Begrimed Effect: Earth damage over time</para>\n /// <para>Potency: 10</para>\n /// <para>Duration: 9s</para>\r\n /// </summary>\r\n public IBaseAction PeatPelt_PvE => _PeatPelt_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepClean_PvECreator = new(ActionFactory.Create34570);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34570\"><strong>Deep Clean</strong></see> <i>PvE</i> (BLU) [34570] [Spell]\r\n /// <para>Deals physical damage to all nearby enemies with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants one stack of Spick-and-span for each enemy afflicted with Begrimed. The Begrimed effect is also removed.</para>\n /// <para>Maximum Stacks: 6</para>\n /// <para>Spick-and-span Effect: Regen</para>\n /// <para>Cure Potency: 50</para>\n /// <para>Cure potency increases up to 300 based on your accumulated stacks of Spick-and-span.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional stacks of Spick-and-span accumulated while the effect is active will not affect duration.</para>\r\n /// </summary>\r\n public IBaseAction DeepClean_PvE => _DeepClean_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RubyDynamics_PvECreator = new(ActionFactory.Create34571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34571\"><strong>Ruby Dynamics</strong></see> <i>PvE</i> (BLU) [34571] [Spell]\r\n /// <para>Deals physical damage with a potency of 220 to all enemies before you.</para>\n /// <para>Shares a recast timer with Chelonian Gate and The Rose of Destruction.</para>\r\n /// </summary>\r\n public IBaseAction RubyDynamics_PvE => _RubyDynamics_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DivinationRune_PvECreator = new(ActionFactory.Create34572);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34572\"><strong>Divination Rune</strong></see> <i>PvE</i> (BLU) [34572] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 100 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction DivinationRune_PvE => _DivinationRune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DimensionalShift_PvECreator = new(ActionFactory.Create34573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34573\"><strong>Dimensional Shift</strong></see> <i>PvE</i> (BLU) [34573] [Spell]\r\n /// <para>Delivers an attack to all nearby enemies dealing damage equal to 30% of their current HP.</para>\n /// <para>Has no effect on enemies whose level is higher than your own.</para>\r\n /// </summary>\r\n public IBaseAction DimensionalShift_PvE => _DimensionalShift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ConvictionMarcato_PvECreator = new(ActionFactory.Create34574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34574\"><strong>Conviction Marcato</strong></see> <i>PvE</i> (BLU) [34574] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Potency is increased to 440 when you are under the effect of Winged Redemption.</para>\r\n /// </summary>\r\n public IBaseAction ConvictionMarcato_PvE => _ConvictionMarcato_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ForceField_PvECreator = new(ActionFactory.Create34575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34575\"><strong>Force Field</strong></see> <i>PvE</i> (BLU) [34575] [Spell]\r\n /// <para>Grants either Physical Vulnerability Down or Magic Vulnerability Down.</para>\n /// <para>Duration: 10s</para>\n /// <para>Physical Vulnerability Down Effect: Reduces physical damage taken by 50%</para>\n /// <para>Magic Vulnerability Down Effect: Reduces magic damage taken by 50%</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction ForceField_PvE => _ForceField_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingedReprobation_PvECreator = new(ActionFactory.Create34576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34576\"><strong>Winged Reprobation</strong></see> <i>PvE</i> (BLU) [34576] [Spell]\r\n /// <para>Deals physical damage to all enemies in a straight line before you with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants one stack of Winged Reprobation and resets this action's recast timer</para>\n /// <para>Maximum Stacks: 4</para>\n /// <para>Execution at 3 stacks increases potency to 400 and grants one stack of Winged Reprobation, but recast timer will not be reset.</para>\n /// <para>At maximum stacks, Winged Reprobation changes to Winged Redemption.</para>\n /// <para>Winged Redemption Effect: Increases the potency of Conviction Marcato</para>\n /// <para>Duration: 10s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction WingedReprobation_PvE => _WingedReprobation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LaserEye_PvECreator = new(ActionFactory.Create34577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34577\"><strong>Laser Eye</strong></see> <i>PvE</i> (BLU) [34577] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 220 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: 5-yalm knockback to all enemies within 8 yalms of target</para>\r\n /// </summary>\r\n public IBaseAction LaserEye_PvE => _LaserEye_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CandyCane_PvECreator = new(ActionFactory.Create34578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34578\"><strong>Candy Cane</strong></see> <i>PvE</i> (BLU) [34578] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 250 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Lowers strength and dexterity attributes of target by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Restores 10% of maximum MP</para>\n /// <para>Shares a recast timer with Magic Hammer.</para>\r\n /// </summary>\r\n public IBaseAction CandyCane_PvE => _CandyCane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MortalFlame_PvECreator = new(ActionFactory.Create34579);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34579\"><strong>Mortal Flame</strong></see> <i>PvE</i> (BLU) [34579] [Spell]\r\n /// <para>Deals fire damage over time with a potency of 40.</para>\n /// <para>Only one effect inflicted by this action can be active at a time.</para>\n /// <para>Has no effect on targets outside of combat.</para>\n /// <para>Effect ends upon target leaving combat.</para>\r\n /// </summary>\r\n public IBaseAction MortalFlame_PvE => _MortalFlame_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SeaShanty_PvECreator = new(ActionFactory.Create34580);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34580\"><strong>Sea Shanty</strong></see> <i>PvE</i> (BLU) [34580] [Ability]\r\n /// <para>Deals water damage with a potency of 500 to all nearby enemies.</para>\n /// <para>Additional Effect: Potency increases to 1,000 during rain, showers, and thunderstorms</para>\r\n /// </summary>\r\n public IBaseAction SeaShanty_PvE => _SeaShanty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apokalypsis_PvECreator = new(ActionFactory.Create34581);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34581\"><strong>Apokalypsis</strong></see> <i>PvE</i> (BLU) [34581] [Ability]\r\n /// <para>Delivers damage over time with a potency of 140 to all enemies in a straight line before you.</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Shares a recast timer with Being Mortal.</para>\r\n /// </summary>\r\n public IBaseAction Apokalypsis_PvE => _Apokalypsis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BeingMortal_PvECreator = new(ActionFactory.Create34582);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34582\"><strong>Being Mortal</strong></see> <i>PvE</i> (BLU) [34582] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 800 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Shares a recast timer with Apokalypsis.</para>\r\n /// </summary>\r\n public IBaseAction BeingMortal_PvE => _BeingMortal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _LearningTraitCreator = new(() => new BaseTrait(219));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50219\"><strong>Learning</strong></see> (BLU) [219]\r\n /// <para>Infrequently grants the ability to discern the secrets of enemy actions wielded in battle and make them your own.</para>\r\n /// </summary>\r\n public IBaseTrait LearningTrait => _LearningTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(220));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50220\"><strong>Maim and Mend</strong></see> (BLU) [220]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(221));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50221\"><strong>Maim and Mend II</strong></see> (BLU) [221]\r\n /// <para>Increases base action damage and HP restoration by 20%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiiTraitCreator = new(() => new BaseTrait(222));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50222\"><strong>Maim and Mend III</strong></see> (BLU) [222]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiiTrait => _MaimAndMendIiiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIvTraitCreator = new(() => new BaseTrait(223));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50223\"><strong>Maim and Mend IV</strong></see> (BLU) [223]\r\n /// <para>Increases base action damage and HP restoration by 40%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIvTrait => _MaimAndMendIvTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendVTraitCreator = new(() => new BaseTrait(224));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50224\"><strong>Maim and Mend V</strong></see> (BLU) [224]\r\n /// <para>Increases base action damage and HP restoration by 50%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendVTrait => _MaimAndMendVTraitCreator.Value;\r\n#endregion\r\n}", + "GunbreakerRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/gunbreaker\"><strong>Gunbreaker</strong></see>\r\n/// </summary>\r\npublic abstract partial class GunbreakerRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.GNB };\r\n static GNBGauge JobGauge => Svc.Gauges.Get<GNBGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create7531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7531\"><strong>Rampart</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7531] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Provoke_PvECreator = new(ActionFactory.Create7533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7533\"><strong>Provoke</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7533] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list while gaining additional enmity.</para>\r\n /// </summary>\r\n public IBaseAction Provoke_PvE => _Provoke_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Reprisal_PvECreator = new(ActionFactory.Create7535);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7535\"><strong>Reprisal</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7535] [Ability]\r\n /// <para>Reduces damage dealt by nearby enemies by 10%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Reprisal_PvE => _Reprisal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shirk_PvECreator = new(ActionFactory.Create7537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7537\"><strong>Shirk</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7537] [Ability]\r\n /// <para>Diverts 25% of enmity to target party member.</para>\r\n /// </summary>\r\n public IBaseAction Shirk_PvE => _Shirk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create7538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7538\"><strong>Interject</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7538] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowBlow_PvECreator = new(ActionFactory.Create7540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7540\"><strong>Low Blow</strong></see> <i>PvE</i> (GLA MRD PLD WAR DRK GNB) [7540] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 5s</para>\r\n /// </summary>\r\n public IBaseAction LowBlow_PvE => _LowBlow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheMartialist_PvECreator = new(ActionFactory.Create12959);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12959\"><strong>Wisdom of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12959] [Spell]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheMartialist_PvE => _WisdomOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheGuardian_PvECreator = new(ActionFactory.Create12961);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12961\"><strong>Wisdom of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12961] [Spell]\r\n /// <para>Reduces damage taken by 45% while increasing maximum HP by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheGuardian_PvE => _WisdomOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheWatcher_PvECreator = new(ActionFactory.Create12964);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12964\"><strong>Wisdom of the Watcher</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12964] [Spell]\r\n /// <para>Increases evasion by 25% while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheWatcher_PvE => _WisdomOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HaymakerL_PvECreator = new(ActionFactory.Create12987);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12987\"><strong>Haymaker L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [12987] [Ability]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Can only be executed immediately after evading an attack.</para>\n /// <para>Additional Effect: Slow +20%</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HaymakerL_PvE => _HaymakerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmiteL_PvECreator = new(ActionFactory.Create13001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13001\"><strong>Smite L</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [13001] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Can only be executed when your HP is below 50%.</para>\n /// <para>Additional Effect: Restores an amount of own HP proportional to damage dealt</para>\r\n /// </summary>\r\n public IBaseAction SmiteL_PvE => _SmiteL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIndomitable_PvECreator = new(ActionFactory.Create14480);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14480\"><strong>Wisdom of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [14480] [Spell]\r\n /// <para>Reduces damage taken by 64%.</para>\n /// <para>Grants one stack of HP Boost each time damage equal to or greater than half of maximum HP is taken from a single-target attack.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIndomitable_PvE => _WisdomOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvE_15537Creator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE_15537 => _Interject_PvE_15537Creator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16137);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16137\"><strong>Keen Edge</strong></see> <i>PvE</i> (GNB) [16137] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NoMercy_PvECreator = new(ActionFactory.Create16138);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16138\"><strong>No Mercy</strong></see> <i>PvE</i> (GNB) [16138] [Ability]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction NoMercy_PvE => _NoMercy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16139\"><strong>Brutal Shell</strong></see> <i>PvE</i> (GNB) [16139] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Keen Edge</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Restores own HP</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Combo Bonus: Creates a barrier which nullifies damage equaling HP restored</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Camouflage_PvECreator = new(ActionFactory.Create16140);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16140\"><strong>Camouflage</strong></see> <i>PvE</i> (GNB) [16140] [Ability]\r\n /// <para>Increases parry rate by 50% while reducing damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Camouflage_PvE => _Camouflage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemonSlice_PvECreator = new(ActionFactory.Create16141);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16141\"><strong>Demon Slice</strong></see> <i>PvE</i> (GNB) [16141] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction DemonSlice_PvE => _DemonSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoyalGuard_PvECreator = new(ActionFactory.Create16142);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16142\"><strong>Royal Guard</strong></see> <i>PvE</i> (GNB) [16142] [Ability]\r\n /// <para>Significantly increases enmity generation.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction RoyalGuard_PvE => _RoyalGuard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightningShot_PvECreator = new(ActionFactory.Create16143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16143\"><strong>Lightning Shot</strong></see> <i>PvE</i> (GNB) [16143] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 150.</para>\n /// <para>Additional Effect: Increased enmity</para>\r\n /// </summary>\r\n public IBaseAction LightningShot_PvE => _LightningShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DangerZone_PvECreator = new(ActionFactory.Create16144);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16144\"><strong>Danger Zone</strong></see> <i>PvE</i> (GNB) [16144] [Ability]\r\n /// <para>Delivers an attack with a potency of 250.</para>\r\n /// </summary>\r\n public IBaseAction DangerZone_PvE => _DangerZone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16145);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16145\"><strong>Solid Barrel</strong></see> <i>PvE</i> (GNB) [16145] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Brutal Shell</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Adds a Cartridge to your Powder Gauge</para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GnashingFang_PvECreator = new(ActionFactory.Create16146);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16146\"><strong>Gnashing Fang</strong></see> <i>PvE</i> (GNB) [16146] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 380.</para>\n /// <para>Additional Effect: Grants Ready to Rip</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect of Ready to Rip ends upon execution of any weaponskill.</para>\n /// <para>Cartridge Cost: 1</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction GnashingFang_PvE => _GnashingFang_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SavageClaw_PvECreator = new(ActionFactory.Create16147);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16147\"><strong>Savage Claw</strong></see> <i>PvE</i> (GNB) [16147] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 460.</para>\n /// <para>Combo Action: Gnashing Fang</para>\n /// <para>Combo Bonus: Grants Ready to Tear</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect of Ready to Tear ends upon execution of any weaponskill.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SavageClaw_PvE => _SavageClaw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create16148);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16148\"><strong>Nebula</strong></see> <i>PvE</i> (GNB) [16148] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemonSlaughter_PvECreator = new(ActionFactory.Create16149);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16149\"><strong>Demon Slaughter</strong></see> <i>PvE</i> (GNB) [16149] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Demon Slice</para>\n /// <para>Combo Potency: 160</para>\n /// <para>Combo Bonus: Adds a Cartridge to your Powder Gauge</para>\r\n /// </summary>\r\n public IBaseAction DemonSlaughter_PvE => _DemonSlaughter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WickedTalon_PvECreator = new(ActionFactory.Create16150);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16150\"><strong>Wicked Talon</strong></see> <i>PvE</i> (GNB) [16150] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 540.</para>\n /// <para>Combo Action: Savage Claw</para>\n /// <para>Combo Bonus: Grants Ready to Gouge</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect of Ready to Gouge ends upon execution of any weaponskill.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WickedTalon_PvE => _WickedTalon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aurora_PvECreator = new(ActionFactory.Create16151);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16151\"><strong>Aurora</strong></see> <i>PvE</i> (GNB) [16151] [Ability]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Duration: 18s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction Aurora_PvE => _Aurora_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Superbolide_PvECreator = new(ActionFactory.Create16152);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16152\"><strong>Superbolide</strong></see> <i>PvE</i> (GNB) [16152] [Ability]\r\n /// <para>Reduces HP to 1 and renders you impervious to most attacks.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Superbolide_PvE => _Superbolide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicBreak_PvECreator = new(ActionFactory.Create16153);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16153\"><strong>Sonic Break</strong></see> <i>PvE</i> (GNB) [16153] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 60</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction SonicBreak_PvE => _SonicBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16154);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16154\"><strong>Rough Divide</strong></see> <i>PvE</i> (GNB) [16154] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Continuation_PvECreator = new(ActionFactory.Create16155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16155\"><strong>Continuation</strong></see> <i>PvE</i> (GNB) [16155] [Ability]\r\n /// <para>Allows the firing of successive rounds with your gunblade.</para>\n /// <para>Gnashing Fang may be followed by Jugular Rip.</para>\n /// <para>Savage Claw may be followed by Abdomen Tear.</para>\n /// <para>Wicked Talon may be followed by Eye Gouge.</para>\n /// <para>Burst Strike may be followed by Hypervelocity.</para>\r\n /// </summary>\r\n public IBaseAction Continuation_PvE => _Continuation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _JugularRip_PvECreator = new(ActionFactory.Create16156);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16156\"><strong>Jugular Rip</strong></see> <i>PvE</i> (GNB) [16156] [Ability]\r\n /// <para>Delivers an attack with a potency of 200.</para>\n /// <para>Can only be executed when Ready to Rip.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction JugularRip_PvE => _JugularRip_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AbdomenTear_PvECreator = new(ActionFactory.Create16157);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16157\"><strong>Abdomen Tear</strong></see> <i>PvE</i> (GNB) [16157] [Ability]\r\n /// <para>Delivers an attack with a potency of 240.</para>\n /// <para>Can only be executed when Ready to Tear.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AbdomenTear_PvE => _AbdomenTear_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EyeGouge_PvECreator = new(ActionFactory.Create16158);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16158\"><strong>Eye Gouge</strong></see> <i>PvE</i> (GNB) [16158] [Ability]\r\n /// <para>Delivers an attack with a potency of 280.</para>\n /// <para>Can only be executed when Ready to Gouge.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EyeGouge_PvE => _EyeGouge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BowShock_PvECreator = new(ActionFactory.Create16159);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16159\"><strong>Bow Shock</strong></see> <i>PvE</i> (GNB) [16159] [Ability]\r\n /// <para>Delivers an attack with a potency of 150 to all nearby enemies.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 60</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction BowShock_PvE => _BowShock_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeartOfLight_PvECreator = new(ActionFactory.Create16160);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16160\"><strong>Heart of Light</strong></see> <i>PvE</i> (GNB) [16160] [Ability]\r\n /// <para>Reduces magic damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction HeartOfLight_PvE => _HeartOfLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeartOfStone_PvECreator = new(ActionFactory.Create16161);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16161\"><strong>Heart of Stone</strong></see> <i>PvE</i> (GNB) [16161] [Ability]\r\n /// <para>Reduces damage taken by a party member or self by 15%.</para>\n /// <para>Duration: 7s</para>\n /// <para>Additional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction HeartOfStone_PvE => _HeartOfStone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BurstStrike_PvECreator = new(ActionFactory.Create16162);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16162\"><strong>Burst Strike</strong></see> <i>PvE</i> (GNB) [16162] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 380.</para>\n /// <para>Additional Effect: Grants Ready to Blast</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect of Ready to Blast ends upon execution of any weaponskill.</para>\n /// <para>Cartridge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction BurstStrike_PvE => _BurstStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FatedCircle_PvECreator = new(ActionFactory.Create16163);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16163\"><strong>Fated Circle</strong></see> <i>PvE</i> (GNB) [16163] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Cartridge Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction FatedCircle_PvE => _FatedCircle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodfest_PvECreator = new(ActionFactory.Create16164);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16164\"><strong>Bloodfest</strong></see> <i>PvE</i> (GNB) [16164] [Ability]\r\n /// <para>Draws aetheric energy from target, adding Cartridges to your Powder Gauge.</para>\r\n /// </summary>\r\n public IBaseAction Bloodfest_PvE => _Bloodfest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlastingZone_PvECreator = new(ActionFactory.Create16165);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16165\"><strong>Blasting Zone</strong></see> <i>PvE</i> (GNB) [16165] [Ability]\r\n /// <para>Delivers an attack with a potency of 720.</para>\r\n /// </summary>\r\n public IBaseAction BlastingZone_PvE => _BlastingZone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_16418Creator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_16418 => _BrutalShell_PvE_16418Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_16434Creator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_16434 => _KeenEdge_PvE_16434Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_16435Creator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_16435 => _SolidBarrel_PvE_16435Creator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvE_16804Creator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE_16804 => _RoughDivide_PvE_16804Creator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_17839Creator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_17839 => _Nebula_PvE_17839Creator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfTirelessConviction_PvECreator = new(ActionFactory.Create20722);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20722\"><strong>Banner of Tireless Conviction</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20722] [Ability]\r\n /// <para>Storm the field under the Banner of Tireless Conviction, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Tireless Conviction Effect: Increases damage taken by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfTirelessConviction_PvE => _BannerOfTirelessConviction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20742);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20742\"><strong>Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20742] [Item]\r\n /// <para>Increases damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheMartialist_PvE => _EssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20746);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20746\"><strong>Essence of the Guardian</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20746] [Item]\r\n /// <para>Increases defense by 30% and maximum HP by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheGuardian_PvE => _EssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20751);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20751\"><strong>Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20751] [Item]\r\n /// <para>Increases damage dealt by 90% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheIrregular_PvE => _EssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20753);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20753\"><strong>Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20753] [Item]\r\n /// <para>Increases damage dealt by 40%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBloodsucker_PvE => _EssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheMartialist_PvECreator = new(ActionFactory.Create20757);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20757\"><strong>Deep Essence of the Martialist</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20757] [Item]\r\n /// <para>Increases damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheMartialist_PvE => _DeepEssenceOfTheMartialist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheGuardian_PvECreator = new(ActionFactory.Create20761);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20761\"><strong>Deep Essence of the Guardian </strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20761] [Item]\r\n /// <para>Increases defense by 36% and maximum HP by 12%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheGuardian_PvE => _DeepEssenceOfTheGuardian_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheIrregular_PvECreator = new(ActionFactory.Create20766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20766\"><strong>Deep Essence of the Irregular</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20766] [Item]\r\n /// <para>Increases damage dealt by 108% and damage taken by 200% while reducing maximum HP by 30%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheIrregular_PvE => _DeepEssenceOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBloodsucker_PvECreator = new(ActionFactory.Create20768);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20768\"><strong>Deep Essence of the Bloodsucker</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [20768] [Item]\r\n /// <para>Increases damage dealt by 48%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBloodsucker_PvE => _DeepEssenceOfTheBloodsucker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheIndomitable_PvECreator = new(ActionFactory.Create22350);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22350\"><strong>Pure Essence of the Indomitable</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22350] [Item]\r\n /// <para>Increases defense by 40%, damage dealt by 72%, and maximum HP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheIndomitable_PvE => _PureEssenceOfTheIndomitable_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAethershield_PvECreator = new(ActionFactory.Create22355);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22355\"><strong>Lost Aethershield</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [22355] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction LostAethershield_PvE => _LostAethershield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBloodRage_PvECreator = new(ActionFactory.Create23921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23921\"><strong>Lost Blood Rage</strong></see> <i>PvE</i> (PLD WAR DRK GNB) [23921] [Ability]\r\n /// <para>Increases damage dealt by 15% and reduces damage taken by 5% per stack. Stacks increase with each use of a dash attack while effect is active, to a maximum of 4.</para>\n /// <para>Duration: 18s</para>\n /// <para>Maximum stacks grant the effect of Blood Rush.</para>\n /// <para>Blood Rush Effect: Increases damage dealt by 60%, shortens recast times of abilities by 75%, and gradually restores HP and MP. Recast time reduction does not apply to charged actions.</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostBloodRage_PvE => _LostBloodRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeartOfCorundum_PvECreator = new(ActionFactory.Create25758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25758\"><strong>Heart of Corundum</strong></see> <i>PvE</i> (GNB) [25758] [Ability]\r\n /// <para>Reduces damage taken by target party member or self by 15%.</para>\n /// <para>Duration: 8s</para>\n /// <para>Additional Effect: When targeting a party member while under the effect of Brutal Shell, that effect is also granted to the target</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Clarity of Corundum to target</para>\n /// <para>Clarity of Corundum Effect: Reduces damage taken by 15%</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Grants Catharsis of Corundum to target</para>\n /// <para>Catharsis of Corundum Effect: Restores HP when HP falls below 50% or upon effect duration expiration</para>\n /// <para>Cure Potency: 900</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction HeartOfCorundum_PvE => _HeartOfCorundum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hypervelocity_PvECreator = new(ActionFactory.Create25759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25759\"><strong>Hypervelocity</strong></see> <i>PvE</i> (GNB) [25759] [Ability]\r\n /// <para>Delivers an attack with a potency of 180.</para>\n /// <para>Can only be executed when Ready to Blast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hypervelocity_PvE => _Hypervelocity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleDown_PvECreator = new(ActionFactory.Create25760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25760\"><strong>Double Down</strong></see> <i>PvE</i> (GNB) [25760] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies with a potency of 1,200 for the first enemy, and 15% less for all remaining enemies.</para>\n /// <para>Cartridge Cost: 2</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction DoubleDown_PvE => _DoubleDown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvE_26253Creator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE_26253 => _Rampart_PvE_26253Creator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvPCreator = new(ActionFactory.Create29098);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29098\"><strong>Keen Edge</strong></see> <i>PvP</i> (GNB) [29098] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvP => _KeenEdge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvPCreator = new(ActionFactory.Create29099);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29099\"><strong>Brutal Shell</strong></see> <i>PvP</i> (GNB) [29099] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Keen Edge</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvP => _BrutalShell_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvPCreator = new(ActionFactory.Create29100);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29100\"><strong>Solid Barrel</strong></see> <i>PvP</i> (GNB) [29100] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Brutal Shell</para>\n /// <para>Additional Effect: Grants Powder Barrel</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Solid Barrel Combo changes to Burst Strike while under the effect of Powder Barrel.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvP => _SolidBarrel_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BurstStrike_PvPCreator = new(ActionFactory.Create29101);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29101\"><strong>Burst Strike</strong></see> <i>PvP</i> (GNB) [29101] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 7,000.</para>\n /// <para>Additional Effect: Grants Ready to Blast</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Powder Barrel.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BurstStrike_PvP => _BurstStrike_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _GnashingFang_PvPCreator = new(ActionFactory.Create29102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29102\"><strong>Gnashing Fang</strong></see> <i>PvP</i> (GNB) [29102] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Additional Effect: Grants Ready to Rip</para>\n /// <para>Duration: 5s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction GnashingFang_PvP => _GnashingFang_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SavageClaw_PvPCreator = new(ActionFactory.Create29103);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29103\"><strong>Savage Claw</strong></see> <i>PvP</i> (GNB) [29103] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 6,000.</para>\n /// <para>Combo Action: Gnashing Fang</para>\n /// <para>Additional Effect: Grants Ready to Tear</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SavageClaw_PvP => _SavageClaw_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _WickedTalon_PvPCreator = new(ActionFactory.Create29104);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29104\"><strong>Wicked Talon</strong></see> <i>PvP</i> (GNB) [29104] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 7,000.</para>\n /// <para>Combo Action: Savage Claw</para>\n /// <para>Additional Effect: Grants Ready to Gouge</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WickedTalon_PvP => _WickedTalon_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleDown_PvPCreator = new(ActionFactory.Create29105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29105\"><strong>Double Down</strong></see> <i>PvP</i> (GNB) [29105] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 12,000 to all nearby enemies.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction DoubleDown_PvP => _DoubleDown_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Continuation_PvPCreator = new(ActionFactory.Create29106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29106\"><strong>Continuation</strong></see> <i>PvP</i> (GNB) [29106] [Ability]\r\n /// <para>Allows the firing of successive rounds with your gunblade.</para>\n /// <para>Gnashing Fang may be followed by Jugular Rip.</para>\n /// <para>Savage Claw may be followed by Abdomen Tear.</para>\n /// <para>Wicked Talon may be followed by Eye Gouge.</para>\n /// <para>Burst Strike may be followed by Hypervelocity.</para>\r\n /// </summary>\r\n public IBaseAction Continuation_PvP => _Continuation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Hypervelocity_PvPCreator = new(ActionFactory.Create29107);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29107\"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29107] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Blast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hypervelocity_PvP => _Hypervelocity_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _JugularRip_PvPCreator = new(ActionFactory.Create29108);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29108\"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29108] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 3,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Can only be executed when Ready to Rip.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction JugularRip_PvP => _JugularRip_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _AbdomenTear_PvPCreator = new(ActionFactory.Create29109);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29109\"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29109] [Ability]\r\n /// <para>Delivers an attack with a potency of 2,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 4,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Can only be executed when Ready to Tear.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AbdomenTear_PvP => _AbdomenTear_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EyeGouge_PvPCreator = new(ActionFactory.Create29110);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29110\"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29110] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Gouge.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EyeGouge_PvP => _EyeGouge_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Hypervelocity_PvP_29111Creator = new(ActionFactory.Create29111);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29111\"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29111] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Blast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hypervelocity_PvP_29111 => _Hypervelocity_PvP_29111Creator.Value;\n private readonly Lazy<IBaseAction> _JugularRip_PvP_29112Creator = new(ActionFactory.Create29112);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29112\"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29112] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 3,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Can only be executed when Ready to Rip.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction JugularRip_PvP_29112 => _JugularRip_PvP_29112Creator.Value;\n private readonly Lazy<IBaseAction> _AbdomenTear_PvP_29113Creator = new(ActionFactory.Create29113);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29113\"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29113] [Ability]\r\n /// <para>Delivers an attack with a potency of 2,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 4,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Can only be executed when Ready to Tear.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AbdomenTear_PvP_29113 => _AbdomenTear_PvP_29113Creator.Value;\n private readonly Lazy<IBaseAction> _EyeGouge_PvP_29114Creator = new(ActionFactory.Create29114);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29114\"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29114] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Gouge.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EyeGouge_PvP_29114 => _EyeGouge_PvP_29114Creator.Value;\n private readonly Lazy<IBaseAction> _Hypervelocity_PvP_29115Creator = new(ActionFactory.Create29115);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29115\"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29115] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Blast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hypervelocity_PvP_29115 => _Hypervelocity_PvP_29115Creator.Value;\n private readonly Lazy<IBaseAction> _JugularRip_PvP_29116Creator = new(ActionFactory.Create29116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29116\"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29116] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 3,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Can only be executed when Ready to Rip.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction JugularRip_PvP_29116 => _JugularRip_PvP_29116Creator.Value;\n private readonly Lazy<IBaseAction> _AbdomenTear_PvP_29117Creator = new(ActionFactory.Create29117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29117\"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29117] [Ability]\r\n /// <para>Delivers an attack with a potency of 2,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 4,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Can only be executed when Ready to Tear.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AbdomenTear_PvP_29117 => _AbdomenTear_PvP_29117Creator.Value;\n private readonly Lazy<IBaseAction> _EyeGouge_PvP_29118Creator = new(ActionFactory.Create29118);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29118\"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29118] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Gouge.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EyeGouge_PvP_29118 => _EyeGouge_PvP_29118Creator.Value;\n private readonly Lazy<IBaseAction> _Hypervelocity_PvP_29119Creator = new(ActionFactory.Create29119);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29119\"><strong>Hypervelocity</strong></see> <i>PvP</i> (GNB) [29119] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Blast.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Hypervelocity_PvP_29119 => _Hypervelocity_PvP_29119Creator.Value;\n private readonly Lazy<IBaseAction> _JugularRip_PvP_29120Creator = new(ActionFactory.Create29120);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29120\"><strong>Jugular Rip</strong></see> <i>PvP</i> (GNB) [29120] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 4,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 3,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Can only be executed when Ready to Rip.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction JugularRip_PvP_29120 => _JugularRip_PvP_29120Creator.Value;\n private readonly Lazy<IBaseAction> _AbdomenTear_PvP_29121Creator = new(ActionFactory.Create29121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29121\"><strong>Abdomen Tear</strong></see> <i>PvP</i> (GNB) [29121] [Ability]\r\n /// <para>Delivers an attack with a potency of 2,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 5,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 4,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Can only be executed when Ready to Tear.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction AbdomenTear_PvP_29121 => _AbdomenTear_PvP_29121Creator.Value;\n private readonly Lazy<IBaseAction> _EyeGouge_PvP_29122Creator = new(ActionFactory.Create29122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29122\"><strong>Eye Gouge</strong></see> <i>PvP</i> (GNB) [29122] [Ability]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Junction Tank Bonus: Creates a barrier around self that absorbs damage equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 7s</para>\n /// <para>Junction DPS Bonus: Increases potency to 5,000</para>\n /// <para>Junction Healer Bonus: Restores own HP and the HP of nearby party members within a radius of 15 yalms</para>\n /// <para>Cure Potency: 4,000</para>\n /// <para>Can only be executed when Ready to Gouge.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EyeGouge_PvP_29122 => _EyeGouge_PvP_29122Creator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvPCreator = new(ActionFactory.Create29123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29123\"><strong>Rough Divide</strong></see> <i>PvP</i> (GNB) [29123] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 2,000.</para>\n /// <para>Additional Effect: Grants No Mercy</para>\n /// <para>No Mercy Effect: Increases damage dealt and healing potency by 20%, while also increasing movement speed by 25%</para>\n /// <para>Duration: 7s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvP => _RoughDivide_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DrawAndJunction_PvPCreator = new(ActionFactory.Create29124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29124\"><strong>Draw and Junction</strong></see> <i>PvP</i> (GNB) [29124] [Ability]\r\n /// <para>Grants self a beneficial effect based on the selected party member or enemy.</para>\n /// <para>If target is a DPS, grants Junction DPS.</para>\n /// <para>If target is a tank, or if no target is selected, grants Junction Tank.</para>\n /// <para>If target is a healer, grants Junction Healer.</para>\n /// <para>Additional Effect: Grants Powder Barrel when targeting an enemy</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Solid Barrel Combo changes to Burst Strike while under the effect of Powder Barrel.</para>\r\n /// </summary>\r\n public IBaseAction DrawAndJunction_PvP => _DrawAndJunction_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _JunctionedCast_PvPCreator = new(ActionFactory.Create29125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29125\"><strong>Junctioned Cast</strong></see> <i>PvP</i> (GNB) [29125] [Ability]\r\n /// <para>Executes an action depending on your current Junction.</para>\n /// <para>Junction DPS: Blasting Zone</para>\n /// <para>Junction Tank: Nebula</para>\n /// <para>Junction Healer: Aurora</para>\r\n /// </summary>\r\n public IBaseAction JunctionedCast_PvP => _JunctionedCast_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvPCreator = new(ActionFactory.Create29126);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29126\"><strong>Nebula</strong></see> <i>PvP</i> (GNB) [29126] [Ability]\r\n /// <para>Reduces damage taken by 20% and delivers an attack with a potency of 4,000 every time you suffer damage.</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Junction Tank.</para>\n /// <para>Shares a recast timer with Blasting Zone and Aurora.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvP => _Nebula_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _BlastingZone_PvPCreator = new(ActionFactory.Create29128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29128\"><strong>Blasting Zone</strong></see> <i>PvP</i> (GNB) [29128] [Ability]\r\n /// <para>Delivers an attack with a potency of 10,000.</para>\n /// <para>Can only be executed while under the effect of Junction DPS.</para>\n /// <para>Shares a recast timer with Nebula and Aurora.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction BlastingZone_PvP => _BlastingZone_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Aurora_PvPCreator = new(ActionFactory.Create29129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29129\"><strong>Aurora</strong></see> <i>PvP</i> (GNB) [29129] [Ability]\r\n /// <para>Restores own or target party member's HP.</para>\n /// <para>Cure Potency: 12,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 3,000</para>\n /// <para>Duration: 12s</para>\n /// <para>Can only be executed while under the effect of Junction Healer.</para>\n /// <para>Shares a recast timer with Nebula and Blasting Zone.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Aurora_PvP => _Aurora_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _RelentlessRush_PvPCreator = new(ActionFactory.Create29130);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29130\"><strong>Relentless Rush</strong></see> <i>PvP</i> (GNB) [29130] [Limit Break]\r\n /// <para>Unleashes a flurry of blade strikes on nearby enemies, dealing damage over time with a potency of 4,000 and reducing damage taken by 25% until effect expires.</para>\n /// <para>Duration: 4s</para>\n /// <para>Activates Terminal Trigger when effect duration expires.</para>\n /// <para>Additional Effect: Afflicts target with Relentless Shrapnel, reducing damage dealt by 4% while increasing damage taken by 4% per stack</para>\n /// <para>Duration: 5s</para>\n /// <para>Maximum Stacks: 5</para>\n /// <para>Can be executed while moving.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 60s</para>\n /// <para></para>\n /// <para>※Action changes to Terminal Trigger upon execution.</para>\r\n /// </summary>\r\n public IBaseAction RelentlessRush_PvP => _RelentlessRush_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TerminalTrigger_PvPCreator = new(ActionFactory.Create29131);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29131\"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29131] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TerminalTrigger_PvP => _TerminalTrigger_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TerminalTrigger_PvP_29469Creator = new(ActionFactory.Create29469);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29469\"><strong>Terminal Trigger</strong></see> <i>PvP</i> (GNB) [29469] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 12,000 to all nearby enemies.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\n /// <para>Can only be executed while under the effect of Relentless Rush.</para>\n /// <para>Relentless Rush effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TerminalTrigger_PvP_29469 => _TerminalTrigger_PvP_29469Creator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReleaseRoyalGuard_PvECreator = new(ActionFactory.Create32068);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32068\"><strong>Release Royal Guard</strong></see> <i>PvE</i> (GNB) [32068] [Ability]\r\n /// <para>Cancels the effect of Royal Guard.</para>\r\n /// </summary>\r\n public IBaseAction ReleaseRoyalGuard_PvE => _ReleaseRoyalGuard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _CartridgeChargeTraitCreator = new(() => new BaseTrait(257));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50257\"><strong>Cartridge Charge</strong></see> (GNB) [257]\r\n /// <para>Stores a Cartridge in your Powder Gauge after successfully completing a combo with Solid Barrel.</para>\n /// <para>Maximum Cartridges: 2</para>\r\n /// </summary>\r\n public IBaseTrait CartridgeChargeTrait => _CartridgeChargeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedBrutalShellTraitCreator = new(() => new BaseTrait(258));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50258\"><strong>Enhanced Brutal Shell</strong></see> (GNB) [258]\r\n /// <para>Grants the effect of Brutal Shell after successfully completing a combo with Brutal Shell.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedBrutalShellTrait => _EnhancedBrutalShellTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DangerZoneMasteryTraitCreator = new(() => new BaseTrait(259));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50259\"><strong>Danger Zone Mastery</strong></see> (GNB) [259]\r\n /// <para>Upgrades Danger Zone to Blasting Zone.</para>\r\n /// </summary>\r\n public IBaseTrait DangerZoneMasteryTrait => _DangerZoneMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TankMasteryTraitCreator = new(() => new BaseTrait(320));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50320\"><strong>Tank Mastery</strong></see> (GNB) [320]\r\n /// <para>Reduces damage taken by 20%. Furthermore, grants a bonus to maximum HP based on your vitality attribute, and a bonus to damage dealt based on your strength attribute.</para>\r\n /// </summary>\r\n public IBaseTrait TankMasteryTrait => _TankMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HeartOfStoneMasteryTraitCreator = new(() => new BaseTrait(424));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50424\"><strong>Heart of Stone Mastery</strong></see> (GNB) [424]\r\n /// <para>Upgrades Heart of Stone to Heart of Corundum.</para>\r\n /// </summary>\r\n public IBaseTrait HeartOfStoneMasteryTrait => _HeartOfStoneMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAuroraTraitCreator = new(() => new BaseTrait(425));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50425\"><strong>Enhanced Aurora</strong></see> (GNB) [425]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Aurora.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAuroraTrait => _EnhancedAuroraTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedContinuationTraitCreator = new(() => new BaseTrait(426));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50426\"><strong>Enhanced Continuation</strong></see> (GNB) [426]\r\n /// <para>Become Ready to Blast after executing Burst Strike.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedContinuationTrait => _EnhancedContinuationTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _CartridgeChargeIiTraitCreator = new(() => new BaseTrait(427));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50427\"><strong>Cartridge Charge II</strong></see> (GNB) [427]\r\n /// <para>Increases Powder Gauge capacity to 3 Cartridges.</para>\n /// <para>Executing Bloodfest stores 3 Cartridges.</para>\r\n /// </summary>\r\n public IBaseTrait CartridgeChargeIiTrait => _CartridgeChargeIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MeleeMasteryTraitCreator = new(() => new BaseTrait(507));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50507\"><strong>Melee Mastery</strong></see> (GNB) [507]\r\n /// <para>Increases the potency of Keen Edge to 200, Brutal Shell to 160, and Solid Barrel to 140.</para>\r\n /// </summary>\r\n public IBaseTrait MeleeMasteryTrait => _MeleeMasteryTraitCreator.Value;\r\n#endregion\r\n}", + "DancerRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/dancer\"><strong>Dancer</strong></see>\r\n/// </summary>\r\npublic abstract partial class DancerRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.DNC };\r\n static DNCGauge JobGauge => Svc.Gauges.Get<DNCGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeadGraze_PvECreator = new(ActionFactory.Create7551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7551\"><strong>Head Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7551] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction HeadGraze_PvE => _HeadGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FootGraze_PvECreator = new(ActionFactory.Create7553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7553\"><strong>Foot Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7553] [Ability]\r\n /// <para>Binds target.</para>\n /// <para>Duration: 10s</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>Target unbound if damage taken.</para>\r\n /// </summary>\r\n public IBaseAction FootGraze_PvE => _FootGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegGraze_PvECreator = new(ActionFactory.Create7554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7554\"><strong>Leg Graze</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7554] [Ability]\r\n /// <para>Afflicts target with Heavy +40%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LegGraze_PvE => _LegGraze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Peloton_PvECreator = new(ActionFactory.Create7557);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7557\"><strong>Peloton</strong></see> <i>PvE</i> (ARC BRD MCH DNC) [7557] [Ability]\r\n /// <para>Increases movement speed of self and nearby party members.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends when enmity is generated. Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Peloton_PvE => _Peloton_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EagleEyeShotL_PvECreator = new(ActionFactory.Create13007);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13007\"><strong>Eagle Eye Shot L</strong></see> <i>PvE</i> (BRD MCH DNC) [13007] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 80. Potency increases up to 1,000% the lower the target's HP.</para>\n /// <para>Generates significant enmity upon use.</para>\r\n /// </summary>\r\n public IBaseAction EagleEyeShotL_PvE => _EagleEyeShotL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheFiendhunter_PvECreator = new(ActionFactory.Create14479);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14479\"><strong>Wisdom of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [14479] [Spell]\r\n /// <para>Increases physical damage dealt by 25% and evasion by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheFiendhunter_PvE => _WisdomOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cascade_PvECreator = new(ActionFactory.Create15989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15989\"><strong>Cascade</strong></see> <i>PvE</i> (DNC) [15989] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 220.</para>\n /// <para>Additional Effect: 50% chance of granting Silken Symmetry</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※Action changes to Emboite while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Cascade_PvE => _Cascade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fountain_PvECreator = new(ActionFactory.Create15990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15990\"><strong>Fountain</strong></see> <i>PvE</i> (DNC) [15990] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Combo Action: Cascade</para>\n /// <para>Combo Potency: 280</para>\n /// <para>Combo Bonus: 50% chance of granting Silken Flow</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※Action changes to Entrechat while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Fountain_PvE => _Fountain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReverseCascade_PvECreator = new(ActionFactory.Create15991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15991\"><strong>Reverse Cascade</strong></see> <i>PvE</i> (DNC) [15991] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 280.</para>\n /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para>\n /// <para>Can only be executed while under the effect of Silken Symmetry or Flourishing Symmetry.</para>\n /// <para></para>\n /// <para>※Action changes to Jete while dancing.</para>\r\n /// </summary>\r\n public IBaseAction ReverseCascade_PvE => _ReverseCascade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fountainfall_PvECreator = new(ActionFactory.Create15992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15992\"><strong>Fountainfall</strong></see> <i>PvE</i> (DNC) [15992] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 340.</para>\n /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para>\n /// <para>Can only be executed while under the effect of Silken Flow or Flourishing Flow.</para>\n /// <para></para>\n /// <para>※Action changes to Pirouette while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Fountainfall_PvE => _Fountainfall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Windmill_PvECreator = new(ActionFactory.Create15993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15993\"><strong>Windmill</strong></see> <i>PvE</i> (DNC) [15993] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: 50% chance of granting Silken Symmetry</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※Action changes to Emboite while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Windmill_PvE => _Windmill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladeshower_PvECreator = new(ActionFactory.Create15994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15994\"><strong>Bladeshower</strong></see> <i>PvE</i> (DNC) [15994] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Combo Action: Windmill</para>\n /// <para>Combo Potency: 140</para>\n /// <para>Combo Bonus: 50% chance of granting Silken Flow</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\n /// <para>※Action changes to Entrechat while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Bladeshower_PvE => _Bladeshower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RisingWindmill_PvECreator = new(ActionFactory.Create15995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15995\"><strong>Rising Windmill</strong></see> <i>PvE</i> (DNC) [15995] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 140 to all nearby enemies.</para>\n /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para>\n /// <para>Can only be executed while under the effect of Silken Symmetry or Flourishing Symmetry.</para>\n /// <para></para>\n /// <para>※Action changes to Jete while dancing.</para>\r\n /// </summary>\r\n public IBaseAction RisingWindmill_PvE => _RisingWindmill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodshower_PvECreator = new(ActionFactory.Create15996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15996\"><strong>Bloodshower</strong></see> <i>PvE</i> (DNC) [15996] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180 to all nearby enemies.</para>\n /// <para>Additional Effect: 50% chance of granting a Fourfold Feather</para>\n /// <para>Can only be executed while under the effect of Silken Flow or Flourishing Flow.</para>\n /// <para></para>\n /// <para>※Action changes to Pirouette while dancing.</para>\r\n /// </summary>\r\n public IBaseAction Bloodshower_PvE => _Bloodshower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandardStep_PvECreator = new(ActionFactory.Create15997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15997\"><strong>Standard Step</strong></see> <i>PvE</i> (DNC) [15997] [Weaponskill]\r\n /// <para>Begin dancing, granting yourself Standard Step.</para>\n /// <para>Duration: 15s</para>\n /// <para>Action changes to Standard Finish while dancing.</para>\n /// <para>Only Standard Finish, En Avant, Curing Waltz, Shield Samba, step actions, role actions, Sprint, and Limit Break can be performed while dancing.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction StandardStep_PvE => _StandardStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechnicalStep_PvECreator = new(ActionFactory.Create15998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15998\"><strong>Technical Step</strong></see> <i>PvE</i> (DNC) [15998] [Weaponskill]\r\n /// <para>Begin dancing, granting yourself Technical Step.</para>\n /// <para>Duration: 15s</para>\n /// <para>Action changes to Technical Finish while dancing.</para>\n /// <para>Only Technical Finish, En Avant, Curing Waltz, Shield Samba, step actions, role actions, Sprint, and Limit Break can be performed while dancing.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction TechnicalStep_PvE => _TechnicalStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Emboite_PvECreator = new(ActionFactory.Create15999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15999\"><strong>Emboite</strong></see> <i>PvE</i> (DNC) [15999] [Weaponskill]\r\n /// <para>Perform an emboite.</para>\n /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Emboite_PvE => _Emboite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Entrechat_PvECreator = new(ActionFactory.Create16000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16000\"><strong>Entrechat</strong></see> <i>PvE</i> (DNC) [16000] [Weaponskill]\r\n /// <para>Perform an entrechat.</para>\n /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Entrechat_PvE => _Entrechat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Jete_PvECreator = new(ActionFactory.Create16001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16001\"><strong>Jete</strong></see> <i>PvE</i> (DNC) [16001] [Weaponskill]\r\n /// <para>Perform a jete.</para>\n /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Jete_PvE => _Jete_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pirouette_PvECreator = new(ActionFactory.Create16002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16002\"><strong>Pirouette</strong></see> <i>PvE</i> (DNC) [16002] [Weaponskill]\r\n /// <para>Perform a pirouette.</para>\n /// <para>When performed together with other step actions, in sequence, the potency of Standard Finish and Technical Finish is increased.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Pirouette_PvE => _Pirouette_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandardFinish_PvECreator = new(ActionFactory.Create16003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16003\"><strong>Standard Finish</strong></see> <i>PvE</i> (DNC) [16003] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 360</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance Partner</para>\n /// <para>Damage bonus of Standard Finish varies with number of successful steps.</para>\n /// <para>1 Step: 2%</para>\n /// <para>2 Steps: 5%</para>\n /// <para>Duration: 60s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction StandardFinish_PvE => _StandardFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechnicalFinish_PvECreator = new(ActionFactory.Create16004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16004\"><strong>Technical Finish</strong></see> <i>PvE</i> (DNC) [16004] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 350</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>3 Steps: 900</para>\n /// <para>4 Steps: 1,200</para>\n /// <para>Step Bonus: Grants Technical Finish and Esprit to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalms</para>\n /// <para>Damage bonus of Technical Finish varies with number of successful steps.</para>\n /// <para>1 Step: 1%</para>\n /// <para>2 Steps: 2%</para>\n /// <para>3 Steps: 3%</para>\n /// <para>4 Steps: 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Flourishing Finish</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※Action changes to Tillana upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TechnicalFinish_PvE => _TechnicalFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SaberDance_PvECreator = new(ActionFactory.Create16005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16005\"><strong>Saber Dance</strong></see> <i>PvE</i> (DNC) [16005] [Weaponskill]\r\n /// <para>Delivers an attack to target and all enemies nearby it with a potency of 480 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Esprit Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction SaberDance_PvE => _SaberDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ClosedPosition_PvECreator = new(ActionFactory.Create16006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16006\"><strong>Closed Position</strong></see> <i>PvE</i> (DNC) [16006] [Ability]\r\n /// <para>Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Standard Finish, Curing Waltz, Devilment, and Tillana with said party member.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction ClosedPosition_PvE => _ClosedPosition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FanDance_PvECreator = new(ActionFactory.Create16007);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16007\"><strong>Fan Dance</strong></see> <i>PvE</i> (DNC) [16007] [Ability]\r\n /// <para>Delivers an attack with a potency of 150.</para>\n /// <para>Additional Effect: 50% chance of granting Threefold Fan Dance</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in possession of Fourfold Feathers.</para>\r\n /// </summary>\r\n public IBaseAction FanDance_PvE => _FanDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FanDanceIi_PvECreator = new(ActionFactory.Create16008);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16008\"><strong>Fan Dance II</strong></see> <i>PvE</i> (DNC) [16008] [Ability]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: 50% chance of granting Threefold Fan Dance</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in possession of Fourfold Feathers.</para>\r\n /// </summary>\r\n public IBaseAction FanDanceIi_PvE => _FanDanceIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FanDanceIii_PvECreator = new(ActionFactory.Create16009);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16009\"><strong>Fan Dance III</strong></see> <i>PvE</i> (DNC) [16009] [Ability]\r\n /// <para>Delivers an attack to target and all enemies nearby it with a potency of 200 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Threefold Fan Dance.</para>\r\n /// </summary>\r\n public IBaseAction FanDanceIii_PvE => _FanDanceIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnAvant_PvECreator = new(ActionFactory.Create16010);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16010\"><strong>En Avant</strong></see> <i>PvE</i> (DNC) [16010] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Maximum Charges: </para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction EnAvant_PvE => _EnAvant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Devilment_PvECreator = new(ActionFactory.Create16011);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16011\"><strong>Devilment</strong></see> <i>PvE</i> (DNC) [16011] [Ability]\r\n /// <para>Increases critical hit rate and direct hit rate by 20%.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Party member designated as your Dance Partner will also receive the effect of Devilment</para>\n /// <para>Additional Effect: Grants Flourishing Starfall</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Devilment_PvE => _Devilment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldSamba_PvECreator = new(ActionFactory.Create16012);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16012\"><strong>Shield Samba</strong></see> <i>PvE</i> (DNC) [16012] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with bard's Troubadour or machinist's Tactician.</para>\r\n /// </summary>\r\n public IBaseAction ShieldSamba_PvE => _ShieldSamba_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Flourish_PvECreator = new(ActionFactory.Create16013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16013\"><strong>Flourish</strong></see> <i>PvE</i> (DNC) [16013] [Ability]\r\n /// <para>Grants you the effects of Flourishing Symmetry, Flourishing Flow, Threefold Fan Dance, and Fourfold Fan Danceand Threefold Fan Danceand Threefold Fan Dance.</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Flourish_PvE => _Flourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Improvisation_PvECreator = new(ActionFactory.Create16014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16014\"><strong>Improvisation</strong></see> <i>PvE</i> (DNC) [16014] [Ability]\r\n /// <para>Dance to the beat of your own drum, granting Rising Rhythm to self.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 4.</para>\n /// <para>Additional Effect: Healing over time for self and nearby party members</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para></para>\n /// <para>※Action changes to Improvised Finish upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Improvisation_PvE => _Improvisation_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CuringWaltz_PvECreator = new(ActionFactory.Create16015);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16015\"><strong>Curing Waltz</strong></see> <i>PvE</i> (DNC) [16015] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Party member designated as your Dance Partner will also heal self and nearby party members</para>\r\n /// </summary>\r\n public IBaseAction CuringWaltz_PvE => _CuringWaltz_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SingleStandardFinish_PvECreator = new(ActionFactory.Create16191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16191\"><strong>Single Standard Finish</strong></see> <i>PvE</i> (DNC) [16191] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 360</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance Partner</para>\n /// <para>Damage bonus of Standard Finish varies with number of successful steps.</para>\n /// <para>1 Step: 2%</para>\n /// <para>2 Steps: 5%</para>\n /// <para>Duration: 60s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SingleStandardFinish_PvE => _SingleStandardFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleStandardFinish_PvECreator = new(ActionFactory.Create16192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16192\"><strong>Double Standard Finish</strong></see> <i>PvE</i> (DNC) [16192] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 360</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>Step Bonus: Grants Standard Finish and Esprit to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance PartnerStep Bonus: Grants Standard Finish to self and party member designated as your Dance Partner</para>\n /// <para>Damage bonus of Standard Finish varies with number of successful steps.</para>\n /// <para>1 Step: 2%</para>\n /// <para>2 Steps: 5%</para>\n /// <para>Duration: 60s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction DoubleStandardFinish_PvE => _DoubleStandardFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SingleTechnicalFinish_PvECreator = new(ActionFactory.Create16193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16193\"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [16193] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 350</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>3 Steps: 900</para>\n /// <para>4 Steps: 1,200</para>\n /// <para>Step Bonus: Grants Technical Finish and Esprit to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalms</para>\n /// <para>Damage bonus of Technical Finish varies with number of successful steps.</para>\n /// <para>1 Step: 1%</para>\n /// <para>2 Steps: 2%</para>\n /// <para>3 Steps: 3%</para>\n /// <para>4 Steps: 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Flourishing Finish</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※Action changes to Tillana upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SingleTechnicalFinish_PvE => _SingleTechnicalFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleTechnicalFinish_PvECreator = new(ActionFactory.Create16194);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16194\"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [16194] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 350</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>3 Steps: 900</para>\n /// <para>4 Steps: 1,200</para>\n /// <para>Step Bonus: Grants Technical Finish and Esprit to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalms</para>\n /// <para>Damage bonus of Technical Finish varies with number of successful steps.</para>\n /// <para>1 Step: 1%</para>\n /// <para>2 Steps: 2%</para>\n /// <para>3 Steps: 3%</para>\n /// <para>4 Steps: 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Flourishing Finish</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※Action changes to Tillana upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction DoubleTechnicalFinish_PvE => _DoubleTechnicalFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TripleTechnicalFinish_PvECreator = new(ActionFactory.Create16195);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16195\"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [16195] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 350</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>3 Steps: 900</para>\n /// <para>4 Steps: 1,200</para>\n /// <para>Step Bonus: Grants Technical Finish and Esprit to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalms</para>\n /// <para>Damage bonus of Technical Finish varies with number of successful steps.</para>\n /// <para>1 Step: 1%</para>\n /// <para>2 Steps: 2%</para>\n /// <para>3 Steps: 3%</para>\n /// <para>4 Steps: 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Flourishing Finish</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※Action changes to Tillana upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction TripleTechnicalFinish_PvE => _TripleTechnicalFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _QuadrupleTechnicalFinish_PvECreator = new(ActionFactory.Create16196);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16196\"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [16196] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies within 15 yalms. Potency varies with number of successful steps, dealing full potency for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>0 Steps: 350</para>\n /// <para>1 Step: 540</para>\n /// <para>2 Steps: 720</para>\n /// <para>3 Steps: 900</para>\n /// <para>4 Steps: 1,200</para>\n /// <para>Step Bonus: Grants Technical Finish and Esprit to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalmsStep Bonus: Grants Technical Finish to self and party members within 30 yalms</para>\n /// <para>Damage bonus of Technical Finish varies with number of successful steps.</para>\n /// <para>1 Step: 1%</para>\n /// <para>2 Steps: 2%</para>\n /// <para>3 Steps: 3%</para>\n /// <para>4 Steps: 5%</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Flourishing Finish</para>\n /// <para>Duration: 30s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※Action changes to Tillana upon execution.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction QuadrupleTechnicalFinish_PvE => _QuadrupleTechnicalFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ending_PvECreator = new(ActionFactory.Create18073);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18073\"><strong>Ending</strong></see> <i>PvE</i> (DNC) [18073] [Ability]\r\n /// <para>Ends dance with your partner.</para>\r\n /// </summary>\r\n public IBaseAction Ending_PvE => _Ending_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheFiendhunter_PvECreator = new(ActionFactory.Create22349);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22349\"><strong>Pure Essence of the Fiendhunter</strong></see> <i>PvE</i> (BRD MCH DNC) [22349] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 50%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheFiendhunter_PvE => _PureEssenceOfTheFiendhunter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDervish_PvECreator = new(ActionFactory.Create22356);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22356\"><strong>Lost Dervish</strong></see> <i>PvE</i> (BRD MCH DNC) [22356] [Ability]\r\n /// <para>Increases critical hit rate of self and nearby party members by 10%, increases damage dealt by 7%, and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 1%.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostDervish_PvE => _LostDervish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImprovisedFinish_PvECreator = new(ActionFactory.Create25789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25789\"><strong>Improvised Finish</strong></see> <i>PvE</i> (DNC) [25789] [Ability]\r\n /// <para>Creates a barrier around self and all nearby party members. Damage absorbed increases with stacks of Rising Rhythm.</para>\n /// <para>0 Stacks: 5% of maximum HP</para>\n /// <para>1 Stack: 6% of maximum HP</para>\n /// <para>2 Stacks: 7% of maximum HP</para>\n /// <para>3 Stacks: 8% of maximum HP</para>\n /// <para>4 Stacks: 10% of maximum HP</para>\n /// <para>Duration: 30s</para>\n /// <para>Can only be executed while Improvisation is active.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ImprovisedFinish_PvE => _ImprovisedFinish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Tillana_PvECreator = new(ActionFactory.Create25790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25790\"><strong>Tillana</strong></see> <i>PvE</i> (DNC) [25790] [Weaponskill]\r\n /// <para>Delivers an attack to all nearby enemies with a potency of 360 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants Standard Finish and Esprit to self and party member designated as your Dance Partner</para>\n /// <para>Standard Finish Effect: Increases damage dealt by 5%</para>\n /// <para>Duration: 60s</para>\n /// <para>Can only be executed while under the effect of Flourishing Finish.</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Tillana_PvE => _Tillana_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FanDanceIv_PvECreator = new(ActionFactory.Create25791);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25791\"><strong>Fan Dance IV</strong></see> <i>PvE</i> (DNC) [25791] [Ability]\r\n /// <para>Delivers an attack to all enemies in a cone before you with a potency of 300 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Fourfold Fan Dance.</para>\r\n /// </summary>\r\n public IBaseAction FanDanceIv_PvE => _FanDanceIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StarfallDance_PvECreator = new(ActionFactory.Create25792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25792\"><strong>Starfall Dance</strong></see> <i>PvE</i> (DNC) [25792] [Weaponskill]\r\n /// <para>Delivers a critical direct hit to all enemies in a straight line before you with a potency of 600 for the first enemy, and 75% less for all remaining enemies.</para>\n /// <para>Damage dealt is increased when under an effect that raises critical hit rate or direct hit rate.</para>\n /// <para>Can only be executed while under the effect of Flourishing Starfall.</para>\r\n /// </summary>\r\n public IBaseAction StarfallDance_PvE => _StarfallDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cascade_PvPCreator = new(ActionFactory.Create29416);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29416\"><strong>Cascade</strong></see> <i>PvP</i> (DNC) [29416] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※Action changes to Reverse Cascade while under the effect of En Avant.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Cascade_PvP => _Cascade_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Fountain_PvPCreator = new(ActionFactory.Create29417);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29417\"><strong>Fountain</strong></see> <i>PvP</i> (DNC) [29417] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 5,000.</para>\n /// <para>Combo Action: Cascade or Reverse Cascade</para>\n /// <para></para>\n /// <para>※Action changes to Fountainfall while under the effect of En Avant.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Fountain_PvP => _Fountain_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ReverseCascade_PvPCreator = new(ActionFactory.Create29418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29418\"><strong>Reverse Cascade</strong></see> <i>PvP</i> (DNC) [29418] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 6,000.</para>\n /// <para>Additional Effect: Grants Bladecatcher</para>\n /// <para>If already under the effect of Bladecatcher, effect changes to Flourishing Saber Dance.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of En Avant.</para>\n /// <para></para>\n /// <para>※Fountain Combo changes to Saber Dance while under the effect of Flourishing Saber Dance.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ReverseCascade_PvP => _ReverseCascade_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Fountainfall_PvPCreator = new(ActionFactory.Create29419);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29419\"><strong>Fountainfall</strong></see> <i>PvP</i> (DNC) [29419] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 8,000.</para>\n /// <para>Combo Action: Cascade or Reverse Cascade</para>\n /// <para>Additional Effect: Grants Bladecatcher</para>\n /// <para>If already under the effect of Bladecatcher, effect changes to Flourishing Saber Dance.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while under the effect of En Avant.</para>\n /// <para></para>\n /// <para>※Fountain Combo changes to Saber Dance while under the effect of Flourishing Saber Dance.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Fountainfall_PvP => _Fountainfall_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SaberDance_PvPCreator = new(ActionFactory.Create29420);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29420\"><strong>Saber Dance</strong></see> <i>PvP</i> (DNC) [29420] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 10,000 to target and all enemies nearby it.</para>\n /// <para>Potency is increased by 50% when attacking only a single target.</para>\n /// <para>Additional Effect: Increases damage dealt by self and party member designated as your Dance Partner by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Flourishing Saber Dance.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction SaberDance_PvP => _SaberDance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StarfallDance_PvPCreator = new(ActionFactory.Create29421);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29421\"><strong>Starfall Dance</strong></see> <i>PvP</i> (DNC) [29421] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 10,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Reduces weaponskill cast time and recast time, as well as spell cast time and recast time for self and party member designated as your Dance Partner by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction StarfallDance_PvP => _StarfallDance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HoningDance_PvPCreator = new(ActionFactory.Create29422);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29422\"><strong>Honing Dance</strong></see> <i>PvP</i> (DNC) [29422] [Weaponskill]\r\n /// <para>Unleashes a flurry of chakram strikes on nearby enemies, dealing damage over time with a potency of 4,000 and decreasing damage taken by 25% until effect expires.</para>\n /// <para>Duration: 3s</para>\n /// <para>Executes Honing Ovation when effect duration expires.</para>\n /// <para>Additional Effect: Grants a stack of Acclaim, up to a maximum of 4</para>\n /// <para>Acclaim Effect: Increases the damage and effect potency of Honing Ovation</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be executed while moving.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Action changes to Honing Ovation upon execution.</para>\r\n /// </summary>\r\n public IBaseAction HoningDance_PvP => _HoningDance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvPCreator = new(ActionFactory.Create29423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29423\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29423] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP => _HoningOvation_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvP_29424Creator = new(ActionFactory.Create29424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29424\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29424] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP_29424 => _HoningOvation_PvP_29424Creator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvP_29425Creator = new(ActionFactory.Create29425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29425\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29425] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP_29425 => _HoningOvation_PvP_29425Creator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvP_29426Creator = new(ActionFactory.Create29426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29426\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29426] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP_29426 => _HoningOvation_PvP_29426Creator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvP_29427Creator = new(ActionFactory.Create29427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29427\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29427] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim accumulated at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP_29427 => _HoningOvation_PvP_29427Creator.Value;\n private readonly Lazy<IBaseAction> _FanDance_PvPCreator = new(ActionFactory.Create29428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29428\"><strong>Fan Dance</strong></see> <i>PvP</i> (DNC) [29428] [Ability]\r\n /// <para>Delivers an attack with a potency of 5,000 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Reduces damage taken by self and party member designated as your Dance Partner by 10%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction FanDance_PvP => _FanDance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CuringWaltz_PvPCreator = new(ActionFactory.Create29429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29429\"><strong>Curing Waltz</strong></see> <i>PvP</i> (DNC) [29429] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 10,000</para>\n /// <para>Additional Effect: Party member designated as your Dance Partner will also heal self and nearby party members</para>\r\n /// </summary>\r\n public IBaseAction CuringWaltz_PvP => _CuringWaltz_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EnAvant_PvPCreator = new(ActionFactory.Create29430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29430\"><strong>En Avant</strong></see> <i>PvP</i> (DNC) [29430] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Grants En Avant</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 4</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction EnAvant_PvP => _EnAvant_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ClosedPosition_PvPCreator = new(ActionFactory.Create29431);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29431\"><strong>Closed Position</strong></see> <i>PvP</i> (DNC) [29431] [Ability]\r\n /// <para>Grants you Closed Position and designates a party member as your Dance Partner, allowing you to share the effects of Saber Dance, Starfall Dance, Fan Dance, and Curing Waltz with said party member.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction ClosedPosition_PvP => _ClosedPosition_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Contradance_PvPCreator = new(ActionFactory.Create29432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29432\"><strong>Contradance</strong></see> <i>PvP</i> (DNC) [29432] [Limit Break]\r\n /// <para>Charms nearby enemies.</para>\n /// <para>Duration: 2s</para>\n /// <para>Damage you deal to charmed enemies will extend the effect duration by 2s. This effect can only be extended once.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 90s</para>\r\n /// </summary>\r\n public IBaseAction Contradance_PvP => _Contradance_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HoningOvation_PvP_29470Creator = new(ActionFactory.Create29470);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29470\"><strong>Honing Ovation</strong></see> <i>PvP</i> (DNC) [29470] [Weaponskill]\r\n /// <para>Delivers an attack to nearby enemies and erects a magicked barrier around nearby party members.</para>\n /// <para>Potency of both the attack and barrier varies with the number of stacks of Acclaim available at time of execution.</para>\n /// <para>Potency of both the attack and barrier doubles when targets are within 5 yalms.</para>\n /// <para>0 Stacks: 2,000 attack potency, and barrier equivalent to a heal of 2,000 potency</para>\n /// <para>1 Stack: 3,000 attack potency, and barrier equivalent to a heal of 3,000 potency</para>\n /// <para>2 Stacks: 4,000 attack potency, and barrier equivalent to a heal of 4,000 potency</para>\n /// <para>3 Stacks: 5,000 attack potency, and barrier equivalent to a heal of 5,000 potency</para>\n /// <para>4 Stacks: 6,000 attack potency, and barrier equivalent to a heal of 6,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>Honing Dance effect expires upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HoningOvation_PvP_29470 => _HoningOvation_PvP_29470Creator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SingleTechnicalFinish_PvE_33215Creator = new(ActionFactory.Create33215);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33215\"><strong>Single Technical Finish</strong></see> <i>PvE</i> (DNC) [33215] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SingleTechnicalFinish_PvE_33215 => _SingleTechnicalFinish_PvE_33215Creator.Value;\n private readonly Lazy<IBaseAction> _DoubleTechnicalFinish_PvE_33216Creator = new(ActionFactory.Create33216);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33216\"><strong>Double Technical Finish</strong></see> <i>PvE</i> (DNC) [33216] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoubleTechnicalFinish_PvE_33216 => _DoubleTechnicalFinish_PvE_33216Creator.Value;\n private readonly Lazy<IBaseAction> _TripleTechnicalFinish_PvE_33217Creator = new(ActionFactory.Create33217);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33217\"><strong>Triple Technical Finish</strong></see> <i>PvE</i> (DNC) [33217] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TripleTechnicalFinish_PvE_33217 => _TripleTechnicalFinish_PvE_33217Creator.Value;\n private readonly Lazy<IBaseAction> _QuadrupleTechnicalFinish_PvE_33218Creator = new(ActionFactory.Create33218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33218\"><strong>Quadruple Technical Finish</strong></see> <i>PvE</i> (DNC) [33218] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction QuadrupleTechnicalFinish_PvE_33218 => _QuadrupleTechnicalFinish_PvE_33218Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageTraitCreator = new(() => new BaseTrait(251));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50251\"><strong>Increased Action Damage</strong></see> (DNC) [251]\r\n /// <para>Increases base action damage by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageTrait => _IncreasedActionDamageTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _FourfoldFantasyTraitCreator = new(() => new BaseTrait(252));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50252\"><strong>Fourfold Fantasy</strong></see> (DNC) [252]\r\n /// <para>Grants a Fourfold Feather upon landing certain actions.</para>\n /// <para>Maximum Stacks: 4</para>\r\n /// </summary>\r\n public IBaseTrait FourfoldFantasyTrait => _FourfoldFantasyTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _IncreasedActionDamageIiTraitCreator = new(() => new BaseTrait(253));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50253\"><strong>Increased Action Damage II</strong></see> (DNC) [253]\r\n /// <para>Increases base action damage by 20%.</para>\r\n /// </summary>\r\n public IBaseTrait IncreasedActionDamageIiTrait => _IncreasedActionDamageIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnAvantTraitCreator = new(() => new BaseTrait(254));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50254\"><strong>Enhanced En Avant</strong></see> (DNC) [254]\r\n /// <para>Allows the accumulation of charges for consecutive uses of En Avant.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnAvantTrait => _EnhancedEnAvantTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EspritTraitCreator = new(() => new BaseTrait(255));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50255\"><strong>Esprit</strong></see> (DNC) [255]\r\n /// <para>Grants Esprit to self and nearby party members upon successfully executing Standard Finish or Technical Finish.</para>\n /// <para>Esprit Effect: Increases Esprit Gauge by 5 upon successfully landing Cascade, Reverse Cascade, Fountain, Fountainfall, Windmill, Rising Windmill, Bladeshower, or Bloodshower. When party members successfully land a weaponskill or cast a spell, has a chance of increasing Esprit Gauge by 10.</para>\n /// <para>Chance of triggering party member effect differs according to job.</para>\r\n /// </summary>\r\n public IBaseTrait EspritTrait => _EspritTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEnAvantIiTraitCreator = new(() => new BaseTrait(256));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50256\"><strong>Enhanced En Avant II</strong></see> (DNC) [256]\r\n /// <para>Allows a third charge of En Avant.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEnAvantIiTrait => _EnhancedEnAvantIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedTechnicalFinishTraitCreator = new(() => new BaseTrait(453));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50453\"><strong>Enhanced Technical Finish</strong></see> (DNC) [453]\r\n /// <para>Grants Flourishing Finish after executing Technical Finish.</para>\n /// <para>Duration: 30s</para>\n /// <para>Technical Finish becomes Tillana while under this effect.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedTechnicalFinishTrait => _EnhancedTechnicalFinishTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedEspritTraitCreator = new(() => new BaseTrait(454));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50454\"><strong>Enhanced Esprit</strong></see> (DNC) [454]\r\n /// <para>Increases Esprit Gauge by 10 upon successfully landing Reverse Cascade, Fountainfall, Rising Windmill, or Bloodshower.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedEspritTrait => _EnhancedEspritTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedFlourishTraitCreator = new(() => new BaseTrait(455));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50455\"><strong>Enhanced Flourish</strong></see> (DNC) [455]\r\n /// <para>Grants Fourfold Fan Dance upon executing Flourish.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedFlourishTrait => _EnhancedFlourishTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedShieldSambaTraitCreator = new(() => new BaseTrait(456));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50456\"><strong>Enhanced Shield Samba</strong></see> (DNC) [456]\r\n /// <para>Reduces Shield Samba recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedShieldSambaTrait => _EnhancedShieldSambaTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedDevilmentTraitCreator = new(() => new BaseTrait(457));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50457\"><strong>Enhanced Devilment</strong></see> (DNC) [457]\r\n /// <para>Grants Flourishing Starfall upon executing Devilment.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedDevilmentTrait => _EnhancedDevilmentTraitCreator.Value;\r\n#endregion\r\n}", + "ReaperRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/reaper\"><strong>Reaper</strong></see>\r\n/// </summary>\r\npublic abstract partial class ReaperRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.RPR };\r\n static RPRGauge JobGauge => Svc.Gauges.Get<RPRGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create7541);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7541\"><strong>Second Wind</strong></see> <i>PvE</i> (PGL LNC ARC ROG MNK DRG BRD NIN MCH SAM DNC RPR) [7541] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create7542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7542\"><strong>Bloodbath</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7542] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TrueNorth_PvECreator = new(ActionFactory.Create7546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7546\"><strong>True North</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7546] [Ability]\r\n /// <para>Nullifies all action direction requirements.</para>\n /// <para>Duration: 10s</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseAction TrueNorth_PvE => _TrueNorth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArmsLength_PvECreator = new(ActionFactory.Create7548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7548\"><strong>Arm's Length</strong></see> <i>PvE</i> (GLA PGL MRD LNC ARC PLD MNK WAR DRG BRD ROG NIN MCH DRK SAM GNB DNC RPR) [7548] [Ability]\r\n /// <para>Creates a barrier nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\n /// <para>Additional Effect: Slow +20% when barrier is struck</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArmsLength_PvE => _ArmsLength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Feint_PvECreator = new(ActionFactory.Create7549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7549\"><strong>Feint</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7549] [Ability]\r\n /// <para>Lowers target's physical damage dealt by 10% and magic damage dealt by 5%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Feint_PvE => _Feint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LegSweep_PvECreator = new(ActionFactory.Create7863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7863\"><strong>Leg Sweep</strong></see> <i>PvE</i> (PGL LNC ROG MNK DRG NIN SAM RPR) [7863] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction LegSweep_PvE => _LegSweep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheSkirmisher_PvECreator = new(ActionFactory.Create12963);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12963\"><strong>Wisdom of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12963] [Spell]\r\n /// <para>Increases damage dealt by 20%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheSkirmisher_PvE => _WisdomOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheIrregular_PvECreator = new(ActionFactory.Create12966);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12966\"><strong>Wisdom of the Irregular</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12966] [Spell]\r\n /// <para>Increases damage dealt by 30% while reducing magic defense by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheIrregular_PvE => _WisdomOfTheIrregular_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritDartL_PvECreator = new(ActionFactory.Create12977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12977\"><strong>Spirit Dart L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12977] [Weaponskill]\r\n /// <para>Delivers a ranged attack with a potency of 100.</para>\n /// <para>Additional Effect: Afflicts target with Spirit Dart L, increasing damage taken by 8%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction SpiritDartL_PvE => _SpiritDartL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CatastropheL_PvECreator = new(ActionFactory.Create12978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12978\"><strong>Catastrophe L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [12978] [Ability]\r\n /// <para>Deals unaspected damage to all nearby enemies with a potency of 4,000, while dealing damage with a potency of 999,999 to self.</para>\r\n /// </summary>\r\n public IBaseAction CatastropheL_PvE => _CatastropheL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RapidRecastL_PvECreator = new(ActionFactory.Create12988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12988\"><strong>Rapid Recast L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12988] [Ability]\r\n /// <para>Shortens recast time for next ability used by 50%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction RapidRecastL_PvE => _RapidRecastL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureL_PvECreator = new(ActionFactory.Create12989);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12989\"><strong>Cure L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12989] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureL_PvE => _CureL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIi_PvECreator = new(ActionFactory.Create12990);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12990\"><strong>Cure L II</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [12990] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 12,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIi_PvE => _CureLIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureLIii_PvECreator = new(ActionFactory.Create12992);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12992\"><strong>Cure L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12992] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 9,000</para>\r\n /// </summary>\r\n public IBaseAction CureLIii_PvE => _CureLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RegenL_PvECreator = new(ActionFactory.Create12993);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12993\"><strong>Regen L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12993] [Spell]\r\n /// <para>Grants Regen to target.</para>\n /// <para>Cure Potency: 2,500</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction RegenL_PvE => _RegenL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EsunaL_PvECreator = new(ActionFactory.Create12994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12994\"><strong>Esuna L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12994] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction EsunaL_PvE => _EsunaL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RaiseL_PvECreator = new(ActionFactory.Create12996);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12996\"><strong>Raise L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [12996] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction RaiseL_PvE => _RaiseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleEdgeL_PvECreator = new(ActionFactory.Create13006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13006\"><strong>Double Edge L</strong></see> <i>PvE</i> (PLD MNK WAR DRG NIN DRK SAM GNB RPR) [13006] [Ability]\r\n /// <para>Increases physical damage dealt while dealing damage to self over time.</para>\n /// <para>Stacks increase every 3 seconds, up to a maximum of 16. For each stack, physical damage dealt is increased by 15%, and potency of damage dealt to self increases by 360.</para>\n /// <para>Duration: 48s</para>\r\n /// </summary>\r\n public IBaseAction DoubleEdgeL_PvE => _DoubleEdgeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerceptionL_PvECreator = new(ActionFactory.Create14476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14476\"><strong>Perception L</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [14476] [Ability]\r\n /// <para>Reveals all traps within a 15-yalm radius. If no traps exist within 15 yalms, detects whether any traps are present within a 36-yalm radius.</para>\n /// <para>Only effective within dungeons.</para>\r\n /// </summary>\r\n public IBaseAction PerceptionL_PvE => _PerceptionL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheDuelist_PvECreator = new(ActionFactory.Create14478);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14478\"><strong>Wisdom of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [14478] [Spell]\r\n /// <para>Increases physical damage dealt by 40% and maximum HP by 15%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheDuelist_PvE => _WisdomOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvE_15375Creator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE_15375 => _SecondWind_PvE_15375Creator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostParalyzeIii_PvECreator = new(ActionFactory.Create20701);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20701\"><strong>Lost Paralyze III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20701] [Spell]\r\n /// <para>Afflicts target and all nearby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostParalyzeIii_PvE => _LostParalyzeIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfPower_PvECreator = new(ActionFactory.Create20717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20717\"><strong>Lost Font of Power</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20717] [Ability]\r\n /// <para>Increases damage dealt by 30% and critical hit rate by 40%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Irregular Effect: Damage bonus effect is increased to 40%</para>\n /// <para>Spirit of the Platebearer Effect: Grants Solid Shield to self</para>\n /// <para>Solid Shield Effect: Reduces physical damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfPower_PvE => _LostFontOfPower_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSlash_PvECreator = new(ActionFactory.Create20718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20718\"><strong>Lost Slash</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [20718] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 800 to all enemies in a cone before you. When critical damage is dealt, potency is tripled.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostSlash_PvE => _LostSlash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCure_PvECreator = new(ActionFactory.Create20726);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20726\"><strong>Lost Cure</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20726] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCure_PvE => _LostCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIi_PvECreator = new(ActionFactory.Create20727);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20727\"><strong>Lost Cure II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20727] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIi_PvE => _LostCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIii_PvECreator = new(ActionFactory.Create20728);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20728\"><strong>Lost Cure III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20728] [Spell]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction LostCureIii_PvE => _LostCureIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostCureIv_PvECreator = new(ActionFactory.Create20729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20729\"><strong>Lost Cure IV</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20729] [Ability]\r\n /// <para>Restores own or target party member's HP and all party members nearby target.</para>\n /// <para>Cure Potency: 21,700</para>\n /// <para>Spirit of the Savior Effect: Regen</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LostCureIv_PvE => _LostCureIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSavior_PvECreator = new(ActionFactory.Create20743);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20743\"><strong>Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20743] [Item]\r\n /// <para>Increases healing potency by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSavior_PvE => _EssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20745);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20745\"><strong>Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20745] [Item]\r\n /// <para>Increases defense by 80% and maximum HP by 45%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfThePlatebearer_PvE => _EssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20748);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20748\"><strong>Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20748] [Item]\r\n /// <para>Increases damage dealt by 20% and critical hit rate by 15%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheSkirmisher_PvE => _EssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20749);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20749\"><strong>Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20749] [Item]\r\n /// <para>Reduces maximum HP by 5% while increasing evasion by 40%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheWatcher_PvE => _EssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBeast_PvECreator = new(ActionFactory.Create20754);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20754\"><strong>Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20754] [Item]\r\n /// <para>Increases defense by 50% and maximum HP by 45%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBeast_PvE => _EssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSavior_PvECreator = new(ActionFactory.Create20758);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20758\"><strong>Deep Essence of the Savior</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [20758] [Item]\r\n /// <para>Increases healing potency by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSavior_PvE => _DeepEssenceOfTheSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfThePlatebearer_PvECreator = new(ActionFactory.Create20760);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20760\"><strong>Deep Essence of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD NIN MCH SAM DNC RPR) [20760] [Item]\r\n /// <para>Increases defense by 96% and maximum HP by 54%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfThePlatebearer_PvE => _DeepEssenceOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheSkirmisher_PvECreator = new(ActionFactory.Create20763);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20763\"><strong>Deep Essence of the Skirmisher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20763] [Item]\r\n /// <para>Increases damage dealt by 24% and critical hit rate by 18%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheSkirmisher_PvE => _DeepEssenceOfTheSkirmisher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheWatcher_PvECreator = new(ActionFactory.Create20764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20764\"><strong>Deep Essence of the Watcher</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20764] [Item]\r\n /// <para>Reduces maximum HP by 3% while increasing evasion by 48%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheWatcher_PvE => _DeepEssenceOfTheWatcher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBeast_PvECreator = new(ActionFactory.Create20769);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20769\"><strong>Deep Essence of the Beast</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [20769] [Item]\r\n /// <para>Increases defense by 60% and maximum HP by 54%.</para>\n /// <para>Additional Effect: Absorb a portion of damage dealt as HP</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBeast_PvE => _DeepEssenceOfTheBeast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheGambler_PvECreator = new(ActionFactory.Create22346);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22346\"><strong>Pure Essence of the Gambler</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [22346] [Item]\r\n /// <para>Increases evasion by 11%, critical hit rate by 77%, and direct hit rate by 77%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheGambler_PvE => _PureEssenceOfTheGambler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDuelist_PvECreator = new(ActionFactory.Create22348);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22348\"><strong>Pure Essence of the Duelist</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22348] [Item]\r\n /// <para>Increases defense by 60%, damage dealt by 60%, and maximum HP by 81%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDuelist_PvE => _PureEssenceOfTheDuelist_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRendArmor_PvECreator = new(ActionFactory.Create22353);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22353\"><strong>Lost Rend Armor</strong></see> <i>PvE</i> (MNK DRG NIN SAM RPR) [22353] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 100.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostRendArmor_PvE => _LostRendArmor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostRampage_PvECreator = new(ActionFactory.Create23910);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23910\"><strong>Lost Rampage</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23910] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Physical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostRampage_PvE => _LostRampage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAssassination_PvECreator = new(ActionFactory.Create23914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23914\"><strong>Lost Assassination</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD NIN MCH DRK SAM GNB DNC RPR) [23914] [Weaponskill]\r\n /// <para>Delivers a close-quarter attack with a potency of 350. Chance of instant KO when attacking from the rear, which increases the lower the target's HP.</para>\n /// <para>Spirit of the Beast Effect: Grants the effect of Lost Font of Power to self</para>\n /// <para>Lost Font of Power Effect: Increases damage dealt by 30% and critical hit rate by 40%</para>\n /// <para>Duration: 18s</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostAssassination_PvE => _LostAssassination_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostExcellence_PvECreator = new(ActionFactory.Create23919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23919\"><strong>Lost Excellence</strong></see> <i>PvE</i> (MNK DRG BRD BLM SMN NIN MCH SAM RDM DNC RPR) [23919] [Ability]\r\n /// <para>Instantly cures Weakness and temporarily nullifies most attacks, while increasing damage dealt by 65%. Memorable will be applied when effect ends.</para>\n /// <para>Duration: 10s</para>\n /// <para>Memorable Effect: Increases damage dealt by 65% while decreasing damage taken by 10%</para>\n /// <para>Duration: 50s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostExcellence_PvE => _LostExcellence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create24373);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24373\"><strong>Slice</strong></see> <i>PvE</i> (RPR) [24373] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Increases Soul Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create24374);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24374\"><strong>Waxing Slice</strong></see> <i>PvE</i> (RPR) [24374] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Slice</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Soul Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create24375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24375\"><strong>Infernal Slice</strong></see> <i>PvE</i> (RPR) [24375] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Combo Action: Waxing Slice</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Soul Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create24376);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24376\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (RPR) [24376] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of to all nearby enemies.</para>\n /// <para>Additional Effect: Increases Soul Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create24377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24377\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (RPR) [24377] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of to all nearby enemies.</para>\n /// <para>Combo Action: Spinning Scythe</para>\n /// <para>Combo Potency: </para>\n /// <para>Combo Bonus: Increases Soul Gauge by 10</para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShadowOfDeath_PvECreator = new(ActionFactory.Create24378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24378\"><strong>Shadow of Death</strong></see> <i>PvE</i> (RPR) [24378] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of .</para>\n /// <para>Additional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends duration of Death's Design by 30s to a maximum of 60s.</para>\n /// <para>Additional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires</para>\r\n /// </summary>\r\n public IBaseAction ShadowOfDeath_PvE => _ShadowOfDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WhorlOfDeath_PvECreator = new(ActionFactory.Create24379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24379\"><strong>Whorl of Death</strong></see> <i>PvE</i> (RPR) [24379] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Death's Design, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>Extends duration of Death's Design by 30s to a maximum of 60s.</para>\n /// <para>Additional Effect: Increases Soul Gauge by 10 if target is KO'd before effect expires</para>\r\n /// </summary>\r\n public IBaseAction WhorlOfDeath_PvE => _WhorlOfDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoulSlice_PvECreator = new(ActionFactory.Create24380);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24380\"><strong>Soul Slice</strong></see> <i>PvE</i> (RPR) [24380] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 460.</para>\n /// <para>Additional Effect: Increases Soul Gauge by 50</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Shares a recast timer with Soul Scythe.</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction SoulSlice_PvE => _SoulSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoulScythe_PvECreator = new(ActionFactory.Create24381);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24381\"><strong>Soul Scythe</strong></see> <i>PvE</i> (RPR) [24381] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180 to all nearby enemies.</para>\n /// <para>Additional Effect: Increases Soul Gauge by 50</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Shares a recast timer with Soul Slice.</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction SoulScythe_PvE => _SoulScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gibbet_PvECreator = new(ActionFactory.Create24382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24382\"><strong>Gibbet</strong></see> <i>PvE</i> (RPR) [24382] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 400.</para>\n /// <para>460 when executed from a target's flank.</para>\n /// <para>Enhanced Gibbet Potency: 460</para>\n /// <para>Flank Enhanced Potency: 520</para>\n /// <para>Additional Effect: Grants Enhanced Gallows</para>\n /// <para>Duration: 60s</para>\n /// <para>The action Blood Stalk changes to Unveiled Gallows while under the effect of Enhanced Gallows.</para>\n /// <para>Additional Effect: Increases Shroud Gauge by 10</para>\n /// <para>Can only be executed while under the effect of Soul Reaver.</para>\n /// <para></para>\n /// <para>※Action changes to Void Reaping while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction Gibbet_PvE => _Gibbet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gallows_PvECreator = new(ActionFactory.Create24383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24383\"><strong>Gallows</strong></see> <i>PvE</i> (RPR) [24383] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 400.</para>\n /// <para>460 when executed from a target's rear.</para>\n /// <para>Enhanced Gallows Potency: 460</para>\n /// <para>Rear Enhanced Potency: 520</para>\n /// <para>Additional Effect: Grants Enhanced Gibbet</para>\n /// <para>Duration: 60s</para>\n /// <para>The action Blood Stalk changes to Unveiled Gibbet while under the effect of Enhanced Gibbet.</para>\n /// <para>Additional Effect: Increases Shroud Gauge by 10</para>\n /// <para>Can only be executed while under the effect of Soul Reaver.</para>\n /// <para></para>\n /// <para>※Action changes to Cross Reaping while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction Gallows_PvE => _Gallows_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guillotine_PvECreator = new(ActionFactory.Create24384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24384\"><strong>Guillotine</strong></see> <i>PvE</i> (RPR) [24384] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Increases Shroud Gauge by 10</para>\n /// <para>Can only be executed while under the effect of Soul Reaver.</para>\n /// <para></para>\n /// <para>※Action changes to Grim Reaping while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction Guillotine_PvE => _Guillotine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PlentifulHarvest_PvECreator = new(ActionFactory.Create24385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24385\"><strong>Plentiful Harvest</strong></see> <i>PvE</i> (RPR) [24385] [Weaponskill]\r\n /// <para>Delivers an attack to all enemies in a straight line before you with a potency of 720 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Immortal Sacrifice Cost: 1 stack</para>\n /// <para>Potency increases up to 1,000 as stacks of Immortal Sacrifice exceed minimum cost.</para>\n /// <para>Additional Effect: Increases Shroud Gauge by 50</para>\n /// <para>Cannot be executed while under the effect of Bloodsown Circle.</para>\n /// <para>Consumes all stacks of Immortal Sacrifice upon execution.</para>\r\n /// </summary>\r\n public IBaseAction PlentifulHarvest_PvE => _PlentifulHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Harpe_PvECreator = new(ActionFactory.Create24386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24386\"><strong>Harpe</strong></see> <i>PvE</i> (RPR) [24386] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\r\n /// </summary>\r\n public IBaseAction Harpe_PvE => _Harpe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Soulsow_PvECreator = new(ActionFactory.Create24387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24387\"><strong>Soulsow</strong></see> <i>PvE</i> (RPR) [24387] [Spell]\r\n /// <para>Grants Soulsow to self, changing the action to Harvest Moon.</para>\n /// <para>Cast time is instant when used outside of battle.</para>\r\n /// </summary>\r\n public IBaseAction Soulsow_PvE => _Soulsow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HarvestMoon_PvECreator = new(ActionFactory.Create24388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24388\"><strong>Harvest Moon</strong></see> <i>PvE</i> (RPR) [24388] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Can only be executed while under the effect of Soulsow.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HarvestMoon_PvE => _HarvestMoon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodStalk_PvECreator = new(ActionFactory.Create24389);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24389\"><strong>Blood Stalk</strong></see> <i>PvE</i> (RPR) [24389] [Ability]\r\n /// <para>Summons your avatar to deliver an attack with a potency of 340.</para>\n /// <para>Additional Effect: Grants Soul Reaver</para>\n /// <para>Duration: 30s</para>\n /// <para>Stack count will be reduced to 1 when already under the effect of Soul Reaver.</para>\n /// <para>Soul Gauge Cost: 50</para>\n /// <para>Shares a recast timer with all avatar attacks except Gluttony.</para>\n /// <para></para>\n /// <para>※Action changes to Lemure's Slice while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction BloodStalk_PvE => _BloodStalk_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnveiledGibbet_PvECreator = new(ActionFactory.Create24390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24390\"><strong>Unveiled Gibbet</strong></see> <i>PvE</i> (RPR) [24390] [Ability]\r\n /// <para>Summons your avatar to deliver an attack with a potency of 400.</para>\n /// <para>Additional Effect: Grants Soul Reaver</para>\n /// <para>Duration: 30s</para>\n /// <para>Stack count will be reduced to 1 when already under the effect of Soul Reaver.</para>\n /// <para>Soul Gauge Cost: 50</para>\n /// <para>Can only be executed while under the effect of Enhanced Gibbet.</para>\n /// <para>Shares a recast timer with all avatar attacks except Gluttony.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction UnveiledGibbet_PvE => _UnveiledGibbet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnveiledGallows_PvECreator = new(ActionFactory.Create24391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24391\"><strong>Unveiled Gallows</strong></see> <i>PvE</i> (RPR) [24391] [Ability]\r\n /// <para>Summons your avatar to deliver an attack with a potency of 400.</para>\n /// <para>Additional Effect: Grants Soul Reaver</para>\n /// <para>Duration: 30s</para>\n /// <para>Stack count will be reduced to 1 when already under the effect of Soul Reaver.</para>\n /// <para>Soul Gauge Cost: 50</para>\n /// <para>Can only be executed while under the effect of Enhanced Gallows.</para>\n /// <para>Shares a recast timer with all avatar attacks except Gluttony.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction UnveiledGallows_PvE => _UnveiledGallows_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GrimSwathe_PvECreator = new(ActionFactory.Create24392);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24392\"><strong>Grim Swathe</strong></see> <i>PvE</i> (RPR) [24392] [Ability]\r\n /// <para>Summons your avatar to deliver an attack with a potency of 140 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Grants Soul Reaver</para>\n /// <para>Duration: 30s</para>\n /// <para>Stack count will be reduced to 1 when already under the effect of Soul Reaver.</para>\n /// <para>Soul Gauge Cost: 50</para>\n /// <para>Shares a recast timer with all avatar attacks except Gluttony.</para>\n /// <para></para>\n /// <para>※Action changes to Lemure's Scythe while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction GrimSwathe_PvE => _GrimSwathe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Gluttony_PvECreator = new(ActionFactory.Create24393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24393\"><strong>Gluttony</strong></see> <i>PvE</i> (RPR) [24393] [Ability]\r\n /// <para>Summons your avatar to deal unaspected damage to target and all enemies nearby it with a potency of 520 for the first enemy, and 25% less for all remaining enemies.</para>\n /// <para>Additional Effect: Grants 2 stacks of Soul Reaver</para>\n /// <para>Duration: 30s</para>\n /// <para>Soul Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Gluttony_PvE => _Gluttony_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Enshroud_PvECreator = new(ActionFactory.Create24394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24394\"><strong>Enshroud</strong></see> <i>PvE</i> (RPR) [24394] [Ability]\r\n /// <para>Offers your flesh as a vessel to your avatar, gaining maximum stacks of Lemure Shroud.</para>\n /// <para>Duration: 30s</para>\n /// <para>Certain actions cannot be executed while playing host to your avatar.</para>\n /// <para>Shroud Gauge Cost: 50</para>\r\n /// </summary>\r\n public IBaseAction Enshroud_PvE => _Enshroud_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidReaping_PvECreator = new(ActionFactory.Create24395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24395\"><strong>Void Reaping</strong></see> <i>PvE</i> (RPR) [24395] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 460.</para>\n /// <para>Enhanced Void Reaping Potency: 520</para>\n /// <para>Additional Effect: Grants Enhanced Cross Reaping</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Void Shroud</para>\n /// <para>Can only be executed while under the effect of Enshrouded.</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\n /// <para>Lemure Shroud Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction VoidReaping_PvE => _VoidReaping_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrossReaping_PvECreator = new(ActionFactory.Create24396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24396\"><strong>Cross Reaping</strong></see> <i>PvE</i> (RPR) [24396] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 460.</para>\n /// <para>Enhanced Cross Reaping Potency: 520</para>\n /// <para>Additional Effect: Grants Enhanced Void Reaping</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Grants Void Shroud</para>\n /// <para>Can only be executed while under the effect of Lemure Shroud.</para>\n /// <para>Lemure Shroud Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrossReaping_PvE => _CrossReaping_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GrimReaping_PvECreator = new(ActionFactory.Create24397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24397\"><strong>Grim Reaping</strong></see> <i>PvE</i> (RPR) [24397] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 200 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Grants Void Shroud</para>\n /// <para>Can only be executed while under the effect of Enshrouded.</para>\n /// <para>Lemure Shroud Cost: 1</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction GrimReaping_PvE => _GrimReaping_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create24398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24398\"><strong>Communio</strong></see> <i>PvE</i> (RPR) [24398] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\n /// <para>Enshrouded effect expires upon execution.</para>\n /// <para>Requires at least one stack of Lemure Shroud to execute.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LemuresSlice_PvECreator = new(ActionFactory.Create24399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24399\"><strong>Lemure's Slice</strong></see> <i>PvE</i> (RPR) [24399] [Ability]\r\n /// <para>Delivers an attack with a potency of 240.</para>\n /// <para>Void Shroud Cost: 2</para>\n /// <para>Shares a recast timer with Lemure's Scythe.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction LemuresSlice_PvE => _LemuresSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LemuresScythe_PvECreator = new(ActionFactory.Create24400);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24400\"><strong>Lemure's Scythe</strong></see> <i>PvE</i> (RPR) [24400] [Ability]\r\n /// <para>Delivers an attack with a potency of 100 to all enemies in a cone before you.</para>\n /// <para>Void Shroud Cost: 2</para>\n /// <para>Shares a recast timer with Lemure's Slice.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction LemuresScythe_PvE => _LemuresScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HellsIngress_PvECreator = new(ActionFactory.Create24401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24401\"><strong>Hell's Ingress</strong></see> <i>PvE</i> (RPR) [24401] [Ability]\r\n /// <para>Quickly dash 15 yalms forward.</para>\n /// <para>Additional Effect: Allows next Harpe to be cast immediately</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>Shares a recast timer with Hell's Egress.</para>\r\n /// </summary>\r\n public IBaseAction HellsIngress_PvE => _HellsIngress_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HellsEgress_PvECreator = new(ActionFactory.Create24402);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24402\"><strong>Hell's Egress</strong></see> <i>PvE</i> (RPR) [24402] [Ability]\r\n /// <para>Quickly dash 15 yalms backwards.</para>\n /// <para>Additional Effect: Allows next Harpe to be cast immediately</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self</para>\n /// <para>Duration: 10s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para>Shares a recast timer with Hell's Ingress.</para>\r\n /// </summary>\r\n public IBaseAction HellsEgress_PvE => _HellsEgress_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Regress_PvECreator = new(ActionFactory.Create24403);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24403\"><strong>Regress</strong></see> <i>PvE</i> (RPR) [24403] [Ability]\r\n /// <para>Move instantly to the Hellsgate left behind by you.</para>\n /// <para>Can only be executed while under the effect of Threshold.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Regress_PvE => _Regress_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create24404);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24404\"><strong>Arcane Crest</strong></see> <i>PvE</i> (RPR) [24404] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that nullifies damage totaling up to 10% of maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para>Grants Crest of Time Returned to self and nearby party members within a radius of 15 yalms when barrier is completely absorbed.</para>\n /// <para>Crest of Time Returned Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 50</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCircle_PvECreator = new(ActionFactory.Create24405);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24405\"><strong>Arcane Circle</strong></see> <i>PvE</i> (RPR) [24405] [Ability]\r\n /// <para>Increases damage dealt by self and nearby party members by 3%.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Grants Circle of Sacrifice to self and nearby party members</para>\n /// <para>Duration: 5s</para>\n /// <para>Additional Effect: Grants Bloodsown Circle to self</para>\n /// <para>Duration: 6s</para>\n /// <para>Circle of Sacrifice Effect: When you or party members under this effect successfully land a weaponskill or cast a spell, the reaper who applied it may be granted a stack of Immortal Sacrifice, up to a maximum of 8</para>\n /// <para>Duration: 30s</para>\n /// <para>Bloodsown Circle Effect: Allows you to accumulate stacks of Immortal Sacrifice from party members under the effect of your Circle of Sacrifice</para>\r\n /// </summary>\r\n public IBaseAction ArcaneCircle_PvE => _ArcaneCircle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvPCreator = new(ActionFactory.Create29538);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29538\"><strong>Slice</strong></see> <i>PvP</i> (RPR) [29538] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Slice_PvP => _Slice_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvPCreator = new(ActionFactory.Create29539);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29539\"><strong>Waxing Slice</strong></see> <i>PvP</i> (RPR) [29539] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000.</para>\n /// <para>Combo Action: Slice</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvP => _WaxingSlice_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvPCreator = new(ActionFactory.Create29540);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29540\"><strong>Infernal Slice</strong></see> <i>PvP</i> (RPR) [29540] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 5,000.</para>\n /// <para>Combo Action: Waxing Slice</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvP => _InfernalSlice_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _VoidReaping_PvPCreator = new(ActionFactory.Create29543);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29543\"><strong>Void Reaping</strong></see> <i>PvP</i> (RPR) [29543] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000.</para>\n /// <para>Additional Effect: Grants Ripe for Reaping</para>\n /// <para>Duration: 10s</para>\n /// <para>Can only be executed while under the effect of Enshrouded.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※Infernal Slice Combo changes to Cross Reaping while under the effect of Ripe for Reaping.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction VoidReaping_PvP => _VoidReaping_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CrossReaping_PvPCreator = new(ActionFactory.Create29544);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29544\"><strong>Cross Reaping</strong></see> <i>PvP</i> (RPR) [29544] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000.</para>\n /// <para>Can only be executed while under the effect of Enshrouded and Ripe for Reaping.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction CrossReaping_PvP => _CrossReaping_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HarvestMoon_PvPCreator = new(ActionFactory.Create29545);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29545\"><strong>Harvest Moon</strong></see> <i>PvP</i> (RPR) [29545] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 4,000 to target and all enemies nearby it.</para>\n /// <para>Potency increases up to 8,000 as the target's HP decreases, reaching its maximum value when the target has 50% HP or less.</para>\n /// <para>Additional Effect: Absorbs 100% of damage dealt as HP</para>\n /// <para>Can only be executed while under the effect of Soulsow.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction HarvestMoon_PvP => _HarvestMoon_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PlentifulHarvest_PvPCreator = new(ActionFactory.Create29546);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29546\"><strong>Plentiful Harvest</strong></see> <i>PvP</i> (RPR) [29546] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 4,000 to all enemies in a straight line before you.</para>\n /// <para>Potency increases up to 24,000 based on your accumulated stacks of Immortal Sacrifice, gained by executing Soul Slice, KOing enemies, or earning assists.</para>\n /// <para>Additional Effect: Gradually fills your limit gauge</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect can only be activated while in combat.</para>\n /// <para>Consumes all stacks of Immortal Sacrifice upon execution.</para>\n /// <para>Can only be executed while not under the effect of Enshrouded.</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction PlentifulHarvest_PvP => _PlentifulHarvest_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _GrimSwathe_PvPCreator = new(ActionFactory.Create29547);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29547\"><strong>Grim Swathe</strong></see> <i>PvP</i> (RPR) [29547] [Ability]\r\n /// <para>Summons your avatar to deliver an attack with a potency of 4,000 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Grants Soul Reaver</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Heavy +75%</para>\n /// <para>Duration: 3s</para>\n /// <para></para>\n /// <para>※Infernal Slice Combo changes to Guillotine upon execution.</para>\r\n /// </summary>\r\n public IBaseAction GrimSwathe_PvP => _GrimSwathe_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LemuresSlice_PvPCreator = new(ActionFactory.Create29548);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29548\"><strong>Lemure's Slice</strong></see> <i>PvP</i> (RPR) [29548] [Ability]\r\n /// <para>Delivers an attack with a potency of 4,000 to all enemies in a cone before you.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 3s</para>\n /// <para>Can only be executed while under the effect of Enshrouded.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction LemuresSlice_PvP => _LemuresSlice_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DeathWarrant_PvPCreator = new(ActionFactory.Create29549);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29549\"><strong>Death Warrant</strong></see> <i>PvP</i> (RPR) [29549] [Ability]\r\n /// <para>Afflicts target with Death Warrant, causing you to compile damage you deal to that target.</para>\n /// <para>When effect duration expires, target takes 50% of compiled damage.</para>\n /// <para>Duration: 7s</para>\n /// <para>Additional Effect: Grants Soulsow</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Action changes to Harvest Moon upon execution.</para>\r\n /// </summary>\r\n public IBaseAction DeathWarrant_PvP => _DeathWarrant_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _HellsIngress_PvPCreator = new(ActionFactory.Create29550);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29550\"><strong>Hell's Ingress</strong></see> <i>PvP</i> (RPR) [29550] [Ability]\r\n /// <para>Quickly dash 15 yalms forward.</para>\n /// <para>Additional Effect: Leaves behind a Hellsgate at point of origin, and grants Threshold to self</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Increases movement speed by 25%</para>\n /// <para>Duration: 5s</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※Action changes to Regress upon execution.</para>\r\n /// </summary>\r\n public IBaseAction HellsIngress_PvP => _HellsIngress_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Regress_PvPCreator = new(ActionFactory.Create29551);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29551\"><strong>Regress</strong></see> <i>PvP</i> (RPR) [29551] [Ability]\r\n /// <para>Move instantly to the Hellsgate left behind by you.</para>\n /// <para>Cannot be executed while bound.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Regress_PvP => _Regress_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvPCreator = new(ActionFactory.Create29552);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29552\"><strong>Arcane Crest</strong></see> <i>PvP</i> (RPR) [29552] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that nullifies damage equivalent to a heal of 12,000 potency.</para>\n /// <para>Duration: 10s</para>\n /// <para>Additional Effect: Increases damage dealt by 10%</para>\n /// <para>Duration: 10s</para>\n /// <para>Grants the Crest of Time Returned to self and nearby party members within a radius of 15 yalms when barrier is completely absorbed.</para>\n /// <para>Crest of Time Returned Effect: Gradually restores HP</para>\n /// <para>Cure Potency: 6,000</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvP => _ArcaneCrest_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _TenebraeLemurum_PvPCreator = new(ActionFactory.Create29553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29553\"><strong>Tenebrae Lemurum</strong></see> <i>PvP</i> (RPR) [29553] [Limit Break]\r\n /// <para>Offers your flesh as a vessel to your avatar, gaining 5 stacks of Enshrouded.</para>\n /// <para>Duration: 20s</para>\n /// <para>Additional Effect: Afflicts nearby enemies with Hysteria</para>\n /// <para>Hysteria Effect: Afflicted enemies are unable to act of their own free will</para>\n /// <para>Duration: 2s</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 75s</para>\n /// <para>Has no effect on players riding machina or non-player combatants.</para>\n /// <para></para>\n /// <para>※Action changes to Communio while under the effect of Enshrouded.</para>\n /// <para>※Grim Swathe changes to Lemure's Slice while under the effect of Enshrouded.</para>\n /// <para>※Infernal Slice Combo changes to Void Reaping while under the effect of Enshrouded.</para>\r\n /// </summary>\r\n public IBaseAction TenebraeLemurum_PvP => _TenebraeLemurum_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvPCreator = new(ActionFactory.Create29554);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29554\"><strong>Communio</strong></see> <i>PvP</i> (RPR) [29554] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 16,000 to target and all enemies nearby it.</para>\n /// <para>Requires at least one stack of Enshrouded.</para>\n /// <para>Consumes all stacks of Enshrouded upon execution.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvP => _Communio_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SoulSlice_PvPCreator = new(ActionFactory.Create29566);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29566\"><strong>Soul Slice</strong></see> <i>PvP</i> (RPR) [29566] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000.</para>\n /// <para>Additional Effect: Grants a stack of Immortal Sacrifice, up to a maximum of 8</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This weaponskill does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction SoulSlice_PvP => _SoulSlice_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvECreator = new(ActionFactory.Create29729);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29729\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29729] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 14,000</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 4,200</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE => _VariantCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaise_PvECreator = new(ActionFactory.Create29731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29731\"><strong>Variant Raise</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [29731] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaise_PvE => _VariantRaise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvE_31786Creator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE_31786 => _Slice_PvE_31786Creator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvE_31787Creator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE_31787 => _WaxingSlice_PvE_31787Creator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvE_31788Creator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE_31788 => _InfernalSlice_PvE_31788Creator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvE_31789Creator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE_31789 => _SpinningScythe_PvE_31789Creator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvE_31790Creator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE_31790 => _NightmareScythe_PvE_31790Creator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvE_31793Creator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE_31793 => _ArcaneCrest_PvE_31793Creator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvE_31794Creator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE_31794 => _Communio_PvE_31794Creator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvE_33013Creator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE_33013 => _Bloodbath_PvE_33013Creator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantCure_PvE_33862Creator = new(ActionFactory.Create33862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33862\"><strong>Variant Cure</strong></see> <i>PvE</i> (GLA MRD PGL LNC ARC ROG THM ACN PLD MNK WAR DRG BRD BLM SMN NIN MCH DRK SAM RDM GNB DNC RPR) [33862] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 16,800</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 5,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Cure potency is doubled when target is under the effect of Rehabilitation</para>\n /// <para>This action is not affected by attributes.</para>\r\n /// </summary>\r\n public IBaseAction VariantCure_PvE_33862 => _VariantCure_PvE_33862Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guillotine_PvPCreator = new(ActionFactory.Create34786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34786\"><strong>Guillotine</strong></see> <i>PvP</i> (RPR) [34786] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 8,000 to all enemies in a cone before you.</para>\n /// <para>Can only be executed while under the effect of Soul Reaver.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction Guillotine_PvP => _Guillotine_PvPCreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _SoulGaugeTraitCreator = new(() => new BaseTrait(379));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50379\"><strong>Soul Gauge</strong></see> (RPR) [379]\r\n /// <para>Allows for Soul Gauge accumulation upon the landing of certain actions, or defeating enemies under the effect of Death's Design.</para>\r\n /// </summary>\r\n public IBaseTrait SoulGaugeTrait => _SoulGaugeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DeathScytheMasteryTraitCreator = new(() => new BaseTrait(380));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50380\"><strong>Death Scythe Mastery</strong></see> (RPR) [380]\r\n /// <para>Increases the potency of Slice to 300, Waxing Slice to 140, Shadow of Death to 300, Harpe to 300, Spinning Scythe to 140, Infernal Slice to 140, Whorl of Death to 100, and Nightmare Scythe to 120.</para>\r\n /// </summary>\r\n public IBaseTrait DeathScytheMasteryTrait => _DeathScytheMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedAvatarTraitCreator = new(() => new BaseTrait(381));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50381\"><strong>Enhanced Avatar</strong></see> (RPR) [381]\r\n /// <para>Grants the effect of Soul Reaver upon successfully landing Blood Stalk or Grim Swathe.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon execution of any weaponskill or magic attack.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedAvatarTrait => _EnhancedAvatarTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _HellsgateTraitCreator = new(() => new BaseTrait(382));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50382\"><strong>Hellsgate</strong></see> (RPR) [382]\r\n /// <para>Upon executing Hell's Ingress or Hell's Egress, leave behind a Hellsgate and grant Threshold to self.</para>\n /// <para>Duration: 10s</para>\n /// <para>Hell's Ingress changes to Regress after executing Hell's Egress, and vice versa.</para>\r\n /// </summary>\r\n public IBaseTrait HellsgateTrait => _HellsgateTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _TemperedSoulTraitCreator = new(() => new BaseTrait(383));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50383\"><strong>Tempered Soul</strong></see> (RPR) [383]\r\n /// <para>Allows the accumulation of charges for consecutive uses of Soul Slice and Soul Scythe.</para>\n /// <para>Maximum Charges: 2</para>\r\n /// </summary>\r\n public IBaseTrait TemperedSoulTrait => _TemperedSoulTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _ShroudGaugeTraitCreator = new(() => new BaseTrait(384));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50384\"><strong>Shroud Gauge</strong></see> (RPR) [384]\r\n /// <para>Allows for Shroud Gauge accumulation upon the landing of Gibbet, Gallows, or Guillotine.</para>\r\n /// </summary>\r\n public IBaseTrait ShroudGaugeTrait => _ShroudGaugeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedArcaneCrestTraitCreator = new(() => new BaseTrait(385));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50385\"><strong>Enhanced Arcane Crest</strong></see> (RPR) [385]\r\n /// <para>Grants Crest of Time Returned to self and nearby party members, gradually restoring HP over time. This effect is only granted when the Crest of Time Borrowed barrier is completely absorbed.</para>\n /// <para>Cure Potency: 50</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedArcaneCrestTrait => _EnhancedArcaneCrestTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedShroudTraitCreator = new(() => new BaseTrait(386));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50386\"><strong>Enhanced Shroud</strong></see> (RPR) [386]\r\n /// <para>Grants Void Shroud upon landing Void Reaping, Cross Reaping, or Grim Reaping.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedShroudTrait => _EnhancedShroudTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedArcaneCircleTraitCreator = new(() => new BaseTrait(387));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50387\"><strong>Enhanced Arcane Circle</strong></see> (RPR) [387]\r\n /// <para>Grants Circle of Sacrifice to you and nearby party members upon executing Arcane Circle.</para>\n /// <para>Duration: 5s</para>\n /// <para>When you or party members under this effect successfully land a weaponskill or cast a spell, you may gain a stack of Immortal Sacrifice, up to a maximum of 8.</para>\n /// <para>Duration: 30s</para>\n /// <para>Also grants Bloodsown Circle to self, allowing you to receive stacks of Immortal Sacrifice from party members under the effect of your Circle of Sacrifice.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedArcaneCircleTrait => _EnhancedArcaneCircleTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _DeathScytheMasteryIiTraitCreator = new(() => new BaseTrait(523));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50523\"><strong>Death Scythe Mastery II</strong></see> (RPR) [523]\r\n /// <para>Increases the potency of Slice to 320, Waxing Slice to 160, and Infernal Slice to 180.</para>\r\n /// </summary>\r\n public IBaseTrait DeathScytheMasteryIiTrait => _DeathScytheMasteryIiTraitCreator.Value;\r\n#endregion\r\n}", + "SageRotation": "using ECommons.DalamudServices;\r\nusing ECommons.ExcelServices;\r\nusing RotationSolver.Basic.Actions;\r\nusing RotationSolver.Basic.Traits;\r\n\r\nnamespace RotationSolver.Basic.Rotations.Basic;\r\n\r\n/// <summary>\r\n/// <see href=\"https://na.finalfantasyxiv.com/jobguide/sage\"><strong>Sage</strong></see>\r\n/// </summary>\r\npublic abstract partial class SageRotation : CustomRotation\r\n{\r\n\r\n public sealed override Job[] Jobs => new[] { Job.SGE };\r\n static SGEGauge JobGauge => Svc.Gauges.Get<SGEGauge>();\r\n\r\n#region Actions\r\n private readonly Lazy<IBaseAction> _KeyItem_PvECreator = new(ActionFactory.Create1);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [1] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE => _KeyItem_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interaction_PvECreator = new(ActionFactory.Create2);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2\"><strong>Interaction</strong></see> <i>PvE</i> (All Classes) [2] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Interaction_PvE => _Interaction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvECreator = new(ActionFactory.Create3);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3\"><strong>Sprint</strong></see> <i>PvE</i> (All Classes) [3] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvE => _Sprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mount_PvECreator = new(ActionFactory.Create4);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4\"><strong>Mount</strong></see> <i>PvE</i> (All Classes) [4] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Mount_PvE => _Mount_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teleport_PvECreator = new(ActionFactory.Create5);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5\"><strong>Teleport</strong></see> <i>PvE</i> (All Classes) [5] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teleport_PvE => _Teleport_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvECreator = new(ActionFactory.Create6);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [6] [System]\r\n /// <para>Instantly return to your current home point.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE => _Return_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Attack_PvECreator = new(ActionFactory.Create7);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7\"><strong>attack</strong></see> <i>PvE</i> (All Classes) [7] [Auto-attack]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Attack_PvE => _Attack_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShieldWall_PvECreator = new(ActionFactory.Create197);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/197\"><strong>Shield Wall</strong></see> <i>PvE</i> (All Classes) [197] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ShieldWall_PvE => _ShieldWall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stronghold_PvECreator = new(ActionFactory.Create198);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/198\"><strong>Stronghold</strong></see> <i>PvE</i> (All Classes) [198] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 40%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Stronghold_PvE => _Stronghold_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LastBastion_PvECreator = new(ActionFactory.Create199);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/199\"><strong>Last Bastion</strong></see> <i>PvE</i> (All Classes) [199] [Limit Break]\r\n /// <para>Reduces damage taken by all party members by 80%.</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction LastBastion_PvE => _LastBastion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Braver_PvECreator = new(ActionFactory.Create200);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/200\"><strong>Braver</strong></see> <i>PvE</i> (All Classes) [200] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 2,400.</para>\r\n /// </summary>\r\n public IBaseAction Braver_PvE => _Braver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bladedance_PvECreator = new(ActionFactory.Create201);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/201\"><strong>Bladedance</strong></see> <i>PvE</i> (All Classes) [201] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 5,250.</para>\r\n /// </summary>\r\n public IBaseAction Bladedance_PvE => _Bladedance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalHeaven_PvECreator = new(ActionFactory.Create202);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/202\"><strong>Final Heaven</strong></see> <i>PvE</i> (All Classes) [202] [Limit Break]\r\n /// <para>Delivers an attack with a potency of 9,000.</para>\r\n /// </summary>\r\n public IBaseAction FinalHeaven_PvE => _FinalHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Skyshard_PvECreator = new(ActionFactory.Create203);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/203\"><strong>Skyshard</strong></see> <i>PvE</i> (All Classes) [203] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,650 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Skyshard_PvE => _Skyshard_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvECreator = new(ActionFactory.Create204);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/204\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [204] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE => _Starstorm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meteor_PvECreator = new(ActionFactory.Create205);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/205\"><strong>Meteor</strong></see> <i>PvE</i> (All Classes) [205] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 6,150 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Meteor_PvE => _Meteor_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingWind_PvECreator = new(ActionFactory.Create206);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/206\"><strong>Healing Wind</strong></see> <i>PvE</i> (All Classes) [206] [Limit Break]\r\n /// <para>Restores 25% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction HealingWind_PvE => _HealingWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BreathOfTheEarth_PvECreator = new(ActionFactory.Create207);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/207\"><strong>Breath of the Earth</strong></see> <i>PvE</i> (All Classes) [207] [Limit Break]\r\n /// <para>Restores 60% of own HP and the HP of all nearby party members.</para>\r\n /// </summary>\r\n public IBaseAction BreathOfTheEarth_PvE => _BreathOfTheEarth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PulseOfLife_PvECreator = new(ActionFactory.Create208);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/208\"><strong>Pulse of Life</strong></see> <i>PvE</i> (All Classes) [208] [Limit Break]\r\n /// <para>Restores 100% of own HP and the HP of all nearby party members, including ones KO'd.</para>\r\n /// </summary>\r\n public IBaseAction PulseOfLife_PvE => _PulseOfLife_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UnpackingMinion_PvECreator = new(ActionFactory.Create850);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/850\"><strong>Unpacking Minion</strong></see> <i>PvE</i> (All Classes) [850] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction UnpackingMinion_PvE => _UnpackingMinion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvECreator = new(ActionFactory.Create1128);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1128\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [1128] [Weaponskill]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE => _MagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvECreator = new(ActionFactory.Create1129);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1129\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [1129] [Weaponskill]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE => _PhotonStream_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvECreator = new(ActionFactory.Create1134);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1134\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1134] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE => _Cannonfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_1437Creator = new(ActionFactory.Create1437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1437\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [1437] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_1437 => _Cannonfire_PvE_1437Creator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvECreator = new(ActionFactory.Create1584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1584\"><strong>Purify</strong></see> <i>PvE</i> (WHM SCH AST SGE) [1584] [Ability]\r\n /// <para>Restores own or target party member's HP while also removing Stun, Sleep, Bind, Heavy, and Silence.</para>\n /// <para>Cure Potency: 2,000</para>\n /// <para>Cure potency is doubled when a status affliction is removed. Can be used regardless of own status affliction.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvE => _Purify_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Decipher_PvECreator = new(ActionFactory.Create1694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1694\"><strong>Decipher</strong></see> <i>PvE</i> (All Classes) [1694] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Decipher_PvE => _Decipher_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dig_PvECreator = new(ActionFactory.Create1695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1695\"><strong>Dig</strong></see> <i>PvE</i> (All Classes) [1695] [System]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Dig_PvE => _Dig_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvECreator = new(ActionFactory.Create1764);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1764\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [1764] [Event]\r\n /// <para>Emits a stream of white-hot flames.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE => _FieryBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigSneeze_PvECreator = new(ActionFactory.Create1765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1765\"><strong>Big Sneeze</strong></see> <i>PvE</i> (All Classes) [1765] [Event]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\r\n /// </summary>\r\n public IBaseAction BigSneeze_PvE => _BigSneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Throw_PvECreator = new(ActionFactory.Create1766);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/1766\"><strong>Throw</strong></see> <i>PvE</i> (All Classes) [1766] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Throw_PvE => _Throw_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MasterRecipeBook_PvECreator = new(ActionFactory.Create2136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2136\"><strong>Master Recipe Book</strong></see> <i>PvE</i> (All Classes) [2136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MasterRecipeBook_PvE => _MasterRecipeBook_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvECreator = new(ActionFactory.Create2237);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2237\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [2237] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE => _IronKiss_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvECreator = new(ActionFactory.Create2238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2238\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [2238] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE => _SpindlyFinger_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FestalCant_PvECreator = new(ActionFactory.Create2360);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2360\"><strong>Festal Cant</strong></see> <i>PvE</i> (All Classes) [2360] [Special]\r\n /// <para>Casts a minor spell upon the designated location.</para>\r\n /// </summary>\r\n public IBaseAction FestalCant_PvE => _FestalCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_2434Creator = new(ActionFactory.Create2434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2434\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [2434] [Mount]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_2434 => _MagitekCannon_PvE_2434Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_2435Creator = new(ActionFactory.Create2435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2435\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [2435] [Mount]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_2435 => _PhotonStream_PvE_2435Creator.Value;\n private readonly Lazy<IBaseAction> _FieryBreath_PvE_2436Creator = new(ActionFactory.Create2436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2436\"><strong>Fiery Breath</strong></see> <i>PvE</i> (All Classes) [2436] [Mount]\r\n /// <para>Emits a stream of white-hot flames.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FieryBreath_PvE_2436 => _FieryBreath_PvE_2436Creator.Value;\n private readonly Lazy<IBaseAction> _Sneeze_PvECreator = new(ActionFactory.Create2437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2437\"><strong>Sneeze</strong></see> <i>PvE</i> (All Classes) [2437] [Mount]\r\n /// <para>Discharges a shower of lukewarm spittle onto an unfortunate target.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Sneeze_PvE => _Sneeze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToadBreath_PvECreator = new(ActionFactory.Create2443);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2443\"><strong>Toad Breath</strong></see> <i>PvE</i> (All Classes) [2443] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ToadBreath_PvE => _ToadBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvECreator = new(ActionFactory.Create2620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2620\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [2620] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE => _Saturate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_2630Creator = new(ActionFactory.Create2630);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2630\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [2630] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_2630 => _Cannonfire_PvE_2630Creator.Value;\n private readonly Lazy<IBaseAction> _ARealmReborn_PvECreator = new(ActionFactory.Create2645);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2645\"><strong>a Realm Reborn</strong></see> <i>PvE</i> (All Classes) [2645] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ARealmReborn_PvE => _ARealmReborn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EternityRing_PvECreator = new(ActionFactory.Create2894);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/2894\"><strong>Eternity Ring</strong></see> <i>PvE</i> (All Classes) [2894] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EternityRing_PvE => _EternityRing_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvECreator = new(ActionFactory.Create3139);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3139\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [3139] [Special]\r\n /// <para>Delivers an impotent attack. In certain cases, may remove the Wet Plate status.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE => _ImpPunch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IronKiss_PvE_3377Creator = new(ActionFactory.Create3377);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3377\"><strong>Iron Kiss</strong></see> <i>PvE</i> (All Classes) [3377] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction IronKiss_PvE_3377 => _IronKiss_PvE_3377Creator.Value;\n private readonly Lazy<IBaseAction> _SpindlyFinger_PvE_3378Creator = new(ActionFactory.Create3378);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3378\"><strong>Spindly Finger</strong></see> <i>PvE</i> (All Classes) [3378] [Artillery]\r\n /// <para>Fires a lightning-aspected projectile at the designated area.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 1s</para>\r\n /// </summary>\r\n public IBaseAction SpindlyFinger_PvE_3378 => _SpindlyFinger_PvE_3378Creator.Value;\n private readonly Lazy<IBaseAction> _PitchBomb_PvECreator = new(ActionFactory.Create3379);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3379\"><strong>Pitch Bomb</strong></see> <i>PvE</i> (All Classes) [3379] [Artillery]\r\n /// <para>Coats the ground with a viscid sap, slowing the movement speed of any who enter.</para>\r\n /// </summary>\r\n public IBaseAction PitchBomb_PvE => _PitchBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Quickchant_PvECreator = new(ActionFactory.Create3504);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3504\"><strong>Quickchant</strong></see> <i>PvE</i> (All Classes) [3504] [Special]\r\n /// <para>Delivers a ranged attack.</para>\r\n /// </summary>\r\n public IBaseAction Quickchant_PvE => _Quickchant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LowVoltage_PvECreator = new(ActionFactory.Create3506);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/3506\"><strong>Low Voltage</strong></see> <i>PvE</i> (All Classes) [3506] [Mount]\r\n /// <para>Emits a bright, harmless charge.</para>\r\n /// </summary>\r\n public IBaseAction LowVoltage_PvE => _LowVoltage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvECreator = new(ActionFactory.Create4062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4062\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4062] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE => _Heavydoom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvECreator = new(ActionFactory.Create4063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4063\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4063] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE => _Cracklyplume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvECreator = new(ActionFactory.Create4064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4064\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4064] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE => _Meltyspume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvECreator = new(ActionFactory.Create4065);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4065\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4065] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE => _Stickyloom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvECreator = new(ActionFactory.Create4066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4066\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4066] [Mount]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE => _Selfdetonate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvECreator = new(ActionFactory.Create4067);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4067\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4067] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE => _Recharge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BigShot_PvECreator = new(ActionFactory.Create4238);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4238\"><strong>Big Shot</strong></see> <i>PvE</i> (All Classes) [4238] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BigShot_PvE => _BigShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Desperado_PvECreator = new(ActionFactory.Create4239);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4239\"><strong>Desperado</strong></see> <i>PvE</i> (All Classes) [4239] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Desperado_PvE => _Desperado_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LandWaker_PvECreator = new(ActionFactory.Create4240);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4240\"><strong>Land Waker</strong></see> <i>PvE</i> (All Classes) [4240] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LandWaker_PvE => _LandWaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DarkForce_PvECreator = new(ActionFactory.Create4241);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4241\"><strong>Dark Force</strong></see> <i>PvE</i> (All Classes) [4241] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DarkForce_PvE => _DarkForce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonsongDive_PvECreator = new(ActionFactory.Create4242);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4242\"><strong>Dragonsong Dive</strong></see> <i>PvE</i> (All Classes) [4242] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonsongDive_PvE => _DragonsongDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Chimatsuri_PvECreator = new(ActionFactory.Create4243);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4243\"><strong>Chimatsuri</strong></see> <i>PvE</i> (All Classes) [4243] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Chimatsuri_PvE => _Chimatsuri_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SagittariusArrow_PvECreator = new(ActionFactory.Create4244);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4244\"><strong>Sagittarius Arrow</strong></see> <i>PvE</i> (All Classes) [4244] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SagittariusArrow_PvE => _SagittariusArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SatelliteBeam_PvECreator = new(ActionFactory.Create4245);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4245\"><strong>Satellite Beam</strong></see> <i>PvE</i> (All Classes) [4245] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SatelliteBeam_PvE => _SatelliteBeam_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Teraflare_PvECreator = new(ActionFactory.Create4246);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4246\"><strong>Teraflare</strong></see> <i>PvE</i> (All Classes) [4246] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Teraflare_PvE => _Teraflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AngelFeathers_PvECreator = new(ActionFactory.Create4247);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4247\"><strong>Angel Feathers</strong></see> <i>PvE</i> (All Classes) [4247] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AngelFeathers_PvE => _AngelFeathers_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AstralStasis_PvECreator = new(ActionFactory.Create4248);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4248\"><strong>Astral Stasis</strong></see> <i>PvE</i> (All Classes) [4248] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction AstralStasis_PvE => _AstralStasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvECreator = new(ActionFactory.Create4583);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4583\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4583] [Event]\r\n /// <para>Commands your griffin to flap its wings.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE => _Buffet_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4584Creator = new(ActionFactory.Create4584);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4584\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4584] [Mount]\r\n /// <para>Commands your griffin to flap its wings.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4584 => _Buffet_PvE_4584Creator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvECreator = new(ActionFactory.Create4585);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4585\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4585] [Event]\r\n /// <para>Commands your marid to stomp the earth.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE => _Trample_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trample_PvE_4586Creator = new(ActionFactory.Create4586);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4586\"><strong>Trample</strong></see> <i>PvE</i> (All Classes) [4586] [Mount]\r\n /// <para>Commands your marid to stomp the earth.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Trample_PvE_4586 => _Trample_PvE_4586Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvECreator = new(ActionFactory.Create4592);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4592\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4592] [Mount]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE => _SilencingCant_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Selfdetonate_PvE_4800Creator = new(ActionFactory.Create4800);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4800\"><strong>Self-detonate</strong></see> <i>PvE</i> (All Classes) [4800] [Mount]\r\n /// <para>Initiate self-detonation.</para>\r\n /// </summary>\r\n public IBaseAction Selfdetonate_PvE_4800 => _Selfdetonate_PvE_4800Creator.Value;\n private readonly Lazy<IBaseAction> _Heavydoom_PvE_4913Creator = new(ActionFactory.Create4913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4913\"><strong>Heavydoom</strong></see> <i>PvE</i> (All Classes) [4913] [Mount]\r\n /// <para>Fires a pressurized round of ammunition. Has no effect against oversized targets.</para>\r\n /// </summary>\r\n public IBaseAction Heavydoom_PvE_4913 => _Heavydoom_PvE_4913Creator.Value;\n private readonly Lazy<IBaseAction> _Cracklyplume_PvE_4914Creator = new(ActionFactory.Create4914);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4914\"><strong>Cracklyplume</strong></see> <i>PvE</i> (All Classes) [4914] [Mount]\r\n /// <para>Fires a hypercharged round of ammunition capable of electrocuting living targets. Has no effect on machina.</para>\r\n /// </summary>\r\n public IBaseAction Cracklyplume_PvE_4914 => _Cracklyplume_PvE_4914Creator.Value;\n private readonly Lazy<IBaseAction> _Meltyspume_PvE_4915Creator = new(ActionFactory.Create4915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4915\"><strong>Meltyspume</strong></see> <i>PvE</i> (All Classes) [4915] [Mount]\r\n /// <para>Fires a round of armor-piercing ammunition.</para>\r\n /// </summary>\r\n public IBaseAction Meltyspume_PvE_4915 => _Meltyspume_PvE_4915Creator.Value;\n private readonly Lazy<IBaseAction> _Stickyloom_PvE_4916Creator = new(ActionFactory.Create4916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4916\"><strong>Stickyloom</strong></see> <i>PvE</i> (All Classes) [4916] [Mount]\r\n /// <para>Activates electromagnets capable of drawing in a target.</para>\r\n /// </summary>\r\n public IBaseAction Stickyloom_PvE_4916 => _Stickyloom_PvE_4916Creator.Value;\n private readonly Lazy<IBaseAction> _Recharge_PvE_4917Creator = new(ActionFactory.Create4917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4917\"><strong>Recharge</strong></see> <i>PvE</i> (All Classes) [4917] [Mount]\r\n /// <para>Saps a target of its electrical charge.</para>\r\n /// </summary>\r\n public IBaseAction Recharge_PvE_4917 => _Recharge_PvE_4917Creator.Value;\n private readonly Lazy<IBaseAction> _SilencingCant_PvE_4930Creator = new(ActionFactory.Create4930);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4930\"><strong>Silencing Cant</strong></see> <i>PvE</i> (All Classes) [4930] [Event]\r\n /// <para>Casts a minor spell to prevent curses of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction SilencingCant_PvE_4930 => _SilencingCant_PvE_4930Creator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_4931Creator = new(ActionFactory.Create4931);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4931\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [4931] [Event]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_4931 => _Buffet_PvE_4931Creator.Value;\n private readonly Lazy<IBaseAction> _AirCombatManeuver_PvECreator = new(ActionFactory.Create4976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/4976\"><strong>Air Combat Maneuver</strong></see> <i>PvE</i> (All Classes) [4976] [Mount]\r\n /// <para>Do a barrel roll!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AirCombatManeuver_PvE => _AirCombatManeuver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeyItem_PvE_5097Creator = new(ActionFactory.Create5097);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5097\"><strong>Key Item</strong></see> <i>PvE</i> (All Classes) [5097] [Event]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeyItem_PvE_5097 => _KeyItem_PvE_5097Creator.Value;\n private readonly Lazy<IBaseAction> _StarryHeavens_PvECreator = new(ActionFactory.Create5136);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5136\"><strong>Starry Heavens</strong></see> <i>PvE</i> (All Classes) [5136] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction StarryHeavens_PvE => _StarryHeavens_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Browbeat_PvECreator = new(ActionFactory.Create5475);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5475\"><strong>Browbeat</strong></see> <i>PvE</i> (All Classes) [5475] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Browbeat_PvE => _Browbeat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Apothecary_PvECreator = new(ActionFactory.Create5476);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5476\"><strong>Apothecary</strong></see> <i>PvE</i> (All Classes) [5476] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Apothecary_PvE => _Apothecary_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WingCutter_PvECreator = new(ActionFactory.Create5477);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5477\"><strong>Wing Cutter</strong></see> <i>PvE</i> (All Classes) [5477] [Special]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WingCutter_PvE => _WingCutter_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvECreator = new(ActionFactory.Create5872);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/5872\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [5872] [Event]\r\n /// <para>Evenly distributes the Vath solution in a fine mist.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE => _Fumigate_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Saturate_PvE_6143Creator = new(ActionFactory.Create6143);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6143\"><strong>Saturate</strong></see> <i>PvE</i> (All Classes) [6143] [Event]\r\n /// <para>Sprays tepid water over target.</para>\r\n /// </summary>\r\n public IBaseAction Saturate_PvE_6143 => _Saturate_PvE_6143Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSafety_PvECreator = new(ActionFactory.Create6259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6259\"><strong>Pomander of Safety</strong></see> <i>PvE</i> (All Classes) [6259] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSafety_PvE => _PomanderOfSafety_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSight_PvECreator = new(ActionFactory.Create6260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6260\"><strong>Pomander of Sight</strong></see> <i>PvE</i> (All Classes) [6260] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSight_PvE => _PomanderOfSight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfStrength_PvECreator = new(ActionFactory.Create6262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6262\"><strong>Pomander of Strength</strong></see> <i>PvE</i> (All Classes) [6262] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfStrength_PvE => _PomanderOfStrength_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSteel_PvECreator = new(ActionFactory.Create6263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6263\"><strong>Pomander of Steel</strong></see> <i>PvE</i> (All Classes) [6263] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSteel_PvE => _PomanderOfSteel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAffluence_PvECreator = new(ActionFactory.Create6264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6264\"><strong>Pomander of Affluence</strong></see> <i>PvE</i> (All Classes) [6264] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAffluence_PvE => _PomanderOfAffluence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFlight_PvECreator = new(ActionFactory.Create6265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6265\"><strong>Pomander of Flight</strong></see> <i>PvE</i> (All Classes) [6265] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFlight_PvE => _PomanderOfFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfAlteration_PvECreator = new(ActionFactory.Create6266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6266\"><strong>Pomander of Alteration</strong></see> <i>PvE</i> (All Classes) [6266] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfAlteration_PvE => _PomanderOfAlteration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFortune_PvECreator = new(ActionFactory.Create6268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6268\"><strong>Pomander of Fortune</strong></see> <i>PvE</i> (All Classes) [6268] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFortune_PvE => _PomanderOfFortune_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfWitching_PvECreator = new(ActionFactory.Create6269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6269\"><strong>Pomander of Witching</strong></see> <i>PvE</i> (All Classes) [6269] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfWitching_PvE => _PomanderOfWitching_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfSerenity_PvECreator = new(ActionFactory.Create6270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6270\"><strong>Pomander of Serenity</strong></see> <i>PvE</i> (All Classes) [6270] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfSerenity_PvE => _PomanderOfSerenity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRage_PvECreator = new(ActionFactory.Create6271);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6271\"><strong>Pomander of Rage</strong></see> <i>PvE</i> (All Classes) [6271] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRage_PvE => _PomanderOfRage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfLust_PvECreator = new(ActionFactory.Create6272);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6272\"><strong>Pomander of Lust</strong></see> <i>PvE</i> (All Classes) [6272] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfLust_PvE => _PomanderOfLust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pummel_PvECreator = new(ActionFactory.Create6273);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6273\"><strong>Pummel</strong></see> <i>PvE</i> (All Classes) [6273] [Special]\r\n /// <para>Deals damage to a target.</para>\r\n /// </summary>\r\n public IBaseAction Pummel_PvE => _Pummel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VoidFireIi_PvECreator = new(ActionFactory.Create6274);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6274\"><strong>Void Fire II</strong></see> <i>PvE</i> (All Classes) [6274] [Spell]\r\n /// <para>Deals damage to nearby enemies while increasing vulnerability.</para>\r\n /// </summary>\r\n public IBaseAction VoidFireIi_PvE => _VoidFireIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Roar_PvECreator = new(ActionFactory.Create6293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6293\"><strong>Roar</strong></see> <i>PvE</i> (All Classes) [6293] [Event]\r\n /// <para>Emits a deafening roar charged with arcane dragon magicks.</para>\r\n /// </summary>\r\n public IBaseAction Roar_PvE => _Roar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvECreator = new(ActionFactory.Create6294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6294\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6294] [Event]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE => _Seed_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Buffet_PvE_6295Creator = new(ActionFactory.Create6295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6295\"><strong>Buffet</strong></see> <i>PvE</i> (All Classes) [6295] [Mount]\r\n /// <para>Fills lungs with air then releases it in a single powerful gust.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Buffet_PvE_6295 => _Buffet_PvE_6295Creator.Value;\n private readonly Lazy<IBaseAction> _Fumigate_PvE_6296Creator = new(ActionFactory.Create6296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6296\"><strong>Fumigate</strong></see> <i>PvE</i> (All Classes) [6296] [Mount]\r\n /// <para>Evenly distributes Vath solution in a fine mist.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Fumigate_PvE_6296 => _Fumigate_PvE_6296Creator.Value;\n private readonly Lazy<IBaseAction> _Seed_PvE_6297Creator = new(ActionFactory.Create6297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6297\"><strong>Seed</strong></see> <i>PvE</i> (All Classes) [6297] [Mount]\r\n /// <para>Disperses countless moogle-soothing cloud mallow seeds into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Seed_PvE_6297 => _Seed_PvE_6297Creator.Value;\n private readonly Lazy<IBaseAction> _MogatoryMogDance_PvECreator = new(ActionFactory.Create6324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6324\"><strong>Mogatory Mog Dance</strong></see> <i>PvE</i> (All Classes) [6324] [Mount]\r\n /// <para>Dance! Dance I say!</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction MogatoryMogDance_PvE => _MogatoryMogDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfRaising_PvECreator = new(ActionFactory.Create6868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6868\"><strong>Pomander of Raising</strong></see> <i>PvE</i> (All Classes) [6868] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfRaising_PvE => _PomanderOfRaising_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfResolution_PvECreator = new(ActionFactory.Create6869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6869\"><strong>Pomander of Resolution</strong></see> <i>PvE</i> (All Classes) [6869] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfResolution_PvE => _PomanderOfResolution_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfIntuition_PvECreator = new(ActionFactory.Create6870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6870\"><strong>Pomander of Intuition</strong></see> <i>PvE</i> (All Classes) [6870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfIntuition_PvE => _PomanderOfIntuition_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyJudge_PvECreator = new(ActionFactory.Create6871);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/6871\"><strong>Heavenly Judge</strong></see> <i>PvE</i> (All Classes) [6871] [Special]\r\n /// <para>Stuns and deals damage to all nearby targets. Damage increased for certain enemies.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyJudge_PvE => _HeavenlyJudge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Surecast_PvECreator = new(ActionFactory.Create7559);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7559\"><strong>Surecast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7559] [Ability]\r\n /// <para>Spells can be cast without interruption.</para>\n /// <para>Additional Effect: Nullifies most knockback and draw-in effects</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction Surecast_PvE => _Surecast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swiftcast_PvECreator = new(ActionFactory.Create7561);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7561\"><strong>Swiftcast</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7561] [Ability]\r\n /// <para>Next spell is cast immediately.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Swiftcast_PvE => _Swiftcast_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LucidDreaming_PvECreator = new(ActionFactory.Create7562);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7562\"><strong>Lucid Dreaming</strong></see> <i>PvE</i> (CNJ THM ACN WHM BLM SMN SCH AST RDM BLU SGE) [7562] [Ability]\r\n /// <para>Gradually restores own MP.</para>\n /// <para>Potency: 55</para>\n /// <para>Duration: 21s</para>\r\n /// </summary>\r\n public IBaseAction LucidDreaming_PvE => _LucidDreaming_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Esuna_PvECreator = new(ActionFactory.Create7568);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7568\"><strong>Esuna</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7568] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction Esuna_PvE => _Esuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rescue_PvECreator = new(ActionFactory.Create7571);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7571\"><strong>Rescue</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [7571] [Ability]\r\n /// <para>Instantly draws target party member to your side. Cannot be used outside of combat or when target is suffering from certain enfeeblements.</para>\r\n /// </summary>\r\n public IBaseAction Rescue_PvE => _Rescue_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvECreator = new(ActionFactory.Create7599);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7599\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7599] [Event]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE => _Shockobo_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Shockobo_PvE_7600Creator = new(ActionFactory.Create7600);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7600\"><strong>Shockobo</strong></see> <i>PvE</i> (All Classes) [7600] [Mount]\r\n /// <para>Releases a shockingly cute chocobo chick.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Shockobo_PvE_7600 => _Shockobo_PvE_7600Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_7619Creator = new(ActionFactory.Create7619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7619\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7619] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_7619 => _MagitekCannon_PvE_7619Creator.Value;\n private readonly Lazy<IBaseAction> _PhotonStream_PvE_7620Creator = new(ActionFactory.Create7620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7620\"><strong>Photon Stream</strong></see> <i>PvE</i> (All Classes) [7620] [Ability]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction PhotonStream_PvE_7620 => _PhotonStream_PvE_7620Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvECreator = new(ActionFactory.Create7621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7621\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7621] [Ability]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE => _DiffractiveMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvECreator = new(ActionFactory.Create7622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7622\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [7622] [Ability]\r\n /// <para>Fires a concentrated burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE => _HighpoweredMagitekCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SmokeScreen_PvECreator = new(ActionFactory.Create7816);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7816\"><strong>Smoke Screen</strong></see> <i>PvE</i> (All Classes) [7816] [Ability]\r\n /// <para>Throw an incendiary device that creates a blanket of smoke temporarily granting you the Stealth status.</para>\r\n /// </summary>\r\n public IBaseAction SmokeScreen_PvE => _SmokeScreen_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoomOfTheLiving_PvECreator = new(ActionFactory.Create7861);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7861\"><strong>Doom of the Living</strong></see> <i>PvE</i> (All Classes) [7861] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomOfTheLiving_PvE => _DoomOfTheLiving_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VermilionScourge_PvECreator = new(ActionFactory.Create7862);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7862\"><strong>Vermilion Scourge</strong></see> <i>PvE</i> (All Classes) [7862] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction VermilionScourge_PvE => _VermilionScourge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvECreator = new(ActionFactory.Create7962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/7962\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [7962] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\n /// <para>Additional Effect: Binds magna roader</para>\n /// <para>Duration: 4s</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE => _MagitekPulse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvECreator = new(ActionFactory.Create8517);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8517\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [8517] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE => _Vril_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DoubleBubble_PvECreator = new(ActionFactory.Create8623);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8623\"><strong>Double Bubble</strong></see> <i>PvE</i> (All Classes) [8623] [Event]\r\n /// <para>Sprays a jet of bubbly water.</para>\r\n /// </summary>\r\n public IBaseAction DoubleBubble_PvE => _DoubleBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekPulse_PvE_8624Creator = new(ActionFactory.Create8624);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8624\"><strong>Magitek Pulse</strong></see> <i>PvE</i> (All Classes) [8624] [Ability]\r\n /// <para>Fires a magitek-powered burst of energy in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction MagitekPulse_PvE_8624 => _MagitekPulse_PvE_8624Creator.Value;\n private readonly Lazy<IBaseAction> _MagitekThunder_PvECreator = new(ActionFactory.Create8625);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/8625\"><strong>Magitek Thunder</strong></see> <i>PvE</i> (All Classes) [8625] [Ability]\r\n /// <para>Fires a bolt of magitek-powered lightning at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekThunder_PvE => _MagitekThunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ImpPunch_PvE_9035Creator = new(ActionFactory.Create9035);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9035\"><strong>Imp Punch</strong></see> <i>PvE</i> (All Classes) [9035] [Special]\r\n /// <para>Delivers an impotent attack.</para>\r\n /// </summary>\r\n public IBaseAction ImpPunch_PvE_9035 => _ImpPunch_PvE_9035Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvECreator = new(ActionFactory.Create9066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9066\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9066] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE => _AntigravityGimbal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AethericSiphon_PvECreator = new(ActionFactory.Create9102);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9102\"><strong>Aetheric Siphon</strong></see> <i>PvE</i> (All Classes) [9102] [Ability]\r\n /// <para>Activates the instrument.</para>\r\n /// </summary>\r\n public IBaseAction AethericSiphon_PvE => _AethericSiphon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vril_PvE_9345Creator = new(ActionFactory.Create9345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9345\"><strong>Vril</strong></see> <i>PvE</i> (All Classes) [9345] [Ability]\r\n /// <para>Use the aetheric residue lingering on your body to temporarily disguise yourself as one of Lakshmi's loyal dreamers.</para>\r\n /// </summary>\r\n public IBaseAction Vril_PvE_9345 => _Vril_PvE_9345Creator.Value;\n private readonly Lazy<IBaseAction> _AntigravityGimbal_PvE_9483Creator = new(ActionFactory.Create9483);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9483\"><strong>Anti-gravity Gimbal</strong></see> <i>PvE</i> (All Classes) [9483] [Ability]\r\n /// <para>Simulates the spell Levitate using Nero tol Scaeva's odd contraption.</para>\r\n /// </summary>\r\n public IBaseAction AntigravityGimbal_PvE_9483 => _AntigravityGimbal_PvE_9483Creator.Value;\n private readonly Lazy<IBaseAction> _Shatterstone_PvECreator = new(ActionFactory.Create9823);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9823\"><strong>Shatterstone</strong></see> <i>PvE</i> (All Classes) [9823] [Weaponskill]\r\n /// <para>Sets an enchanted trap that triggers upon contact.</para>\r\n /// </summary>\r\n public IBaseAction Shatterstone_PvE => _Shatterstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OpticalSight_PvPCreator = new(ActionFactory.Create9971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9971\"><strong>Optical Sight</strong></see> <i>PvP</i> (All Classes) [9971] [Special]\r\n /// <para>Deals damage with a potency of 30,000 to all opposing players and warmachina near point of impact. 3,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction OpticalSight_PvP => _OpticalSight_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SpinCrusher_PvPCreator = new(ActionFactory.Create9973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9973\"><strong>Spin Crusher</strong></see> <i>PvP</i> (All Classes) [9973] [Special]\r\n /// <para>Delivers an attack with a potency of 40,000 to all opposing warmachina in a cone before you. 4,000 when attacking a player, mammet, or object.</para>\r\n /// </summary>\r\n public IBaseAction SpinCrusher_PvP => _SpinCrusher_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _LaserXSword_PvPCreator = new(ActionFactory.Create9974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9974\"><strong>Laser X Sword</strong></see> <i>PvP</i> (All Classes) [9974] [Special]\r\n /// <para>Delivers an attack with a potency of 50,000 to all opposing players and warmachina in a cone before you. 5,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction LaserXSword_PvP => _LaserXSword_PvPCreator.Value;\n private readonly Lazy<IBaseAction> __3000TonzeMissile_PvPCreator = new(ActionFactory.Create9975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9975\"><strong>3000-tonze Missile</strong></see> <i>PvP</i> (All Classes) [9975] [Special]\r\n /// <para>Deals damage with a potency of 1,000,000 to all objects near point of impact. 20,000 to opposing players, warmachina, or mammets.</para>\n /// <para>Potency decreases the greater the target's distance from point of impact, to a maximum of 30 yalms.</para>\r\n /// </summary>\r\n public IBaseAction _3000TonzeMissile_PvP => __3000TonzeMissile_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _SteamRelease_PvPCreator = new(ActionFactory.Create9977);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9977\"><strong>Steam Release</strong></see> <i>PvP</i> (All Classes) [9977] [Special]\r\n /// <para>Deals damage to all opposing players and warmachina nearby with a potency of 10,000. 1,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 15-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction SteamRelease_PvP => _SteamRelease_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Flarethrower_PvPCreator = new(ActionFactory.Create9978);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9978\"><strong>Flarethrower</strong></see> <i>PvP</i> (All Classes) [9978] [Special]\r\n /// <para>Deals damage with a potency of 40,000 to all opposing players and warmachina in a cone before you. 4,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: Inflicts Burns on opposing players and warmachina</para>\n /// <para>Potency: 10,000</para>\n /// <para>Duration: 12s</para>\r\n /// </summary>\r\n public IBaseAction Flarethrower_PvP => _Flarethrower_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _DoubleRocketPunch_PvPCreator = new(ActionFactory.Create9979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9979\"><strong>Double Rocket Punch</strong></see> <i>PvP</i> (All Classes) [9979] [Special]\r\n /// <para>Deals damage with a potency of 600,000 to all objects near point of impact. 30,000 when attacking opposing players, warmachina, or mammets.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 3s</para>\r\n /// </summary>\r\n public IBaseAction DoubleRocketPunch_PvP => _DoubleRocketPunch_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _MegaBeam_PvPCreator = new(ActionFactory.Create9980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9980\"><strong>Mega Beam</strong></see> <i>PvP</i> (All Classes) [9980] [Special]\r\n /// <para>Delivers damage with a potency of 60,000 to all opposing players and warmachina in a straight line before you. 6,000 when attacking a mammet or object.</para>\n /// <para>Additional Effect: 30-yalm knockback</para>\r\n /// </summary>\r\n public IBaseAction MegaBeam_PvP => _MegaBeam_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _CeruleumRefill_PvPCreator = new(ActionFactory.Create9981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9981\"><strong>Ceruleum Refill</strong></see> <i>PvP</i> (All Classes) [9981] [Special]\r\n /// <para>Uses 25 units of ceruleum fuel (CE) to restore 5000 EP to currently mounted warmachina.</para>\r\n /// </summary>\r\n public IBaseAction CeruleumRefill_PvP => _CeruleumRefill_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvPCreator = new(ActionFactory.Create9982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/9982\"><strong>Cannonfire</strong></see> <i>PvP</i> (All Classes) [9982] [Mount]\r\n /// <para>Deals damage with a potency of 20,000 to all opposing players and warmachina near point of impact. 2,000 when attacking a mammet or object.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvP => _Cannonfire_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Ungarmax_PvECreator = new(ActionFactory.Create10001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10001\"><strong>Ungarmax</strong></see> <i>PvE</i> (All Classes) [10001] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Ungarmax_PvE => _Ungarmax_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvECreator = new(ActionFactory.Create10006);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10006\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [10006] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE => _Deflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvECreator = new(ActionFactory.Create10013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10013\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10013] [Event]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE => _Inhale_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Inhale_PvE_10014Creator = new(ActionFactory.Create10014);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10014\"><strong>Inhale</strong></see> <i>PvE</i> (All Classes) [10014] [Mount]\r\n /// <para>Orders the manta to draw water into its gaping maw.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Inhale_PvE_10014 => _Inhale_PvE_10014Creator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvECreator = new(ActionFactory.Create10019);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10019\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10019] [Event]\r\n /// <para>Toss a Starburst into the air.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE => _Starburst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starburst_PvE_10020Creator = new(ActionFactory.Create10020);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10020\"><strong>Starburst</strong></see> <i>PvE</i> (All Classes) [10020] [Mount]\r\n /// <para>Toss a Starburst into the air.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Starburst_PvE_10020 => _Starburst_PvE_10020Creator.Value;\n private readonly Lazy<IBaseAction> _Dismount_PvPCreator = new(ActionFactory.Create10057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10057\"><strong>Dismount</strong></see> <i>PvP</i> (All Classes) [10057] [Special]\r\n /// <para>Exit the warmachina.</para>\r\n /// </summary>\r\n public IBaseAction Dismount_PvP => _Dismount_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Return_PvE_10061Creator = new(ActionFactory.Create10061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10061\"><strong>Return</strong></see> <i>PvE</i> (All Classes) [10061] [System]\r\n /// <para>Returns your team to the starting area. Can be used while engaged in battle.</para>\r\n /// </summary>\r\n public IBaseAction Return_PvE_10061 => _Return_PvE_10061Creator.Value;\n private readonly Lazy<IBaseAction> _MegaPotion_PvECreator = new(ActionFactory.Create10229);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10229\"><strong>Mega Potion</strong></see> <i>PvE</i> (All Classes) [10229] [Ability]\r\n /// <para>Restores a moderate amount of health.</para>\r\n /// </summary>\r\n public IBaseAction MegaPotion_PvE => _MegaPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedPaint_PvECreator = new(ActionFactory.Create10262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10262\"><strong>Red Paint</strong></see> <i>PvE</i> (All Classes) [10262] [Ability]\r\n /// <para>Red paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction RedPaint_PvE => _RedPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowPaint_PvECreator = new(ActionFactory.Create10263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10263\"><strong>Yellow Paint</strong></see> <i>PvE</i> (All Classes) [10263] [Ability]\r\n /// <para>Yellow paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction YellowPaint_PvE => _YellowPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvECreator = new(ActionFactory.Create10264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10264\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [10264] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE => _BlackPaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BluePaint_PvECreator = new(ActionFactory.Create10265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10265\"><strong>Blue Paint</strong></see> <i>PvE</i> (All Classes) [10265] [Ability]\r\n /// <para>Blue paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BluePaint_PvE => _BluePaint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Snort_PvECreator = new(ActionFactory.Create10270);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10270\"><strong>Snort</strong></see> <i>PvE</i> (All Classes) [10270] [Mount]\r\n /// <para>Emit a sinal blast precisely powerful enough to misdirect the wind itself.</para>\r\n /// </summary>\r\n public IBaseAction Snort_PvE => _Snort_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChocoboBrush_PvECreator = new(ActionFactory.Create10401);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10401\"><strong>Chocobo Brush</strong></see> <i>PvE</i> (All Classes) [10401] [Ability]\r\n /// <para>A brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction ChocoboBrush_PvE => _ChocoboBrush_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvECreator = new(ActionFactory.Create10713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10713\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10713] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE => _CheerJump_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvECreator = new(ActionFactory.Create10714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10714\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10714] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE => _CheerWave_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvECreator = new(ActionFactory.Create10715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10715\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10715] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE => _CheerOn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CheerJump_PvE_10716Creator = new(ActionFactory.Create10716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10716\"><strong>Cheer Jump</strong></see> <i>PvE</i> (All Classes) [10716] [Special]\r\n /// <para>Might as well use a red light to cheer on your favorite performer.</para>\r\n /// </summary>\r\n public IBaseAction CheerJump_PvE_10716 => _CheerJump_PvE_10716Creator.Value;\n private readonly Lazy<IBaseAction> _CheerWave_PvE_10717Creator = new(ActionFactory.Create10717);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10717\"><strong>Cheer Wave</strong></see> <i>PvE</i> (All Classes) [10717] [Special]\r\n /// <para>Use a yellow light to cheer on your favorite performer like you just don't care.</para>\r\n /// </summary>\r\n public IBaseAction CheerWave_PvE_10717 => _CheerWave_PvE_10717Creator.Value;\n private readonly Lazy<IBaseAction> _CheerOn_PvE_10718Creator = new(ActionFactory.Create10718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/10718\"><strong>Cheer On</strong></see> <i>PvE</i> (All Classes) [10718] [Special]\r\n /// <para>Use a pair of blue lights to clear your favorite performer for landing.</para>\r\n /// </summary>\r\n public IBaseAction CheerOn_PvE_10718 => _CheerOn_PvE_10718Creator.Value;\n private readonly Lazy<IBaseAction> _CurtainCall_PvECreator = new(ActionFactory.Create11063);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11063\"><strong>Curtain Call</strong></see> <i>PvE</i> (All Classes) [11063] [Special]\r\n /// <para>Removes the “Face in the Crowd” status.</para>\r\n /// </summary>\r\n public IBaseAction CurtainCall_PvE => _CurtainCall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RuinIii_PvECreator = new(ActionFactory.Create11191);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11191\"><strong>Ruin III</strong></see> <i>PvE</i> (All Classes) [11191] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RuinIii_PvE => _RuinIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physick_PvECreator = new(ActionFactory.Create11192);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11192\"><strong>Physick</strong></see> <i>PvE</i> (All Classes) [11192] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Physick_PvE => _Physick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Starstorm_PvE_11193Creator = new(ActionFactory.Create11193);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11193\"><strong>Starstorm</strong></see> <i>PvE</i> (All Classes) [11193] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 3,600 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction Starstorm_PvE_11193 => _Starstorm_PvE_11193Creator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfFrailty_PvECreator = new(ActionFactory.Create11275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11275\"><strong>Pomander of Frailty</strong></see> <i>PvE</i> (All Classes) [11275] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfFrailty_PvE => _PomanderOfFrailty_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfConcealment_PvECreator = new(ActionFactory.Create11276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11276\"><strong>Pomander of Concealment</strong></see> <i>PvE</i> (All Classes) [11276] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfConcealment_PvE => _PomanderOfConcealment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PomanderOfPetrification_PvECreator = new(ActionFactory.Create11277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11277\"><strong>Pomander of Petrification</strong></see> <i>PvE</i> (All Classes) [11277] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction PomanderOfPetrification_PvE => _PomanderOfPetrification_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Magicite_PvECreator = new(ActionFactory.Create11278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11278\"><strong>Magicite</strong></see> <i>PvE</i> (All Classes) [11278] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Magicite_PvE => _Magicite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Trishackle_PvECreator = new(ActionFactory.Create11482);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11482\"><strong>Tri-shackle</strong></see> <i>PvE</i> (All Classes) [11482] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 30 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Bind</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Trishackle_PvE => _Trishackle_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvECreator = new(ActionFactory.Create11499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11499\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11499] [Event]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE => _Wasshoi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wasshoi_PvE_11500Creator = new(ActionFactory.Create11500);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/11500\"><strong>Wasshoi</strong></see> <i>PvE</i> (All Classes) [11500] [Mount]\r\n /// <para>Lead the mikoshi bearers in a rousing display of civilization and enlightenment.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wasshoi_PvE_11500 => _Wasshoi_PvE_11500Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_12257Creator = new(ActionFactory.Create12257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12257\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [12257] [Artillery]\r\n /// <para>Fires an explosive projectile at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_12257 => _Cannonfire_PvE_12257Creator.Value;\n private readonly Lazy<IBaseAction> _MogHeaven_PvECreator = new(ActionFactory.Create12577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12577\"><strong>Mog Heaven</strong></see> <i>PvE</i> (All Classes) [12577] [Special]\r\n /// <para>Fires a short-range burst of energy in a straight line before you.</para>\n /// <para>Additional Effect: Increased damage taken</para>\r\n /// </summary>\r\n public IBaseAction MogHeaven_PvE => _MogHeaven_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BringItPom_PvECreator = new(ActionFactory.Create12578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12578\"><strong>Bring It Pom</strong></see> <i>PvE</i> (All Classes) [12578] [Special]\r\n /// <para>Restores HP and HP of all nearby party members, and grants healing over time as well as increased damage dealt.</para>\r\n /// </summary>\r\n public IBaseAction BringItPom_PvE => _BringItPom_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LogosAction_PvECreator = new(ActionFactory.Create12870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12870\"><strong>Logos Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12870] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LogosAction_PvE => _LogosAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _OmegaJammer_PvECreator = new(ActionFactory.Create12911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12911\"><strong>Omega Jammer</strong></see> <i>PvE</i> (All Classes) [12911] [Ability]\r\n /// <para>Emits a pulse of concentrated electromagnetic energy.</para>\r\n /// </summary>\r\n public IBaseAction OmegaJammer_PvE => _OmegaJammer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheAetherweaver_PvECreator = new(ActionFactory.Create12958);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12958\"><strong>Wisdom of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12958] [Spell]\r\n /// <para>Increases magic damage dealt by 60%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheAetherweaver_PvE => _WisdomOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfThePlatebearer_PvECreator = new(ActionFactory.Create12960);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12960\"><strong>Wisdom of the Platebearer</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12960] [Spell]\r\n /// <para>Reduces damage taken by 80% while increasing maximum HP by 50%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfThePlatebearer_PvE => _WisdomOfThePlatebearer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheOrdained_PvECreator = new(ActionFactory.Create12962);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12962\"><strong>Wisdom of the Ordained</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12962] [Spell]\r\n /// <para>Increases maximum MP by 50% and healing magic potency by 25%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheOrdained_PvE => _WisdomOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheTemplar_PvECreator = new(ActionFactory.Create12965);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12965\"><strong>Wisdom of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [12965] [Spell]\r\n /// <para>Increases healing magic potency by 50% and maximum HP by 30%, while reducing damage dealt by 5%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheTemplar_PvE => _WisdomOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WisdomOfTheBreathtaker_PvECreator = new(ActionFactory.Create12967);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12967\"><strong>Wisdom of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12967] [Spell]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Cannot be used with other Wisdom abilities.</para>\n /// <para>Effect ends upon reuse or upon replacement of duty action.</para>\r\n /// </summary>\r\n public IBaseAction WisdomOfTheBreathtaker_PvE => _WisdomOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpiritOfTheRemembered_PvECreator = new(ActionFactory.Create12968);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12968\"><strong>Spirit of the Remembered</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12968] [Ability]\r\n /// <para>Increases maximum HP by 10% and accuracy by 30%.</para>\n /// <para>Additional Effect: Grants a 70% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction SpiritOfTheRemembered_PvE => _SpiritOfTheRemembered_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ProtectL_PvECreator = new(ActionFactory.Create12969);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12969\"><strong>Protect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12969] [Spell]\r\n /// <para>Reduces physical damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ProtectL_PvE => _ProtectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShellL_PvECreator = new(ActionFactory.Create12970);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12970\"><strong>Shell L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12970] [Spell]\r\n /// <para>Reduces magic damage taken by 22%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction ShellL_PvE => _ShellL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeathL_PvECreator = new(ActionFactory.Create12971);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12971\"><strong>Death L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12971] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\r\n /// </summary>\r\n public IBaseAction DeathL_PvE => _DeathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FocusL_PvECreator = new(ActionFactory.Create12972);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12972\"><strong>Focus L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12972] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 30% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Shares a recast timer with all weaponskills.</para>\r\n /// </summary>\r\n public IBaseAction FocusL_PvE => _FocusL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeL_PvECreator = new(ActionFactory.Create12973);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12973\"><strong>Paralyze L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12973] [Spell]\r\n /// <para>Afflicts target with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeL_PvE => _ParalyzeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ParalyzeLIii_PvECreator = new(ActionFactory.Create12974);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12974\"><strong>Paralyze L III</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12974] [Spell]\r\n /// <para>Afflicts target and all neaby enemies with Paralysis.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction ParalyzeLIii_PvE => _ParalyzeLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SwiftL_PvECreator = new(ActionFactory.Create12975);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12975\"><strong>Swift L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12975] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftL_PvE => _SwiftL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeatherfootL_PvECreator = new(ActionFactory.Create12976);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12976\"><strong>Featherfoot L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12976] [Ability]\r\n /// <para>Increases evasion by 15%.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction FeatherfootL_PvE => _FeatherfootL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DispelL_PvECreator = new(ActionFactory.Create12979);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12979\"><strong>Dispel L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12979] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\r\n /// </summary>\r\n public IBaseAction DispelL_PvE => _DispelL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FeintL_PvECreator = new(ActionFactory.Create12980);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12980\"><strong>Feint L</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [12980] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Reduces target's evasion</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction FeintL_PvE => _FeintL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StealthL_PvECreator = new(ActionFactory.Create12981);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12981\"><strong>Stealth L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [12981] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 50%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction StealthL_PvE => _StealthL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialManipulationL_PvECreator = new(ActionFactory.Create12982);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12982\"><strong>Aetherial Manipulation L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12982] [Ability]\r\n /// <para>Rush to a target's side.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction AetherialManipulationL_PvE => _AetherialManipulationL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BackstepL_PvECreator = new(ActionFactory.Create12983);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12983\"><strong>Backstep L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12983] [Ability]\r\n /// <para>Jump 10 yalms back from current position. Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction BackstepL_PvE => _BackstepL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TranquilizerL_PvECreator = new(ActionFactory.Create12984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12984\"><strong>Tranquilizer L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12984] [Ability]\r\n /// <para>Stuns target.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction TranquilizerL_PvE => _TranquilizerL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BloodbathL_PvECreator = new(ActionFactory.Create12985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12985\"><strong>Bloodbath L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12985] [Ability]\r\n /// <para>Converts a portion of damage dealt into HP.</para>\n /// <para>Duration: 45s</para>\r\n /// </summary>\r\n public IBaseAction BloodbathL_PvE => _BloodbathL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RejuvenateL_PvECreator = new(ActionFactory.Create12986);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12986\"><strong>Rejuvenate L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12986] [Ability]\r\n /// <para>Instantly restores 50% of maximum HP and MP.</para>\r\n /// </summary>\r\n public IBaseAction RejuvenateL_PvE => _RejuvenateL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneskinL_PvECreator = new(ActionFactory.Create12991);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12991\"><strong>Stoneskin L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [12991] [Spell]\r\n /// <para>Creates a barrier around target that absorbs damage totaling 10% of target's maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction StoneskinL_PvE => _StoneskinL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IncenseL_PvECreator = new(ActionFactory.Create12995);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12995\"><strong>Incense L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12995] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list and increasing enmity generation.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction IncenseL_PvE => _IncenseL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BraveryL_PvECreator = new(ActionFactory.Create12997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12997\"><strong>Bravery L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [12997] [Spell]\r\n /// <para>Increases target's damage dealt by 10%.</para>\n /// <para>Duration: 300s</para>\r\n /// </summary>\r\n public IBaseAction BraveryL_PvE => _BraveryL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidShieldL_PvECreator = new(ActionFactory.Create12998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12998\"><strong>Solid Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12998] [Ability]\r\n /// <para>Reduces physical damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SolidShieldL_PvE => _SolidShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpellShieldL_PvECreator = new(ActionFactory.Create12999);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/12999\"><strong>Spell Shield L</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [12999] [Ability]\r\n /// <para>Reduces magic damage taken by 99%.</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction SpellShieldL_PvE => _SpellShieldL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ReflectL_PvECreator = new(ActionFactory.Create13000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13000\"><strong>Reflect L</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [13000] [Spell]\r\n /// <para>Creates a magic-reflecting barrier around self or party member.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction ReflectL_PvE => _ReflectL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RefreshL_PvECreator = new(ActionFactory.Create13002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13002\"><strong>Refresh L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13002] [Spell]\r\n /// <para>Increases the amount of magia aether regenerated over time by self and nearby party members.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction RefreshL_PvE => _RefreshL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishL_PvECreator = new(ActionFactory.Create13003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13003\"><strong>Banish L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13003] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishL_PvE => _BanishL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BanishLIii_PvECreator = new(ActionFactory.Create13004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13004\"><strong>Banish L III</strong></see> <i>PvE</i> (WHM SCH AST SGE) [13004] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 150 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Afflicts undead targets with Banish L, increasing damage taken by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction BanishLIii_PvE => _BanishLIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagicBurstL_PvECreator = new(ActionFactory.Create13005);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13005\"><strong>Magic Burst L</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [13005] [Ability]\r\n /// <para>Increases spell damage by 100% while increasing MP cost.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction MagicBurstL_PvE => _MagicBurstL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TricksomeTreat_PvECreator = new(ActionFactory.Create13265);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13265\"><strong>Tricksome Treat</strong></see> <i>PvE</i> (All Classes) [13265] [Special]\r\n /// <para>Casts a spell that alarms targets within the designated area.</para>\r\n /// </summary>\r\n public IBaseAction TricksomeTreat_PvE => _TricksomeTreat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Unveil_PvECreator = new(ActionFactory.Create13266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13266\"><strong>Unveil</strong></see> <i>PvE</i> (All Classes) [13266] [Special]\r\n /// <para>Removes the effects of transfiguration.</para>\r\n /// </summary>\r\n public IBaseAction Unveil_PvE => _Unveil_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StoneIvOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13423);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13423\"><strong>Stone IV of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13423] [Spell]\r\n /// <para>Deals earth damage with a potency of 140.</para>\r\n /// </summary>\r\n public IBaseAction StoneIvOfTheSeventhDawn_PvE => _StoneIvOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AeroIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13424);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13424\"><strong>Aero II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13424] [Spell]\r\n /// <para>Deals wind damage with a potency of 50.</para>\n /// <para>Additional Effect: Wind damage over time</para>\n /// <para>Potency: 50</para>\n /// <para>Duration: 18s</para>\r\n /// </summary>\r\n public IBaseAction AeroIiOfTheSeventhDawn_PvE => _AeroIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIiOfTheSeventhDawn_PvECreator = new(ActionFactory.Create13425);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13425\"><strong>Cure II of the Seventh Dawn</strong></see> <i>PvE</i> (All Classes) [13425] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIiOfTheSeventhDawn_PvE => _CureIiOfTheSeventhDawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aetherwell_PvECreator = new(ActionFactory.Create13426);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/13426\"><strong>Aetherwell</strong></see> <i>PvE</i> (All Classes) [13426] [Ability]\r\n /// <para>Restores MP.</para>\r\n /// </summary>\r\n public IBaseAction Aetherwell_PvE => _Aetherwell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlySword_PvECreator = new(ActionFactory.Create14414);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14414\"><strong>Heavenly Sword</strong></see> <i>PvE</i> (All Classes) [14414] [Ability]\r\n /// <para>Wield the ethereal sword to strike forward. </para>\r\n /// </summary>\r\n public IBaseAction HeavenlySword_PvE => _HeavenlySword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavenlyShield_PvECreator = new(ActionFactory.Create14415);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14415\"><strong>Heavenly Shield</strong></see> <i>PvE</i> (All Classes) [14415] [Ability]\r\n /// <para>Wield the ethereal shield to defend against frontal attacks.</para>\r\n /// </summary>\r\n public IBaseAction HeavenlyShield_PvE => _HeavenlyShield_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SacrificeL_PvECreator = new(ActionFactory.Create14481);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14481\"><strong>Sacrifice L</strong></see> <i>PvE</i> (WHM SCH AST SGE) [14481] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SacrificeL_PvE => _SacrificeL_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Warpstrike_PvECreator = new(ActionFactory.Create14597);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14597\"><strong>Warp-strike</strong></see> <i>PvE</i> (All Classes) [14597] [Ability]\r\n /// <para>Move instantly to the target while delivering a physical attack. Potency increases with initial distance from target.</para>\r\n /// </summary>\r\n public IBaseAction Warpstrike_PvE => _Warpstrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kyokufu_PvECreator = new(ActionFactory.Create14840);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14840\"><strong>Kyokufu</strong></see> <i>PvE</i> (All Classes) [14840] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 180.</para>\r\n /// </summary>\r\n public IBaseAction Kyokufu_PvE => _Kyokufu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ajisai_PvECreator = new(ActionFactory.Create14841);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14841\"><strong>Ajisai</strong></see> <i>PvE</i> (All Classes) [14841] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Ajisai_PvE => _Ajisai_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HissatsuGyoten_PvECreator = new(ActionFactory.Create14842);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/14842\"><strong>Hissatsu: Gyoten</strong></see> <i>PvE</i> (All Classes) [14842] [Ability]\r\n /// <para>Rushes target and delivers an attack with a potency of 100.</para>\r\n /// </summary>\r\n public IBaseAction HissatsuGyoten_PvE => _HissatsuGyoten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SecondWind_PvECreator = new(ActionFactory.Create15375);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15375\"><strong>Second Wind</strong></see> <i>PvE</i> (All Classes) [15375] [Ability]\r\n /// <para>Instantly restores own HP.</para>\n /// <para>Cure Potency: 500</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction SecondWind_PvE => _SecondWind_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Interject_PvECreator = new(ActionFactory.Create15537);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15537\"><strong>Interject</strong></see> <i>PvE</i> (All Classes) [15537] [Ability]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction Interject_PvE => _Interject_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Present_PvECreator = new(ActionFactory.Create15553);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15553\"><strong>Present</strong></see> <i>PvE</i> (All Classes) [15553] [Special]\r\n /// <para>Present an eggsquisite gift.</para>\r\n /// </summary>\r\n public IBaseAction Present_PvE => _Present_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvECreator = new(ActionFactory.Create15870);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/15870\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [15870] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE => _FightOrFlight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RightfulSword_PvECreator = new(ActionFactory.Create16269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16269\"><strong>Rightful Sword</strong></see> <i>PvE</i> (All Classes) [16269] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RightfulSword_PvE => _RightfulSword_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvECreator = new(ActionFactory.Create16418);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16418\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [16418] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE => _BrutalShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvECreator = new(ActionFactory.Create16434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16434\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [16434] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE => _KeenEdge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvECreator = new(ActionFactory.Create16435);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16435\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [16435] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE => _SolidBarrel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SoothingPotion_PvECreator = new(ActionFactory.Create16436);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16436\"><strong>Soothing Potion</strong></see> <i>PvE</i> (All Classes) [16436] [Ability]\r\n /// <para>Instantly restores own HP via the consumption of a curious Crystarium concoction.</para>\r\n /// </summary>\r\n public IBaseAction SoothingPotion_PvE => _SoothingPotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ShiningBlade_PvECreator = new(ActionFactory.Create16437);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16437\"><strong>Shining Blade</strong></see> <i>PvE</i> (All Classes) [16437] [Weaponskill]\r\n /// <para>Harnesses the power of one of Minfilia's cartridges to lacerate the target with pure light.</para>\r\n /// </summary>\r\n public IBaseAction ShiningBlade_PvE => _ShiningBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerfectDeception_PvECreator = new(ActionFactory.Create16438);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16438\"><strong>Perfect Deception</strong></see> <i>PvE</i> (All Classes) [16438] [Ability]\r\n /// <para>Completely conceals own presence by severely restricting the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast</para>\r\n /// </summary>\r\n public IBaseAction PerfectDeception_PvE => _PerfectDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeapOfFaith_PvECreator = new(ActionFactory.Create16439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16439\"><strong>Leap of Faith</strong></see> <i>PvE</i> (All Classes) [16439] [Weaponskill]\r\n /// <para>Harnesses the mysterious power of Minfilia's experimental cartridge to deliver a powerful onslaught.</para>\r\n /// </summary>\r\n public IBaseAction LeapOfFaith_PvE => _LeapOfFaith_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Repose_PvECreator = new(ActionFactory.Create16560);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16560\"><strong>Repose</strong></see> <i>PvE</i> (CNJ WHM SCH AST SGE) [16560] [Spell]\r\n /// <para>Afflicts target with Sleep.</para>\n /// <para>Duration: 30s</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction Repose_PvE => _Repose_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFireIii_PvECreator = new(ActionFactory.Create16574);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16574\"><strong>Ronkan Fire III</strong></see> <i>PvE</i> (All Classes) [16574] [Spell]\r\n /// <para>Deals fire damage with a potency of 430.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFireIii_PvE => _RonkanFireIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanBlizzardIii_PvECreator = new(ActionFactory.Create16575);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16575\"><strong>Ronkan Blizzard III</strong></see> <i>PvE</i> (All Classes) [16575] [Spell]\r\n /// <para>Deals ice damage with a potency of 240.</para>\n /// <para>Additional Effect: Restores MP</para>\r\n /// </summary>\r\n public IBaseAction RonkanBlizzardIii_PvE => _RonkanBlizzardIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanThunderIii_PvECreator = new(ActionFactory.Create16576);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16576\"><strong>Ronkan Thunder III</strong></see> <i>PvE</i> (All Classes) [16576] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 40</para>\n /// <para>Duration: 24s</para>\r\n /// </summary>\r\n public IBaseAction RonkanThunderIii_PvE => _RonkanThunderIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanFlare_PvECreator = new(ActionFactory.Create16577);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16577\"><strong>Ronkan Flare</strong></see> <i>PvE</i> (All Classes) [16577] [Spell]\r\n /// <para>Deals fire damage with a potency of 460 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction RonkanFlare_PvE => _RonkanFlare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FallingStar_PvECreator = new(ActionFactory.Create16578);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16578\"><strong>Falling Star</strong></see> <i>PvE</i> (All Classes) [16578] [Limit Break]\r\n /// <para>Deals unaspected damage with a potency of 1,500 to all enemies near point of impact.</para>\r\n /// </summary>\r\n public IBaseAction FallingStar_PvE => _FallingStar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvECreator = new(ActionFactory.Create16788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16788\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [16788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE => _FastBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Sunshadow_PvECreator = new(ActionFactory.Create16789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16789\"><strong>Sunshadow</strong></see> <i>PvE</i> (All Classes) [16789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Sunshadow_PvE => _Sunshadow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RoughDivide_PvECreator = new(ActionFactory.Create16804);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16804\"><strong>Rough Divide</strong></see> <i>PvE</i> (All Classes) [16804] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 200.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction RoughDivide_PvE => _RoughDivide_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Swashbuckler_PvECreator = new(ActionFactory.Create16984);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16984\"><strong>Swashbuckler</strong></see> <i>PvE</i> (All Classes) [16984] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Swashbuckler_PvE => _Swashbuckler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GreatestEclipse_PvECreator = new(ActionFactory.Create16985);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/16985\"><strong>Greatest Eclipse</strong></see> <i>PvE</i> (All Classes) [16985] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GreatestEclipse_PvE => _GreatestEclipse_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanCureIi_PvECreator = new(ActionFactory.Create17000);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17000\"><strong>Ronkan Cure II</strong></see> <i>PvE</i> (All Classes) [17000] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1300</para>\r\n /// </summary>\r\n public IBaseAction RonkanCureIi_PvE => _RonkanCureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanMedica_PvECreator = new(ActionFactory.Create17001);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17001\"><strong>Ronkan Medica</strong></see> <i>PvE</i> (All Classes) [17001] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 500</para>\r\n /// </summary>\r\n public IBaseAction RonkanMedica_PvE => _RonkanMedica_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanEsuna_PvECreator = new(ActionFactory.Create17002);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17002\"><strong>Ronkan Esuna</strong></see> <i>PvE</i> (All Classes) [17002] [Spell]\r\n /// <para>Removes a single detrimental effect from target.</para>\r\n /// </summary>\r\n public IBaseAction RonkanEsuna_PvE => _RonkanEsuna_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanStoneIi_PvECreator = new(ActionFactory.Create17003);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17003\"><strong>Ronkan Stone II</strong></see> <i>PvE</i> (All Classes) [17003] [Spell]\r\n /// <para>Deals earth damage with a potency of 200.</para>\r\n /// </summary>\r\n public IBaseAction RonkanStoneIi_PvE => _RonkanStoneIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RonkanRenew_PvECreator = new(ActionFactory.Create17004);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17004\"><strong>Ronkan Renew</strong></see> <i>PvE</i> (All Classes) [17004] [Ability]\r\n /// <para>Restores all of a target's HP.</para>\r\n /// </summary>\r\n public IBaseAction RonkanRenew_PvE => _RonkanRenew_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GunmetalSoul_PvECreator = new(ActionFactory.Create17105);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17105\"><strong>Gunmetal Soul</strong></see> <i>PvE</i> (All Classes) [17105] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GunmetalSoul_PvE => _GunmetalSoul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonLotus_PvECreator = new(ActionFactory.Create17106);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17106\"><strong>Crimson Lotus</strong></see> <i>PvE</i> (All Classes) [17106] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CrimsonLotus_PvE => _CrimsonLotus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AcidicBite_PvECreator = new(ActionFactory.Create17122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17122\"><strong>Acidic Bite</strong></see> <i>PvE</i> (All Classes) [17122] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 300.</para>\n /// <para>Additional Effect: Acidic Bite</para>\n /// <para>Potency: 120</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction AcidicBite_PvE => _AcidicBite_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HeavyShot_PvECreator = new(ActionFactory.Create17123);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17123\"><strong>Heavy Shot</strong></see> <i>PvE</i> (All Classes) [17123] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 550.</para>\r\n /// </summary>\r\n public IBaseAction HeavyShot_PvE => _HeavyShot_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RadiantArrow_PvECreator = new(ActionFactory.Create17124);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17124\"><strong>Radiant Arrow</strong></see> <i>PvE</i> (All Classes) [17124] [Ability]\r\n /// <para>Delivers an attack with a potency of 1,100.</para>\r\n /// </summary>\r\n public IBaseAction RadiantArrow_PvE => _RadiantArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DullingArrow_PvECreator = new(ActionFactory.Create17125);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17125\"><strong>Dulling Arrow</strong></see> <i>PvE</i> (All Classes) [17125] [Weaponskill]\r\n /// <para>Interrupts the use of a target's action.</para>\r\n /// </summary>\r\n public IBaseAction DullingArrow_PvE => _DullingArrow_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChivalrousSpirit_PvECreator = new(ActionFactory.Create17236);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17236\"><strong>Chivalrous Spirit</strong></see> <i>PvE</i> (All Classes) [17236] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 1200</para>\n /// <para>Additional Effect: Restores to self 50% of HP restored to target if target is a party member</para>\r\n /// </summary>\r\n public IBaseAction ChivalrousSpirit_PvE => _ChivalrousSpirit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SouldeepInvisibility_PvECreator = new(ActionFactory.Create17291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17291\"><strong>Souldeep Invisibility</strong></see> <i>PvE</i> (All Classes) [17291] [Ability]\r\n /// <para>Completely conceals own presence by temporarily severing the flow of life-sustaining aether.</para>\n /// <para>Additional Effect: Fading Fast and Vital Sign</para>\r\n /// </summary>\r\n public IBaseAction SouldeepInvisibility_PvE => _SouldeepInvisibility_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvECreator = new(ActionFactory.Create17390);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17390\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17390] [Event]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE => _SortofDreadGaze_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SortofDreadGaze_PvE_17391Creator = new(ActionFactory.Create17391);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17391\"><strong>Sort-of Dread Gaze</strong></see> <i>PvE</i> (All Classes) [17391] [Mount]\r\n /// <para>Fix your enemies with a gaze that won't quite strike fear into their hearts, but will certainly make them feel uncomfortable.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SortofDreadGaze_PvE_17391 => _SortofDreadGaze_PvE_17391Creator.Value;\n private readonly Lazy<IBaseAction> _HuntersPrudence_PvECreator = new(ActionFactory.Create17596);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17596\"><strong>Hunter's Prudence</strong></see> <i>PvE</i> (All Classes) [17596] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 1,000</para>\n /// <para>Cure potency varies with current attack power.</para>\r\n /// </summary>\r\n public IBaseAction HuntersPrudence_PvE => _HuntersPrudence_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvECreator = new(ActionFactory.Create17839);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17839\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [17839] [Ability]\r\n /// <para>Reduces damage taken by 25%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE => _Nebula_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Smackdown_PvECreator = new(ActionFactory.Create17901);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/17901\"><strong>Smackdown</strong></see> <i>PvE</i> (All Classes) [17901] [Ability]\r\n /// <para>Increases damage dealt by 10% and accuracy by 100%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Smackdown_PvE => _Smackdown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvECreator = new(ActionFactory.Create18187);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18187\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18187] [Event]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE => _SiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SiphonSnout_PvE_18188Creator = new(ActionFactory.Create18188);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18188\"><strong>Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18188] [Mount]\r\n /// <para>Sucks up any substance with a great huffing snort.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SiphonSnout_PvE_18188 => _SiphonSnout_PvE_18188Creator.Value;\n private readonly Lazy<IBaseAction> _DoomSpike_PvECreator = new(ActionFactory.Create18772);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18772\"><strong>Doom Spike</strong></see> <i>PvE</i> (All Classes) [18772] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DoomSpike_PvE => _DoomSpike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SonicThrust_PvECreator = new(ActionFactory.Create18773);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18773\"><strong>Sonic Thrust</strong></see> <i>PvE</i> (All Classes) [18773] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SonicThrust_PvE => _SonicThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CoerthanTorment_PvECreator = new(ActionFactory.Create18774);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18774\"><strong>Coerthan Torment</strong></see> <i>PvE</i> (All Classes) [18774] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction CoerthanTorment_PvE => _CoerthanTorment_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SkydragonDive_PvECreator = new(ActionFactory.Create18775);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18775\"><strong>Skydragon Dive</strong></see> <i>PvE</i> (All Classes) [18775] [Ability]\r\n /// <para>Delivers a jumping fire-based attack with a potency of 800 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction SkydragonDive_PvE => _SkydragonDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AlaMorn_PvECreator = new(ActionFactory.Create18776);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18776\"><strong>Ala Morn</strong></see> <i>PvE</i> (All Classes) [18776] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 3,000.</para>\n /// <para>Additional Effect: Absorbs a portion of damage dealt as HP</para>\r\n /// </summary>\r\n public IBaseAction AlaMorn_PvE => _AlaMorn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Drachenlance_PvECreator = new(ActionFactory.Create18777);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18777\"><strong>Drachenlance</strong></see> <i>PvE</i> (All Classes) [18777] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 500.</para>\n /// <para>Additional Effect: Damage over time</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Drachenlance_PvE => _Drachenlance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HorridRoar_PvECreator = new(ActionFactory.Create18778);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18778\"><strong>Horrid Roar</strong></see> <i>PvE</i> (All Classes) [18778] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 600 to all nearby enemies, as well as enemies in proximity to those initially affected.</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction HorridRoar_PvE => _HorridRoar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Stardiver_PvECreator = new(ActionFactory.Create18780);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18780\"><strong>Stardiver</strong></see> <i>PvE</i> (All Classes) [18780] [Ability]\r\n /// <para>Delivers a jumping fire-based attack to target and all enemies nearby it with a potency of 1,500 for the first enemy, and 30% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Stardiver_PvE => _Stardiver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvECreator = new(ActionFactory.Create18781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18781\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18781] [Limit Break]\r\n /// <para>Delivers an attack to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE => _DragonshadowDive_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DragonshadowDive_PvE_18782Creator = new(ActionFactory.Create18782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18782\"><strong>Dragonshadow Dive</strong></see> <i>PvE</i> (All Classes) [18782] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DragonshadowDive_PvE_18782 => _DragonshadowDive_PvE_18782Creator.Value;\n private readonly Lazy<IBaseAction> _SolicitSiphonSnout_PvECreator = new(ActionFactory.Create18813);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18813\"><strong>Solicit Siphon Snout</strong></see> <i>PvE</i> (All Classes) [18813] [Ability]\r\n /// <para>Direct Ezel II to devour a dream.</para>\r\n /// </summary>\r\n public IBaseAction SolicitSiphonSnout_PvE => _SolicitSiphonSnout_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Deflect_PvE_18863Creator = new(ActionFactory.Create18863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/18863\"><strong>Deflect</strong></see> <i>PvE</i> (All Classes) [18863] [Ability]\r\n /// <para>Scatters potentially harmful aether.</para>\r\n /// </summary>\r\n public IBaseAction Deflect_PvE_18863 => _Deflect_PvE_18863Creator.Value;\n private readonly Lazy<IBaseAction> _Gofu_PvECreator = new(ActionFactory.Create19046);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19046\"><strong>Gofu</strong></see> <i>PvE</i> (All Classes) [19046] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Gofu_PvE => _Gofu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Yagetsu_PvECreator = new(ActionFactory.Create19047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19047\"><strong>Yagetsu</strong></see> <i>PvE</i> (All Classes) [19047] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Yagetsu_PvE => _Yagetsu_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AquaVitae_PvECreator = new(ActionFactory.Create19218);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19218\"><strong>Aqua Vitae</strong></see> <i>PvE</i> (All Classes) [19218] [Ability]\r\n /// <para>Restores own HP.</para>\r\n /// </summary>\r\n public IBaseAction AquaVitae_PvE => _AquaVitae_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CouldbeworseBreath_PvECreator = new(ActionFactory.Create19275);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19275\"><strong>Could-be-worse Breath</strong></see> <i>PvE</i> (All Classes) [19275] [Mount]\r\n /// <para>Blows breath that is not so horrid as to stop one in their tracks, yet still unmistakably offensive, in a cone before you.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CouldbeworseBreath_PvE => _CouldbeworseBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RemoveCostume_PvECreator = new(ActionFactory.Create19731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19731\"><strong>Remove Costume</strong></see> <i>PvE</i> (All Classes) [19731] [Special]\r\n /// <para>Cease to wear this peculiar garb and return to wearing your usual peculiar garb.</para>\r\n /// </summary>\r\n public IBaseAction RemoveCostume_PvE => _RemoveCostume_PvECreator.Value;\n private readonly Lazy<IBaseAction> _StandFirm_PvECreator = new(ActionFactory.Create19994);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19994\"><strong>Stand Firm</strong></see> <i>PvE</i> (All Classes) [19994] [Ability]\r\n /// <para>Brace yourself to stand against even the most relentless onslaught.</para>\r\n /// </summary>\r\n public IBaseAction StandFirm_PvE => _StandFirm_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvECreator = new(ActionFactory.Create19997);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19997\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [19997] [Special]\r\n /// <para>Snare a chicken in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE => _Seize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Birdlime_PvECreator = new(ActionFactory.Create19998);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/19998\"><strong>Birdlime</strong></see> <i>PvE</i> (All Classes) [19998] [Special]\r\n /// <para>Toss a glob of paste to stick overexcited chickens to the ground.</para>\r\n /// </summary>\r\n public IBaseAction Birdlime_PvE => _Birdlime_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvECreator = new(ActionFactory.Create20030);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20030\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20030] [Event]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE => _PeculiarLight_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PeculiarLight_PvE_20031Creator = new(ActionFactory.Create20031);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20031\"><strong>Peculiar Light</strong></see> <i>PvE</i> (All Classes) [20031] [Mount]\r\n /// <para>Plumb the depths of the great serpent's power for no particular reason, unleashing an awe-inspiring ray of light. May or may not obliterate nonbelievers.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PeculiarLight_PvE_20031 => _PeculiarLight_PvE_20031Creator.Value;\n private readonly Lazy<IBaseAction> _Accessorize_PvECreator = new(ActionFactory.Create20061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20061\"><strong>Accessorize</strong></see> <i>PvE</i> (All Classes) [20061] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Accessorize_PvE => _Accessorize_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DazzlingDisplay_PvECreator = new(ActionFactory.Create20064);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20064\"><strong>Dazzling Display</strong></see> <i>PvE</i> (All Classes) [20064] [Mount]\r\n /// <para>Commands your peacock to proudly display its plumage.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction DazzlingDisplay_PvE => _DazzlingDisplay_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20121Creator = new(ActionFactory.Create20121);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20121\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20121] [Event]\r\n /// <para>Solves your problems with excessive explosive force.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20121 => _Cannonfire_PvE_20121Creator.Value;\n private readonly Lazy<IBaseAction> _Cannonfire_PvE_20122Creator = new(ActionFactory.Create20122);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20122\"><strong>Cannonfire</strong></see> <i>PvE</i> (All Classes) [20122] [Mount]\r\n /// <para>Solves your problems with excessive explosive force.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Cannonfire_PvE_20122 => _Cannonfire_PvE_20122Creator.Value;\n private readonly Lazy<IBaseAction> _BlackPaint_PvE_20304Creator = new(ActionFactory.Create20304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20304\"><strong>Black Paint</strong></see> <i>PvE</i> (All Classes) [20304] [Ability]\r\n /// <para>Black paint drips from the tip of this massive brush made from Alpha's feathers.</para>\r\n /// </summary>\r\n public IBaseAction BlackPaint_PvE_20304 => _BlackPaint_PvE_20304Creator.Value;\n private readonly Lazy<IBaseAction> _AetherCannon_PvECreator = new(ActionFactory.Create20489);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20489\"><strong>Aether Cannon</strong></see> <i>PvE</i> (All Classes) [20489] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 600.</para>\r\n /// </summary>\r\n public IBaseAction AetherCannon_PvE => _AetherCannon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethersaber_PvECreator = new(ActionFactory.Create20490);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20490\"><strong>Aethersaber</strong></see> <i>PvE</i> (All Classes) [20490] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethersaber_PvE => _Aethersaber_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Aethercut_PvECreator = new(ActionFactory.Create20491);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20491\"><strong>Aethercut</strong></see> <i>PvE</i> (All Classes) [20491] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Aethercut_PvE => _Aethercut_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FinalFlourish_PvECreator = new(ActionFactory.Create20492);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20492\"><strong>Final Flourish</strong></see> <i>PvE</i> (All Classes) [20492] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FinalFlourish_PvE => _FinalFlourish_PvECreator.Value;\n private readonly Lazy<IBaseAction> _UltimaBuster_PvECreator = new(ActionFactory.Create20493);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20493\"><strong>Ultima Buster</strong></see> <i>PvE</i> (All Classes) [20493] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 1,200 to all enemies in a straight line before you.</para>\n /// <para>Triggers the cooldown of weaponskills and spells upon execution. </para>\r\n /// </summary>\r\n public IBaseAction UltimaBuster_PvE => _UltimaBuster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PyreticBooster_PvECreator = new(ActionFactory.Create20494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20494\"><strong>Pyretic Booster</strong></see> <i>PvE</i> (All Classes) [20494] [Ability]\r\n /// <para>Reduces cast time and recast time of weaponskills by 25% and increases movement speed by 25%. HP is drained while in use.</para>\n /// <para>Effect ends upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction PyreticBooster_PvE => _PyreticBooster_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherialAegis_PvECreator = new(ActionFactory.Create20495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20495\"><strong>Aetherial Aegis</strong></see> <i>PvE</i> (All Classes) [20495] [Ability]\r\n /// <para>Reduces damage taken by 50%. EP is drained while in use.</para>\n /// <para>Effect ends upon reuse or when EP is depleted.</para>\r\n /// </summary>\r\n public IBaseAction AetherialAegis_PvE => _AetherialAegis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AetherMine_PvECreator = new(ActionFactory.Create20496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20496\"><strong>Aether Mine</strong></see> <i>PvE</i> (All Classes) [20496] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 300 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 20%</para>\n /// <para>Duration: 60s</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction AetherMine_PvE => _AetherMine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvECreator = new(ActionFactory.Create20529);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20529\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [20529] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE => _Verfire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvECreator = new(ActionFactory.Create20530);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20530\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [20530] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE => _Veraero_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvECreator = new(ActionFactory.Create20531);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20531\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [20531] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE => _Verstone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvECreator = new(ActionFactory.Create20532);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20532\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [20532] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE => _Verflare_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvECreator = new(ActionFactory.Create20533);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20533\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [20533] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE => _CrimsonSavior_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvECreator = new(ActionFactory.Create20692);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20692\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20692] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE => _DynamisDice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20693Creator = new(ActionFactory.Create20693);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20693\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20693] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20693 => _DynamisDice_PvE_20693Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20694Creator = new(ActionFactory.Create20694);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20694\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20694] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20694 => _DynamisDice_PvE_20694Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20695Creator = new(ActionFactory.Create20695);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20695\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20695] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20695 => _DynamisDice_PvE_20695Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20696Creator = new(ActionFactory.Create20696);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20696\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20696] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20696 => _DynamisDice_PvE_20696Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20697Creator = new(ActionFactory.Create20697);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20697\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20697] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20697 => _DynamisDice_PvE_20697Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20698Creator = new(ActionFactory.Create20698);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20698\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20698] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20698 => _DynamisDice_PvE_20698Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20699Creator = new(ActionFactory.Create20699);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20699\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20699] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20699 => _DynamisDice_PvE_20699Creator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20700Creator = new(ActionFactory.Create20700);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20700\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20700] [Item]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20700 => _DynamisDice_PvE_20700Creator.Value;\n private readonly Lazy<IBaseAction> _LostBanishIii_PvECreator = new(ActionFactory.Create20702);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20702\"><strong>Lost Banish III</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20702] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases damage undead enemies take by 25%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBanishIii_PvE => _LostBanishIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostManawall_PvECreator = new(ActionFactory.Create20703);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20703\"><strong>Lost Manawall</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20703] [Ability]\r\n /// <para>Temporarily applies Heavy to self, while reducing damage taken by 90% and nullifying most knockback and draw-in effects.</para>\n /// <para>Duration: 6s</para>\r\n /// </summary>\r\n public IBaseAction LostManawall_PvE => _LostManawall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDispel_PvECreator = new(ActionFactory.Create20704);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20704\"><strong>Lost Dispel</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20704] [Spell]\r\n /// <para>Removes one beneficial status from target.</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction LostDispel_PvE => _LostDispel_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStealth_PvECreator = new(ActionFactory.Create20705);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20705\"><strong>Lost Stealth</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH MCH DRK AST SAM RDM GNB DNC RPR SGE) [20705] [Ability]\r\n /// <para>Blend in with your surroundings, making it impossible for most enemies to detect you, but reducing movement speed by 25%. Has no effect on certain enemies with special sight.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Effect ends upon use of any action other than Sprint, or upon reuse.</para>\r\n /// </summary>\r\n public IBaseAction LostStealth_PvE => _LostStealth_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSpellforge_PvECreator = new(ActionFactory.Create20706);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20706\"><strong>Lost Spellforge</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20706] [Spell]\r\n /// <para>Grants the effect of Lost Spellforge to self or target ally.</para>\n /// <para>Lost Spellforge Effect: All attacks deal magic damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Steelsting.</para>\r\n /// </summary>\r\n public IBaseAction LostSpellforge_PvE => _LostSpellforge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSteelsting_PvECreator = new(ActionFactory.Create20707);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20707\"><strong>Lost Steelsting</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20707] [Spell]\r\n /// <para>Grants the effect of Lost Steelsting to self or target ally.</para>\n /// <para>Lost Steelsting Effect: All attacks deal physical damage. However, all bonuses to damage dealt are determined by the attack's base damage type.</para>\n /// <para>Duration: 300s</para>\n /// <para>Effect cannot be stacked with Lost Spellforge.</para>\r\n /// </summary>\r\n public IBaseAction LostSteelsting_PvE => _LostSteelsting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSwift_PvECreator = new(ActionFactory.Create20708);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20708\"><strong>Lost Swift</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20708] [Ability]\r\n /// <para>Greatly increases movement speed.</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion by 30%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 60%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostSwift_PvE => _LostSwift_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtect_PvECreator = new(ActionFactory.Create20709);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20709\"><strong>Lost Protect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20709] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtect_PvE => _LostProtect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShell_PvECreator = new(ActionFactory.Create20710);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20710\"><strong>Lost Shell</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20710] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 10%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShell_PvE => _LostShell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReflect_PvECreator = new(ActionFactory.Create20711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20711\"><strong>Lost Reflect</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20711] [Spell]\r\n /// <para>Creates a barrier around self or party member that reflects most magic attacks.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Guardian Effect: Duration is increased to 30s</para>\r\n /// </summary>\r\n public IBaseAction LostReflect_PvE => _LostReflect_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskin_PvECreator = new(ActionFactory.Create20712);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20712\"><strong>Lost Stoneskin</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20712] [Spell]\r\n /// <para>Applies a barrier to self or target player that absorbs damage totaling 15% of target's maximum HP.</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskin_PvE => _LostStoneskin_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBravery_PvECreator = new(ActionFactory.Create20713);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20713\"><strong>Lost Bravery</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20713] [Spell]\r\n /// <para>Increases damage dealt by an ally or self by 5%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBravery_PvE => _LostBravery_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFocus_PvECreator = new(ActionFactory.Create20714);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20714\"><strong>Lost Focus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20714] [Ability]\r\n /// <para>Grants a stack of Boost, up to a maximum of 16.</para>\n /// <para>Boost Bonus: Increases potency of next weaponskill by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another lost action.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LostFocus_PvE => _LostFocus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfMagic_PvECreator = new(ActionFactory.Create20715);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20715\"><strong>Lost Font of Magic</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20715] [Ability]\r\n /// <para>Increases damage dealt by 70%, draining MP while in use.</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Veteran Effect: Grants Spell Shield to self</para>\n /// <para>Spell Shield Effect: Reduces magic damage taken by 50%</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfMagic_PvE => _LostFontOfMagic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFontOfSkill_PvECreator = new(ActionFactory.Create20716);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20716\"><strong>Lost Font of Skill</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20716] [Ability]\r\n /// <para>Resets the recast timer for most actions and role actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFontOfSkill_PvE => _LostFontOfSkill_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostDeath_PvECreator = new(ActionFactory.Create20719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20719\"><strong>Lost Death</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20719] [Spell]\r\n /// <para>KOs target. The less the target's HP, the greater the chance of success.</para>\n /// <para>Spirit of the Ordained Effect: Chance of success is increased</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostDeath_PvE => _LostDeath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfNobleEnds_PvECreator = new(ActionFactory.Create20720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20720\"><strong>Banner of Noble Ends</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20720] [Ability]\r\n /// <para>Storm the field under the Banner of Noble Ends, increasing damage dealt by 50% while reducing own HP recovery via most healing actions by 100%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfNobleEnds_PvE => _BannerOfNobleEnds_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonoredSacrifice_PvECreator = new(ActionFactory.Create20721);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20721\"><strong>Banner of Honored Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20721] [Ability]\r\n /// <para>Storm the field under the Banner of Honored Sacrifice, increasing damage dealt by 55% while draining your HP.</para>\n /// <para>Duration: 15s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonoredSacrifice_PvE => _BannerOfHonoredSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfFirmResolve_PvECreator = new(ActionFactory.Create20723);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20723\"><strong>Banner of Firm Resolve</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20723] [Ability]\r\n /// <para>Storm the field under the Banner of Firm Resolve, gaining additional stacks each time damage is taken, up to a maximum of 5.</para>\n /// <para>Banner of Firm Resolve Effect: Reduces damage dealt by 15% per stack</para>\n /// <para>Duration: 30s</para>\n /// <para>At maximum stacks, take up the Banner of Unyielding Defense.</para>\n /// <para>Banner of Unyielding Defense Effect: Reduces damage taken by 30%</para>\n /// <para>Duration: 180s</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfFirmResolve_PvE => _BannerOfFirmResolve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfSolemnClarity_PvECreator = new(ActionFactory.Create20724);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20724\"><strong>Banner of Solemn Clarity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20724] [Ability]\r\n /// <para>Storm the field under the Banner of Solemn Clarity, periodically gaining additional stacks, up to a maximum of 4.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\n /// <para>At maximum stacks, take up the Banner of Limitless Grace.</para>\n /// <para>Banner of Limitless Grace Effect: Increases healing potency by 50% while reducing MP cost</para>\n /// <para>Duration: 120s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfSolemnClarity_PvE => _BannerOfSolemnClarity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BannerOfHonedAcuity_PvECreator = new(ActionFactory.Create20725);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20725\"><strong>Banner of Honed Acuity</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20725] [Ability]\r\n /// <para>Storm the field under the Banner of Honed Acuity, gaining additional stacks each time an attack is evaded, up to a maximum of 3.</para>\n /// <para>Banner of Honed Acuity Effect: Increases damage taken by 10% per stack</para>\n /// <para>Duration: 120s</para>\n /// <para>At maximum stacks, take up the Banner of Transcendent Finesse.</para>\n /// <para>Banner of Transcendent Finesse Effect: Increases critical hit rate by 30% and reduces weaponskill cast time and recast time, spell cast time and recast time, and auto-attack delay by 20%</para>\n /// <para>Duration: 180s</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Effect cannot be stacked with other Banner actions.</para>\r\n /// </summary>\r\n public IBaseAction BannerOfHonedAcuity_PvE => _BannerOfHonedAcuity_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostArise_PvECreator = new(ActionFactory.Create20730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20730\"><strong>Lost Arise</strong></see> <i>PvE</i> (PLD WAR WHM SCH DRK AST GNB SGE) [20730] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>If the target was weakened at the time of Raise, the weakness effect will be removed.</para>\r\n /// </summary>\r\n public IBaseAction LostArise_PvE => _LostArise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostIncense_PvECreator = new(ActionFactory.Create20731);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20731\"><strong>Lost Incense</strong></see> <i>PvE</i> (MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [20731] [Ability]\r\n /// <para>Gesture threateningly, placing yourself at the top of a target's enmity list. </para>\n /// <para>Additional Effect: Enmity generation is increased and damage taken is reduced by 20%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction LostIncense_PvE => _LostIncense_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFairTrade_PvECreator = new(ActionFactory.Create20732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20732\"><strong>Lost Fair Trade</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20732] [Weaponskill]\r\n /// <para>Through sheer force of will, restore a random technique of the lost to physical form and throw it at a single target, dealing damage with a potency of 50.</para>\n /// <para>Potency increases up to 1,000 based on the weight of the lost action.</para>\n /// <para>The lost action thrown will be lost upon execution.</para>\n /// <para>This action does not share a recast timer with any other actions. Furthermore, the recast timer cannot be affected by other actions.</para>\r\n /// </summary>\r\n public IBaseAction LostFairTrade_PvE => _LostFairTrade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Mimic_PvECreator = new(ActionFactory.Create20733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20733\"><strong>Mimic</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20733] [Ability]\r\n /// <para>Study the lost techniques used by a targeted ally and make them your own.</para>\n /// <para>Cannot be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction Mimic_PvE => _Mimic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DynamisDice_PvE_20734Creator = new(ActionFactory.Create20734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20734\"><strong>Dynamis Dice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20734] [Item]\r\n /// <para>Place your faith in the goddess Nymeia as she spins the wheel of fate.</para>\n /// <para>Can only be executed while in combat.</para>\n /// <para>Shares a recast timer with Resistance Potion and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction DynamisDice_PvE_20734 => _DynamisDice_PvE_20734Creator.Value;\n private readonly Lazy<IBaseAction> _ResistancePhoenix_PvECreator = new(ActionFactory.Create20735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20735\"><strong>Resistance Phoenix</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20735] [Item]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePhoenix_PvE => _ResistancePhoenix_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceReraiser_PvECreator = new(ActionFactory.Create20736);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20736\"><strong>Resistance Reraiser</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20736] [Item]\r\n /// <para>Grants a 70% chance of automatic revival upon KO.</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction ResistanceReraiser_PvE => _ResistanceReraiser_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotionKit_PvECreator = new(ActionFactory.Create20737);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20737\"><strong>Resistance Potion Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20737] [Item]\r\n /// <para>Grants Auto-potion to self.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Ether Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotionKit_PvE => _ResistancePotionKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceEtherKit_PvECreator = new(ActionFactory.Create20738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20738\"><strong>Resistance Ether Kit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20738] [Item]\r\n /// <para>Grants Auto-ether to self.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-ether effect to end is reduced to 10%</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Medikit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceEtherKit_PvE => _ResistanceEtherKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceMedikit_PvECreator = new(ActionFactory.Create20739);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20739\"><strong>Resistance Medikit</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20739] [Item]\r\n /// <para>Removes a single detrimental effect from self. When not suffering from detrimental effects, creates a barrier that protects against most status ailments. The barrier is removed after curing the next status ailment suffered.</para>\n /// <para>Effect cannot be stacked with similar barrier actions.</para>\n /// <para>Duration: 30m</para>\n /// <para>Shares a recast timer with Resistance Potion Kit and Resistance Ether Kit.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceMedikit_PvE => _ResistanceMedikit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistancePotion_PvECreator = new(ActionFactory.Create20740);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20740\"><strong>Resistance Potion</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20740] [Item]\r\n /// <para>Gradually restores HP.</para>\n /// <para>Cure Potency: 1,600</para>\n /// <para>Duration: 40s</para>\n /// <para>Shares a recast timer with Dynamis Dice and Resistance Elixir.</para>\r\n /// </summary>\r\n public IBaseAction ResistancePotion_PvE => _ResistancePotion_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20741);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20741\"><strong>Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20741] [Item]\r\n /// <para>Increases damage dealt by 80%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheAetherweaver_PvE => _EssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20744);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20744\"><strong>Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20744] [Item]\r\n /// <para>Increases physical defense by 150%, magic defense by 45%, and maximum HP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheVeteran_PvE => _EssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20747);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20747\"><strong>Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20747] [Item]\r\n /// <para>Increases damage dealt by 20%, healing potency by 25%, and maximum MP by 50%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheOrdained_PvE => _EssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheProfane_PvECreator = new(ActionFactory.Create20750);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20750\"><strong>Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20750] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheProfane_PvE => _EssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20752);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20752\"><strong>Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20752] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 10%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheBreathtaker_PvE => _EssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20755);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20755\"><strong>Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20755] [Item]\r\n /// <para>Increases defense by 50%, maximum HP by 45%, and damage dealt by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction EssenceOfTheTemplar_PvE => _EssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheAetherweaver_PvECreator = new(ActionFactory.Create20756);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20756\"><strong>Deep Essence of the Aetherweaver</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20756] [Item]\r\n /// <para>Increases damage dealt by 96%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheAetherweaver_PvE => _DeepEssenceOfTheAetherweaver_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheVeteran_PvECreator = new(ActionFactory.Create20759);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20759\"><strong>Deep Essence of the Veteran</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [20759] [Item]\r\n /// <para>Increases physical defense by 180%, magic defense by 54%, and maximum HP by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheVeteran_PvE => _DeepEssenceOfTheVeteran_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheOrdained_PvECreator = new(ActionFactory.Create20762);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20762\"><strong>Deep Essence of the Ordained</strong></see> <i>PvE</i> (WHM SMN SCH AST RDM SGE) [20762] [Item]\r\n /// <para>Increases damage dealt by 24%, healing potency by 30%, and maximum MP by 60%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheOrdained_PvE => _DeepEssenceOfTheOrdained_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheProfane_PvECreator = new(ActionFactory.Create20765);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20765\"><strong>Deep Essence of the Profane</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20765] [Item]\r\n /// <para>Reduces healing potency by 70% while increasing damage dealt by 120%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheProfane_PvE => _DeepEssenceOfTheProfane_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheBreathtaker_PvECreator = new(ActionFactory.Create20767);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20767\"><strong>Deep Essence of the Breathtaker</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [20767] [Item]\r\n /// <para>Increases poison resistance and movement speed, including mount speed, and increases evasion by 20%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheBreathtaker_PvE => _DeepEssenceOfTheBreathtaker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DeepEssenceOfTheTemplar_PvECreator = new(ActionFactory.Create20770);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20770\"><strong>Deep Essence of the Templar</strong></see> <i>PvE</i> (WHM SCH AST SGE) [20770] [Item]\r\n /// <para>Increases defense by 60%, maximum HP by 54%, and damage dealt by 72%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence or Deep Essence actions.</para>\r\n /// </summary>\r\n public IBaseAction DeepEssenceOfTheTemplar_PvE => _DeepEssenceOfTheTemplar_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AutoRestoration_PvECreator = new(ActionFactory.Create20940);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/20940\"><strong>Auto Restoration</strong></see> <i>PvE</i> (All Classes) [20940] [Ability]\r\n /// <para>Restores up to 40% of own HP and 30% of own EP.</para>\r\n /// </summary>\r\n public IBaseAction AutoRestoration_PvE => _AutoRestoration_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostAction_PvECreator = new(ActionFactory.Create21023);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21023\"><strong>Lost Action</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [21023] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LostAction_PvE => _LostAction_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnkindlingFlameDance_PvECreator = new(ActionFactory.Create21324);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21324\"><strong>Enkindling Flame Dance</strong></see> <i>PvE</i> (All Classes) [21324] [Special]\r\n /// <para>Sets a Bombard's heart ablaze. More ablaze than usual, that is.</para>\r\n /// </summary>\r\n public IBaseAction EnkindlingFlameDance_PvE => _EnkindlingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InvigoratingFlameDance_PvECreator = new(ActionFactory.Create21325);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21325\"><strong>Invigorating Flame Dance</strong></see> <i>PvE</i> (All Classes) [21325] [Special]\r\n /// <para>Fills a Bombard with vim and vigor.</para>\r\n /// </summary>\r\n public IBaseAction InvigoratingFlameDance_PvE => _InvigoratingFlameDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Fleche_PvECreator = new(ActionFactory.Create21494);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21494\"><strong>Fleche</strong></see> <i>PvE</i> (All Classes) [21494] [Ability]\r\n /// <para>Delivers an attack with a potency of 440.</para>\r\n /// </summary>\r\n public IBaseAction Fleche_PvE => _Fleche_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvECreator = new(ActionFactory.Create21495);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21495\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [21495] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE => _ContreSixte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Displacement_PvECreator = new(ActionFactory.Create21496);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21496\"><strong>Displacement</strong></see> <i>PvE</i> (All Classes) [21496] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Displacement_PvE => _Displacement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvECreator = new(ActionFactory.Create21497);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21497\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [21497] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE => _Vercure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MaleficIii_PvECreator = new(ActionFactory.Create21498);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21498\"><strong>Malefic III</strong></see> <i>PvE</i> (All Classes) [21498] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 210.</para>\r\n /// </summary>\r\n public IBaseAction MaleficIii_PvE => _MaleficIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinyDrawn_PvECreator = new(ActionFactory.Create21499);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21499\"><strong>Destiny Drawn</strong></see> <i>PvE</i> (All Classes) [21499] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinyDrawn_PvE => _DestinyDrawn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LordOfCrowns_PvECreator = new(ActionFactory.Create21607);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21607\"><strong>Lord of Crowns</strong></see> <i>PvE</i> (All Classes) [21607] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LordOfCrowns_PvE => _LordOfCrowns_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Benefic_PvECreator = new(ActionFactory.Create21608);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21608\"><strong>Benefic</strong></see> <i>PvE</i> (All Classes) [21608] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Benefic_PvE => _Benefic_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AspectedHelios_PvECreator = new(ActionFactory.Create21609);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21609\"><strong>Aspected Helios</strong></see> <i>PvE</i> (All Classes) [21609] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction AspectedHelios_PvE => _AspectedHelios_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheScroll_PvECreator = new(ActionFactory.Create21610);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21610\"><strong>the Scroll</strong></see> <i>PvE</i> (All Classes) [21610] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheScroll_PvE => _TheScroll_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FixedSign_PvECreator = new(ActionFactory.Create21611);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21611\"><strong>Fixed Sign</strong></see> <i>PvE</i> (All Classes) [21611] [Ability]\r\n /// <para>Creates a fixed sign centered around the caster, reducing damage taken by 10% for self and any party members who enter.</para>\n /// <para>Duration: 18s</para>\n /// <para>Additional Effect: Healing over time</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect ends upon using another action or moving (including facing a different direction).</para>\n /// <para>Cancels auto-attack upon execution.</para>\r\n /// </summary>\r\n public IBaseAction FixedSign_PvE => _FixedSign_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvECreator = new(ActionFactory.Create21612);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21612\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [21612] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE => _FireIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Foul_PvECreator = new(ActionFactory.Create21613);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21613\"><strong>Foul</strong></see> <i>PvE</i> (All Classes) [21613] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Foul_PvE => _Foul_PvECreator.Value;\n private readonly Lazy<IBaseAction> _AllaganBlizzardIv_PvECreator = new(ActionFactory.Create21852);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21852\"><strong>Allagan Blizzard IV</strong></see> <i>PvE</i> (All Classes) [21852] [Spell]\r\n /// <para>Deals ice damage with a potency of 300.</para>\n /// <para>Additional Effect: Restores up to 40% of MP</para>\r\n /// </summary>\r\n public IBaseAction AllaganBlizzardIv_PvE => _AllaganBlizzardIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ThunderIv_PvECreator = new(ActionFactory.Create21884);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21884\"><strong>Thunder IV</strong></see> <i>PvE</i> (All Classes) [21884] [Spell]\r\n /// <para>Deals lightning damage with a potency of 200 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Lightning damage over time</para>\n /// <para>Potency: 30</para>\n /// <para>Duration: 18s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ThunderIv_PvE => _ThunderIv_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CureIi_PvECreator = new(ActionFactory.Create21886);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21886\"><strong>Cure II</strong></see> <i>PvE</i> (All Classes) [21886] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 700</para>\r\n /// </summary>\r\n public IBaseAction CureIi_PvE => _CureIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicaIi_PvECreator = new(ActionFactory.Create21888);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21888\"><strong>Medica II</strong></see> <i>PvE</i> (All Classes) [21888] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 200</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MedicaIi_PvE => _MedicaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Break_PvECreator = new(ActionFactory.Create21921);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21921\"><strong>Break</strong></see> <i>PvE</i> (All Classes) [21921] [Spell]\r\n /// <para>Prevents spellcasting, movement, and other activity of all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction Break_PvE => _Break_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvECreator = new(ActionFactory.Create21923);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/21923\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [21923] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE => _Verholy_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostPerception_PvECreator = new(ActionFactory.Create22344);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22344\"><strong>Lost Perception</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22344] [Ability]\r\n /// <para>Detect traps within a radius of 15 yalms.</para>\n /// <para>If there are no traps within 15 yalms, alerts you to the presence of traps with a radius of 36 yalms.</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction LostPerception_PvE => _LostPerception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSacrifice_PvECreator = new(ActionFactory.Create22345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22345\"><strong>Lost Sacrifice</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [22345] [Spell]\r\n /// <para>Restores all of a KO'd target's HP.</para>\n /// <para>Cannot be executed if currently afflicted with Sacrifice.</para>\n /// <para>Additional Effect: Inflicts Sacrifice on self</para>\n /// <para>Sacrifice Effect: When effect expires, you will be KO'd</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction LostSacrifice_PvE => _LostSacrifice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PureEssenceOfTheDivine_PvECreator = new(ActionFactory.Create22351);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22351\"><strong>Pure Essence of the Divine</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22351] [Item]\r\n /// <para>Increases defense by 25%, damage dealt by 35%, and maximum HP by 100%.</para>\n /// <para>Effect ends upon reuse.</para>\n /// <para>Cannot be used with other Essence, Deep Essence, or Pure Essence actions.</para>\n /// <para>It is said that Pure Essences may grant unexpected effects...</para>\n /// <para>※This action can only be used in Delubrum Reginae.</para>\r\n /// </summary>\r\n public IBaseAction PureEssenceOfTheDivine_PvE => _PureEssenceOfTheDivine_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostSeraphStrike_PvECreator = new(ActionFactory.Create22354);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22354\"><strong>Lost Seraph Strike</strong></see> <i>PvE</i> (WHM SCH AST SGE) [22354] [Ability]\r\n /// <para>Consumes MP to deliver a jumping attack that deals unaspected damage with a potency of 500.</para>\n /// <para>Additional Effect: Reduces target's accuracy by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Cleric Stance to self.</para>\n /// <para>Cleric Stance Bonus: Reduces healing potency by 60% while increasing damage dealt by 60%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostSeraphStrike_PvE => _LostSeraphStrike_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22502Creator = new(ActionFactory.Create22502);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22502\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22502] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22502 => _FireIv_PvE_22502Creator.Value;\n private readonly Lazy<IBaseAction> _FireIv_PvE_22817Creator = new(ActionFactory.Create22817);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/22817\"><strong>Fire IV</strong></see> <i>PvE</i> (All Classes) [22817] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FireIv_PvE_22817 => _FireIv_PvE_22817Creator.Value;\n private readonly Lazy<IBaseAction> _SemieternalBreath_PvECreator = new(ActionFactory.Create23345);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23345\"><strong>Semi-eternal Breath</strong></see> <i>PvE</i> (All Classes) [23345] [Mount]\r\n /// <para>Unleash an Eternal Breath...sort-of.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction SemieternalBreath_PvE => _SemieternalBreath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Lodestone_PvECreator = new(ActionFactory.Create23907);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23907\"><strong>Lodestone</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23907] [Item]\r\n /// <para>Instantly return to the starting point of the area.</para>\n /// <para>Cannot be executed while in combat.</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction Lodestone_PvE => _Lodestone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostStoneskinIi_PvECreator = new(ActionFactory.Create23908);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23908\"><strong>Lost Stoneskin II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23908] [Spell]\r\n /// <para>Creates a barrier around self and all party members near you that absorbs damage totaling 10% of maximum HP.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LostStoneskinIi_PvE => _LostStoneskinIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBurst_PvECreator = new(ActionFactory.Create23909);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23909\"><strong>Lost Burst</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23909] [Spell]\r\n /// <para>Deals lightning damage with a potency of 300 to all nearby enemies.</para>\n /// <para>Additional Effect: Interrupts all nearby enemies</para>\n /// <para>Additional Effect: Increases damage taken by enemies with Magical Aversion by 10%</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction LostBurst_PvE => _LostBurst_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LightCurtain_PvECreator = new(ActionFactory.Create23911);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23911\"><strong>Light Curtain</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23911] [Item]\r\n /// <para>Grants the effect of Lost Reflect to self.</para>\n /// <para>Lost Reflect Effect: Reflects most magic attacks</para>\n /// <para>Duration: 10s</para>\n /// <para>Shares a recast timer with all other weaponskills and spells.</para>\r\n /// </summary>\r\n public IBaseAction LightCurtain_PvE => _LightCurtain_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostReraise_PvECreator = new(ActionFactory.Create23912);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23912\"><strong>Lost Reraise</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23912] [Spell]\r\n /// <para>Grants the effect of Reraise to self or target player.</para>\n /// <para>Reraise Effect: Grants an 80% chance of automatic revival upon KO</para>\n /// <para>Duration: 180m</para>\r\n /// </summary>\r\n public IBaseAction LostReraise_PvE => _LostReraise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostChainspell_PvECreator = new(ActionFactory.Create23913);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23913\"><strong>Lost Chainspell</strong></see> <i>PvE</i> (WHM BLM SMN SCH AST RDM SGE) [23913] [Ability]\r\n /// <para>Temporarily eliminates cast time for all spells.</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Magic Burst</para>\n /// <para>Magic Burst Effect: Increases spell damage by 45% while increasing MP cost</para>\n /// <para>Duration: 30s</para>\n /// <para>Spirit of the Ordained Effect: Raises Magic Burst spell damage increase to 100% and nullifies additional MP cost</para>\n /// <para>Spirit of the Watcher Effect: Lost Chainspell duration is extended to 90s</para>\n /// <para>Can only be executed while in combat.</para>\r\n /// </summary>\r\n public IBaseAction LostChainspell_PvE => _LostChainspell_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostProtectIi_PvECreator = new(ActionFactory.Create23915);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23915\"><strong>Lost Protect II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23915] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing physical damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostProtectIi_PvE => _LostProtectIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostShellIi_PvECreator = new(ActionFactory.Create23916);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23916\"><strong>Lost Shell II</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23916] [Spell]\r\n /// <para>Applies a barrier to self or target player reducing magic damage taken by 15%.</para>\n /// <para>Duration: 30m</para>\r\n /// </summary>\r\n public IBaseAction LostShellIi_PvE => _LostShellIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostBubble_PvECreator = new(ActionFactory.Create23917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23917\"><strong>Lost Bubble</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23917] [Spell]\r\n /// <para>Increases maximum HP of self or target player by 30%.</para>\n /// <para>Duration: 600s</para>\r\n /// </summary>\r\n public IBaseAction LostBubble_PvE => _LostBubble_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostImpetus_PvECreator = new(ActionFactory.Create23918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23918\"><strong>Lost Impetus</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23918] [Ability]\r\n /// <para>Quickly dash 10 yalms forward.</para>\n /// <para>Additional Effect: Applies Lost Swift to self and nearby party members</para>\n /// <para>Lost Swift Effect: Greatly increases movement speed</para>\n /// <para>Effect cannot be stacked with other movement speed enhancing abilities.</para>\n /// <para>Duration: 10s</para>\n /// <para>Spirit of the Breathtaker Effect: Increases evasion of self and nearby party members by 15%</para>\n /// <para>Duration: 60s</para>\n /// <para>Spirit of the Watcher Effect: Grants Rapid Recast to self and nearby party members</para>\n /// <para>Rapid Recast Effect: Shortens recast time for next ability used by 25%</para>\n /// <para>Effect only applies to certain abilities.</para>\n /// <para>Duration: 15s</para>\n /// <para>Cannot be executed while bound.</para>\r\n /// </summary>\r\n public IBaseAction LostImpetus_PvE => _LostImpetus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LostFullCure_PvECreator = new(ActionFactory.Create23920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23920\"><strong>Lost Full Cure</strong></see> <i>PvE</i> (WHM SCH AST SGE) [23920] [Ability]\r\n /// <para>Fully restores HP and MP while granting Auto-potion and Auto-ether to self and nearby party members.</para>\n /// <para>Auto-potion Effect: Restores HP automatically when HP falls below 50%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Auto-ether Effect: Restores MP automatically when MP falls below 20%</para>\n /// <para>Duration: 600s</para>\n /// <para>When triggered, there is a 50% chance the effect will end.</para>\n /// <para>Spirit of the Breathtaker Effect: Chance for Auto-potion and Auto-ether effect to end is reduced to 10%</para>\r\n /// </summary>\r\n public IBaseAction LostFullCure_PvE => _LostFullCure_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ResistanceElixir_PvECreator = new(ActionFactory.Create23922);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/23922\"><strong>Resistance Elixir</strong></see> <i>PvE</i> (PLD MNK WAR DRG BRD WHM BLM SMN SCH NIN MCH DRK AST SAM RDM GNB DNC RPR SGE) [23922] [Item]\r\n /// <para>Restores own HP and MP to maximum.</para>\n /// <para>Shares a recast timer with Resistance Potion and Dynamis Dice.</para>\r\n /// </summary>\r\n public IBaseAction ResistanceElixir_PvE => _ResistanceElixir_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DestinysSleeve_PvECreator = new(ActionFactory.Create24066);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24066\"><strong>Destiny's Sleeve</strong></see> <i>PvE</i> (All Classes) [24066] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DestinysSleeve_PvE => _DestinysSleeve_PvECreator.Value;\n private readonly Lazy<IBaseAction> _CrystalIce_PvECreator = new(ActionFactory.Create24276);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24276\"><strong>Crystal Ice</strong></see> <i>PvE</i> (All Classes) [24276] [Mount]\r\n /// <para>Create a shower of delicate frozen crystals.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction CrystalIce_PvE => _CrystalIce_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MightyMaximizer_PvECreator = new(ActionFactory.Create24277);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24277\"><strong>Mighty Maximizer</strong></see> <i>PvE</i> (All Classes) [24277] [Special]\r\n /// <para>Do as the Mighty Moogle and show the fine specimen that you are to all present.</para>\r\n /// </summary>\r\n public IBaseAction MightyMaximizer_PvE => _MightyMaximizer_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ChirpyChecker_PvECreator = new(ActionFactory.Create24278);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24278\"><strong>Chirpy Checker</strong></see> <i>PvE</i> (All Classes) [24278] [Special]\r\n /// <para>Do as the Chirpy Chocobo and point and acknowledge─because safety is paramount. </para>\r\n /// </summary>\r\n public IBaseAction ChirpyChecker_PvE => _ChirpyChecker_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PerkyPeeler_PvECreator = new(ActionFactory.Create24279);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24279\"><strong>Perky Peeler</strong></see> <i>PvE</i> (All Classes) [24279] [Special]\r\n /// <para>Do as the Perky Piggy and keep your eyes peeled for hidden treasure.</para>\r\n /// </summary>\r\n public IBaseAction PerkyPeeler_PvE => _PerkyPeeler_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dosis_PvECreator = new(ActionFactory.Create24283);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24283\"><strong>Dosis</strong></see> <i>PvE</i> (SGE) [24283] [Spell]\r\n /// <para>Deals unaspected damage with a potency of .</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Dosis_PvE => _Dosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvECreator = new(ActionFactory.Create24284);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24284\"><strong>Diagnosis</strong></see> <i>PvE</i> (SGE) [24284] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE => _Diagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kardia_PvECreator = new(ActionFactory.Create24285);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24285\"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [24285] [Ability]\r\n /// <para>Grants self the effect of Kardia and a selected party member or self the effect of Kardion, restoring HP after casting certain magic attacks.</para>\r\n /// </summary>\r\n public IBaseAction Kardia_PvE => _Kardia_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvECreator = new(ActionFactory.Create24286);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24286\"><strong>Prognosis</strong></see> <i>PvE</i> (SGE) [24286] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE => _Prognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Egeiro_PvECreator = new(ActionFactory.Create24287);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24287\"><strong>Egeiro</strong></see> <i>PvE</i> (SGE) [24287] [Spell]\r\n /// <para>Resurrects target to a weakened state.</para>\r\n /// </summary>\r\n public IBaseAction Egeiro_PvE => _Egeiro_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Physis_PvECreator = new(ActionFactory.Create24288);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24288\"><strong>Physis</strong></see> <i>PvE</i> (SGE) [24288] [Ability]\r\n /// <para>Gradually restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Physis_PvE => _Physis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Phlegma_PvECreator = new(ActionFactory.Create24289);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24289\"><strong>Phlegma</strong></see> <i>PvE</i> (SGE) [24289] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of for the first enemy, and 30% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction Phlegma_PvE => _Phlegma_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Eukrasia_PvECreator = new(ActionFactory.Create24290);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24290\"><strong>Eukrasia</strong></see> <i>PvE</i> (SGE) [24290] [Spell]\r\n /// <para>Augments certain offensive and healing magic actions.</para>\n /// <para>Dosis III is upgraded to Eukrasian Dosis IIIDosis II is upgraded to Eukrasian Dosis IIDosis is upgraded to Eukrasian DosisDosis is upgraded to Eukrasian DosisDosis II is upgraded to Eukrasian Dosis IIDosis is upgraded to Eukrasian DosisDosis is upgraded to Eukrasian Dosis.</para>\n /// <para>Diagnosis is upgraded to Eukrasian Diagnosis.</para>\n /// <para>Prognosis is upgraded to Eukrasian Prognosis.</para>\n /// <para>This action does not share a recast timer with any other actions. Upon execution, the recast timer for this action will be applied to all other weaponskills and magic actions.</para>\r\n /// </summary>\r\n public IBaseAction Eukrasia_PvE => _Eukrasia_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianDiagnosis_PvECreator = new(ActionFactory.Create24291);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24291\"><strong>Eukrasian Diagnosis</strong></see> <i>PvE</i> (SGE) [24291] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored. When critical HP is restored, also grants Differential Diagnosis, nullifying damage equaling % the amount of HP restored.</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with Eukrasian Prognosis or scholar's Galvanize.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianDiagnosis_PvE => _EukrasianDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianPrognosis_PvECreator = new(ActionFactory.Create24292);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24292\"><strong>Eukrasian Prognosis</strong></see> <i>PvE</i> (SGE) [24292] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling % of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para>Effect cannot be stacked with those of Eukrasian Diagnosis or scholar's Galvanize.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianPrognosis_PvE => _EukrasianPrognosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianDosis_PvECreator = new(ActionFactory.Create24293);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24293\"><strong>Eukrasian Dosis</strong></see> <i>PvE</i> (SGE) [24293] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: </para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianDosis_PvE => _EukrasianDosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Soteria_PvECreator = new(ActionFactory.Create24294);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24294\"><strong>Soteria</strong></see> <i>PvE</i> (SGE) [24294] [Ability]\r\n /// <para>Grants 4 stacks of Soteria, each stack increasing the cure potency of Kardion effects granted by you by 70%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Soteria_PvE => _Soteria_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Icarus_PvECreator = new(ActionFactory.Create24295);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24295\"><strong>Icarus</strong></see> <i>PvE</i> (SGE) [24295] [Ability]\r\n /// <para>Rush to a targeted enemy's or party member's location.</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction Icarus_PvE => _Icarus_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Druochole_PvECreator = new(ActionFactory.Create24296);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24296\"><strong>Druochole</strong></see> <i>PvE</i> (SGE) [24296] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\n /// <para>Additional Effect: Restores 7% of maximum MP</para>\n /// <para>Addersgall Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Druochole_PvE => _Druochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Dyskrasia_PvECreator = new(ActionFactory.Create24297);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24297\"><strong>Dyskrasia</strong></see> <i>PvE</i> (SGE) [24297] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 160 to all nearby enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction Dyskrasia_PvE => _Dyskrasia_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Kerachole_PvECreator = new(ActionFactory.Create24298);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24298\"><strong>Kerachole</strong></see> <i>PvE</i> (SGE) [24298] [Ability]\r\n /// <para>Reduces damage taken by self and nearby party members by 10%.</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Taurochole.</para>\n /// <para>Additional Effect: Regen</para>\n /// <para>Cure Potency: 100</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Restores 7% of maximum MP</para>\n /// <para>Addersgall Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Kerachole_PvE => _Kerachole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Ixochole_PvECreator = new(ActionFactory.Create24299);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24299\"><strong>Ixochole</strong></see> <i>PvE</i> (SGE) [24299] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 400</para>\n /// <para>Additional Effect: Restores 7% of maximum MP</para>\n /// <para>Addersgall Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Ixochole_PvE => _Ixochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Zoe_PvECreator = new(ActionFactory.Create24300);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24300\"><strong>Zoe</strong></see> <i>PvE</i> (SGE) [24300] [Ability]\r\n /// <para>Increases healing magic potency of your next healing spell by 50%.</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction Zoe_PvE => _Zoe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pepsis_PvECreator = new(ActionFactory.Create24301);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24301\"><strong>Pepsis</strong></see> <i>PvE</i> (SGE) [24301] [Ability]\r\n /// <para>Restores own HP and the HP of nearby party members by removing Eukrasian Diagnosis and Eukrasian Prognosis effects granted by you.</para>\n /// <para>Eukrasian Diagnosis Cure Potency: 450</para>\n /// <para>Eukrasian Prognosis Cure Potency: 350</para>\n /// <para>Targets not under the effect of Eukrasian Diagnosis or Eukrasian Prognosis will not be healed.</para>\r\n /// </summary>\r\n public IBaseAction Pepsis_PvE => _Pepsis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhysisIi_PvECreator = new(ActionFactory.Create24302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24302\"><strong>Physis II</strong></see> <i>PvE</i> (SGE) [24302] [Ability]\r\n /// <para>Gradually restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 130</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Increases HP recovered by healing actions by 10%</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction PhysisIi_PvE => _PhysisIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Taurochole_PvECreator = new(ActionFactory.Create24303);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24303\"><strong>Taurochole</strong></see> <i>PvE</i> (SGE) [24303] [Ability]\r\n /// <para>Restores own or target party member's HP.</para>\n /// <para>Cure Potency: 700</para>\n /// <para>Additional Effect: Reduces target's damage taken by 10%</para>\n /// <para>Duration: 15s</para>\n /// <para>Effect cannot be stacked with Kerachole.</para>\n /// <para>Additional Effect: Restores 7% of maximum MP</para>\n /// <para>Addersgall Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Taurochole_PvE => _Taurochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Toxikon_PvECreator = new(ActionFactory.Create24304);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24304\"><strong>Toxikon</strong></see> <i>PvE</i> (SGE) [24304] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Addersting Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction Toxikon_PvE => _Toxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Haima_PvECreator = new(ActionFactory.Create24305);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24305\"><strong>Haima</strong></see> <i>PvE</i> (SGE) [24305] [Ability]\r\n /// <para>Erects a magicked barrier around self or target party member that absorbs damage equivalent to a heal of 300 potency.</para>\n /// <para>Additional Effect: Grants 5 stacks of Haimatinon</para>\n /// <para>Duration: 15s</para>\n /// <para>When the barrier is completely absorbed, a stack of Haimatinon is consumed and a new barrier is applied.</para>\n /// <para>When the effect duration expires, a healing effect is then applied.</para>\n /// <para>Cure Potency: 150 per remaining stack of Haimatinon</para>\r\n /// </summary>\r\n public IBaseAction Haima_PvE => _Haima_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIi_PvECreator = new(ActionFactory.Create24306);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24306\"><strong>Dosis II</strong></see> <i>PvE</i> (SGE) [24306] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 320.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction DosisIi_PvE => _DosisIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhlegmaIi_PvECreator = new(ActionFactory.Create24307);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24307\"><strong>Phlegma II</strong></see> <i>PvE</i> (SGE) [24307] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 490 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction PhlegmaIi_PvE => _PhlegmaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianDosisIi_PvECreator = new(ActionFactory.Create24308);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24308\"><strong>Eukrasian Dosis II</strong></see> <i>PvE</i> (SGE) [24308] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 60</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianDosisIi_PvE => _EukrasianDosisIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rhizomata_PvECreator = new(ActionFactory.Create24309);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24309\"><strong>Rhizomata</strong></see> <i>PvE</i> (SGE) [24309] [Ability]\r\n /// <para>Grants 1 stack of Addersgall.</para>\r\n /// </summary>\r\n public IBaseAction Rhizomata_PvE => _Rhizomata_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Holos_PvECreator = new(ActionFactory.Create24310);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24310\"><strong>Holos</strong></see> <i>PvE</i> (SGE) [24310] [Ability]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Reduces damage taken by self and nearby party members by 10%</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Holos_PvE => _Holos_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Panhaima_PvECreator = new(ActionFactory.Create24311);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24311\"><strong>Panhaima</strong></see> <i>PvE</i> (SGE) [24311] [Ability]\r\n /// <para>Erects a magicked barrier around self and all party members near you that absorbs damage equivalent to a heal of 200 potency.</para>\n /// <para>Additional Effect: Grants 5 stacks of Panhaimatinon</para>\n /// <para>Duration: 15s</para>\n /// <para>When the barrier is completely absorbed, a stack of Panhaimatinon is consumed and a new barrier is applied.</para>\n /// <para>When the effect duration expires, a healing effect is then applied.</para>\n /// <para>Cure Potency: 100 per remaining stack of Panhaimatinon</para>\r\n /// </summary>\r\n public IBaseAction Panhaima_PvE => _Panhaima_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvECreator = new(ActionFactory.Create24312);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24312\"><strong>Dosis III</strong></see> <i>PvE</i> (SGE) [24312] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 330.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE => _DosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _PhlegmaIii_PvECreator = new(ActionFactory.Create24313);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24313\"><strong>Phlegma III</strong></see> <i>PvE</i> (SGE) [24313] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 600 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction PhlegmaIii_PvE => _PhlegmaIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianDosisIii_PvECreator = new(ActionFactory.Create24314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24314\"><strong>Eukrasian Dosis III</strong></see> <i>PvE</i> (SGE) [24314] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 75</para>\n /// <para>Duration: 30s</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianDosisIii_PvE => _EukrasianDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DyskrasiaIi_PvECreator = new(ActionFactory.Create24315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24315\"><strong>Dyskrasia II</strong></see> <i>PvE</i> (SGE) [24315] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 170 to all nearby enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\r\n /// </summary>\r\n public IBaseAction DyskrasiaIi_PvE => _DyskrasiaIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ToxikonIi_PvECreator = new(ActionFactory.Create24316);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24316\"><strong>Toxikon II</strong></see> <i>PvE</i> (SGE) [24316] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 330 for the first enemy, and 50% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Addersting Cost: 1</para>\r\n /// </summary>\r\n public IBaseAction ToxikonIi_PvE => _ToxikonIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Krasis_PvECreator = new(ActionFactory.Create24317);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24317\"><strong>Krasis</strong></see> <i>PvE</i> (SGE) [24317] [Ability]\r\n /// <para>Increases HP recovery via healing actions for a party member or self by 20%.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction Krasis_PvE => _Krasis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pneuma_PvECreator = new(ActionFactory.Create24318);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24318\"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [24318] [Spell]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you with a potency of 330 for the first enemy, and 40% less for all remaining enemies.</para>\n /// <para>Additional Effect: Restores own HP and the HP of all party members within a radius of 20 yalms</para>\n /// <para>Cure Potency: 600</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: </para>\n /// <para>Recast timer cannot be affected by status effects or gear attributes.</para>\r\n /// </summary>\r\n public IBaseAction Pneuma_PvE => _Pneuma_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvECreator = new(ActionFactory.Create24619);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24619\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24619] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages black walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE => _LiminalFire_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LiminalFire_PvE_24620Creator = new(ActionFactory.Create24620);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24620\"><strong>Liminal Fire</strong></see> <i>PvE</i> (All Classes) [24620] [Weaponskill]\r\n /// <para>Unleash a digital barrage that damages white walls and pylons.</para>\r\n /// </summary>\r\n public IBaseAction LiminalFire_PvE_24620 => _LiminalFire_PvE_24620Creator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvECreator = new(ActionFactory.Create24621);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24621\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24621] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE => _F0Switch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _F0Switch_PvE_24622Creator = new(ActionFactory.Create24622);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24622\"><strong>F-0 Switch</strong></see> <i>PvE</i> (All Classes) [24622] [Ability]\r\n /// <para>Swap your color.</para>\r\n /// </summary>\r\n public IBaseAction F0Switch_PvE_24622 => _F0Switch_PvE_24622Creator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvECreator = new(ActionFactory.Create24831);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24831\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24831] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE => _Scorch_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheEnd_PvECreator = new(ActionFactory.Create24858);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24858\"><strong>the End</strong></see> <i>PvE</i> (All Classes) [24858] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TheEnd_PvE => _TheEnd_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TechneMakre_PvECreator = new(ActionFactory.Create24859);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24859\"><strong>Techne Makre</strong></see> <i>PvE</i> (All Classes) [24859] [Limit Break]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction TechneMakre_PvE => _TechneMakre_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Scorch_PvE_24898Creator = new(ActionFactory.Create24898);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24898\"><strong>Scorch</strong></see> <i>PvE</i> (All Classes) [24898] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Scorch_PvE_24898 => _Scorch_PvE_24898Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvECreator = new(ActionFactory.Create24917);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24917\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [24917] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE => _Corpsacorps_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvECreator = new(ActionFactory.Create24918);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24918\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [24918] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE => _EnchantedRiposte_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvECreator = new(ActionFactory.Create24919);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24919\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [24919] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE => _EnchantedZwerchhau_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvECreator = new(ActionFactory.Create24920);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/24920\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [24920] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE => _EnchantedRedoublement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvECreator = new(ActionFactory.Create25133);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/25133\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [25133] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE => _MedicalKit_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Diagnosis_PvE_26224Creator = new(ActionFactory.Create26224);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26224\"><strong>Diagnosis</strong></see> <i>PvE</i> (All Classes) [26224] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 400</para>\r\n /// </summary>\r\n public IBaseAction Diagnosis_PvE_26224 => _Diagnosis_PvE_26224Creator.Value;\n private readonly Lazy<IBaseAction> _Embolden_PvECreator = new(ActionFactory.Create26225);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26225\"><strong>Embolden</strong></see> <i>PvE</i> (All Classes) [26225] [Ability]\r\n /// <para>Increases own magic damage dealt by 5% and damage dealt by nearby party members by 5%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Embolden_PvE => _Embolden_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MagitekCannon_PvE_26231Creator = new(ActionFactory.Create26231);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26231\"><strong>Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26231] [Weaponskill]\r\n /// <para>Fires cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction MagitekCannon_PvE_26231 => _MagitekCannon_PvE_26231Creator.Value;\n private readonly Lazy<IBaseAction> _DiffractiveMagitekCannon_PvE_26232Creator = new(ActionFactory.Create26232);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26232\"><strong>Diffractive Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26232] [Weaponskill]\r\n /// <para>Fires diffractive cannon at the designated area.</para>\r\n /// </summary>\r\n public IBaseAction DiffractiveMagitekCannon_PvE_26232 => _DiffractiveMagitekCannon_PvE_26232Creator.Value;\n private readonly Lazy<IBaseAction> _HighpoweredMagitekCannon_PvE_26233Creator = new(ActionFactory.Create26233);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26233\"><strong>High-powered Magitek Cannon</strong></see> <i>PvE</i> (All Classes) [26233] [Weaponskill]\r\n /// <para>Fires a concentrated burst of energy in a forward direction.</para>\r\n /// </summary>\r\n public IBaseAction HighpoweredMagitekCannon_PvE_26233 => _HighpoweredMagitekCannon_PvE_26233Creator.Value;\n private readonly Lazy<IBaseAction> _FastBlade_PvE_26249Creator = new(ActionFactory.Create26249);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26249\"><strong>Fast Blade</strong></see> <i>PvE</i> (All Classes) [26249] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction FastBlade_PvE_26249 => _FastBlade_PvE_26249Creator.Value;\n private readonly Lazy<IBaseAction> _RiotBlade_PvECreator = new(ActionFactory.Create26250);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26250\"><strong>Riot Blade</strong></see> <i>PvE</i> (All Classes) [26250] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RiotBlade_PvE => _RiotBlade_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfHalone_PvECreator = new(ActionFactory.Create26251);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26251\"><strong>Rage of Halone</strong></see> <i>PvE</i> (All Classes) [26251] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfHalone_PvE => _RageOfHalone_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FightOrFlight_PvE_26252Creator = new(ActionFactory.Create26252);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26252\"><strong>Fight or Flight</strong></see> <i>PvE</i> (All Classes) [26252] [Ability]\r\n /// <para>Increases physical damage dealt by 25%.</para>\n /// <para>Duration: 25s</para>\r\n /// </summary>\r\n public IBaseAction FightOrFlight_PvE_26252 => _FightOrFlight_PvE_26252Creator.Value;\n private readonly Lazy<IBaseAction> _Rampart_PvECreator = new(ActionFactory.Create26253);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26253\"><strong>Rampart</strong></see> <i>PvE</i> (All Classes) [26253] [Ability]\r\n /// <para>Reduces damage taken by 10%.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Rampart_PvE => _Rampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _FiendishLantern_PvECreator = new(ActionFactory.Create26890);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26890\"><strong>Fiendish Lantern</strong></see> <i>PvE</i> (All Classes) [26890] [Special]\r\n /// <para>Emits a wavelength of light that voidsent absolutely detest.</para>\r\n /// </summary>\r\n public IBaseAction FiendishLantern_PvE => _FiendishLantern_PvECreator.Value;\n private readonly Lazy<IBaseAction> _HealingHolyWater_PvECreator = new(ActionFactory.Create26891);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26891\"><strong>Healing Holy Water</strong></see> <i>PvE</i> (All Classes) [26891] [Special]\r\n /// <para>Frees captured souls.</para>\r\n /// </summary>\r\n public IBaseAction HealingHolyWater_PvE => _HealingHolyWater_PvECreator.Value;\n private readonly Lazy<IBaseAction> _TheAetherCompass_PvECreator = new(ActionFactory.Create26988);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/26988\"><strong>the Aether Compass</strong></see> <i>PvE</i> (All Classes) [26988] [System]\r\n /// <para>Examine your aether compass to deduce the proximate location of nearby aether currents.</para>\r\n /// </summary>\r\n public IBaseAction TheAetherCompass_PvE => _TheAetherCompass_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDiagnosis_PvECreator = new(ActionFactory.Create27042);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27042\"><strong>Leveilleur Diagnosis</strong></see> <i>PvE</i> (All Classes) [27042] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 300</para>\n /// <para>Additional Effect: Erects a magicked barrier which nullifies damage equaling 125% of the amount of HP restored</para>\n /// <para>Duration: 30s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDiagnosis_PvE => _LeveilleurDiagnosis_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Prognosis_PvE_27043Creator = new(ActionFactory.Create27043);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27043\"><strong>Prognosis</strong></see> <i>PvE</i> (All Classes) [27043] [Spell]\r\n /// <para>Restores own HP and the HP of all nearby party members.</para>\n /// <para>Cure Potency: 300</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Prognosis_PvE_27043 => _Prognosis_PvE_27043Creator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDruochole_PvECreator = new(ActionFactory.Create27044);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27044\"><strong>Leveilleur Druochole</strong></see> <i>PvE</i> (All Classes) [27044] [Ability]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 600</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDruochole_PvE => _LeveilleurDruochole_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvE_27045Creator = new(ActionFactory.Create27045);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27045\"><strong>Dosis III</strong></see> <i>PvE</i> (All Classes) [27045] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 300.</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvE_27045 => _DosisIii_PvE_27045Creator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurToxikon_PvECreator = new(ActionFactory.Create27047);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27047\"><strong>Leveilleur Toxikon</strong></see> <i>PvE</i> (All Classes) [27047] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 260 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurToxikon_PvE => _LeveilleurToxikon_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verfire_PvE_27048Creator = new(ActionFactory.Create27048);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27048\"><strong>Verfire</strong></see> <i>PvE</i> (All Classes) [27048] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verfire_PvE_27048 => _Verfire_PvE_27048Creator.Value;\n private readonly Lazy<IBaseAction> _Veraero_PvE_27049Creator = new(ActionFactory.Create27049);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27049\"><strong>Veraero</strong></see> <i>PvE</i> (All Classes) [27049] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Veraero_PvE_27049 => _Veraero_PvE_27049Creator.Value;\n private readonly Lazy<IBaseAction> _Verstone_PvE_27050Creator = new(ActionFactory.Create27050);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27050\"><strong>Verstone</strong></see> <i>PvE</i> (All Classes) [27050] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verstone_PvE_27050 => _Verstone_PvE_27050Creator.Value;\n private readonly Lazy<IBaseAction> _Verthunder_PvECreator = new(ActionFactory.Create27051);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27051\"><strong>Verthunder</strong></see> <i>PvE</i> (All Classes) [27051] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verthunder_PvE => _Verthunder_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verflare_PvE_27052Creator = new(ActionFactory.Create27052);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27052\"><strong>Verflare</strong></see> <i>PvE</i> (All Classes) [27052] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verflare_PvE_27052 => _Verflare_PvE_27052Creator.Value;\n private readonly Lazy<IBaseAction> _CrimsonSavior_PvE_27053Creator = new(ActionFactory.Create27053);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27053\"><strong>Crimson Savior</strong></see> <i>PvE</i> (All Classes) [27053] [Weaponskill]\r\n /// <para>Deals unaspected damage with a potency of 200 to all nearby enemies.</para>\r\n /// </summary>\r\n public IBaseAction CrimsonSavior_PvE_27053 => _CrimsonSavior_PvE_27053Creator.Value;\n private readonly Lazy<IBaseAction> _Corpsacorps_PvE_27054Creator = new(ActionFactory.Create27054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27054\"><strong>Corps-a-corps</strong></see> <i>PvE</i> (All Classes) [27054] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Corpsacorps_PvE_27054 => _Corpsacorps_PvE_27054Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRiposte_PvE_27055Creator = new(ActionFactory.Create27055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27055\"><strong>Enchanted Riposte</strong></see> <i>PvE</i> (All Classes) [27055] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRiposte_PvE_27055 => _EnchantedRiposte_PvE_27055Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedZwerchhau_PvE_27056Creator = new(ActionFactory.Create27056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27056\"><strong>Enchanted Zwerchhau</strong></see> <i>PvE</i> (All Classes) [27056] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedZwerchhau_PvE_27056 => _EnchantedZwerchhau_PvE_27056Creator.Value;\n private readonly Lazy<IBaseAction> _EnchantedRedoublement_PvE_27057Creator = new(ActionFactory.Create27057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27057\"><strong>Enchanted Redoublement</strong></see> <i>PvE</i> (All Classes) [27057] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction EnchantedRedoublement_PvE_27057 => _EnchantedRedoublement_PvE_27057Creator.Value;\n private readonly Lazy<IBaseAction> _Engagement_PvECreator = new(ActionFactory.Create27058);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27058\"><strong>Engagement</strong></see> <i>PvE</i> (All Classes) [27058] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Engagement_PvE => _Engagement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Verholy_PvE_27059Creator = new(ActionFactory.Create27059);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27059\"><strong>Verholy</strong></see> <i>PvE</i> (All Classes) [27059] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Verholy_PvE_27059 => _Verholy_PvE_27059Creator.Value;\n private readonly Lazy<IBaseAction> _ContreSixte_PvE_27060Creator = new(ActionFactory.Create27060);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27060\"><strong>Contre Sixte</strong></see> <i>PvE</i> (All Classes) [27060] [Ability]\r\n /// <para>Delivers an attack with a potency of 400 to target and all enemies nearby it.</para>\r\n /// </summary>\r\n public IBaseAction ContreSixte_PvE_27060 => _ContreSixte_PvE_27060Creator.Value;\n private readonly Lazy<IBaseAction> _Vercure_PvE_27061Creator = new(ActionFactory.Create27061);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27061\"><strong>Vercure</strong></see> <i>PvE</i> (All Classes) [27061] [Spell]\r\n /// <para>Restores target's HP.</para>\n /// <para>Cure Potency: 350</para>\r\n /// </summary>\r\n public IBaseAction Vercure_PvE_27061 => _Vercure_PvE_27061Creator.Value;\n private readonly Lazy<IBaseAction> _VermilionPledge_PvECreator = new(ActionFactory.Create27062);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27062\"><strong>Vermilion Pledge</strong></see> <i>PvE</i> (All Classes) [27062] [Weaponskill]\r\n /// <para>Deals unaspected damage to all enemies in a straight line before you.</para>\r\n /// </summary>\r\n public IBaseAction VermilionPledge_PvE => _VermilionPledge_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_27315Creator = new(ActionFactory.Create27315);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27315\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [27315] [Ability]\r\n /// <para>Restores 35% of maximum HP.</para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_27315 => _MedicalKit_PvE_27315Creator.Value;\n private readonly Lazy<IBaseAction> _KeenEdge_PvE_27427Creator = new(ActionFactory.Create27427);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27427\"><strong>Keen Edge</strong></see> <i>PvE</i> (All Classes) [27427] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction KeenEdge_PvE_27427 => _KeenEdge_PvE_27427Creator.Value;\n private readonly Lazy<IBaseAction> _BrutalShell_PvE_27428Creator = new(ActionFactory.Create27428);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27428\"><strong>Brutal Shell</strong></see> <i>PvE</i> (All Classes) [27428] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction BrutalShell_PvE_27428 => _BrutalShell_PvE_27428Creator.Value;\n private readonly Lazy<IBaseAction> _SolidBarrel_PvE_27429Creator = new(ActionFactory.Create27429);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27429\"><strong>Solid Barrel</strong></see> <i>PvE</i> (All Classes) [27429] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SolidBarrel_PvE_27429 => _SolidBarrel_PvE_27429Creator.Value;\n private readonly Lazy<IBaseAction> _Nebula_PvE_27430Creator = new(ActionFactory.Create27430);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27430\"><strong>Nebula</strong></see> <i>PvE</i> (All Classes) [27430] [Ability]\r\n /// <para>Reduces damage taken by 30%.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction Nebula_PvE_27430 => _Nebula_PvE_27430Creator.Value;\n private readonly Lazy<IBaseAction> _SwiftDeception_PvECreator = new(ActionFactory.Create27432);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27432\"><strong>Swift Deception</strong></see> <i>PvE</i> (All Classes) [27432] [Ability]\r\n /// <para>Masks your presence, making it impossible for most enemies to detect you, and increases movement speed. Cannot be cast while in combat.</para>\n /// <para>Duration: 10s</para>\r\n /// </summary>\r\n public IBaseAction SwiftDeception_PvE => _SwiftDeception_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SilentTakedown_PvECreator = new(ActionFactory.Create27433);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27433\"><strong>Silent Takedown</strong></see> <i>PvE</i> (All Classes) [27433] [Ability]\r\n /// <para>While hidden, delivers an attack that neutralizes imperial soldiers. When the target is magitek weaponry or a guard dog, delivers an attack with a potency of 100.</para>\n /// <para>Can only be executed while under the effect of Swift Deception.</para>\r\n /// </summary>\r\n public IBaseAction SilentTakedown_PvE => _SilentTakedown_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BewildermentBomb_PvECreator = new(ActionFactory.Create27434);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27434\"><strong>Bewilderment Bomb</strong></see> <i>PvE</i> (All Classes) [27434] [Ability]\r\n /// <para>Throws a bomb that confuses the senses of guard dogs, neutralizing them. Has no effect on imperial soldiers or magitek weaponry.</para>\r\n /// </summary>\r\n public IBaseAction BewildermentBomb_PvE => _BewildermentBomb_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Pneuma_PvE_27524Creator = new(ActionFactory.Create27524);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/27524\"><strong>Pneuma</strong></see> <i>PvE</i> (SGE) [27524] [Spell]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Pneuma_PvE_27524 => _Pneuma_PvE_27524Creator.Value;\n private readonly Lazy<IBaseAction> _Kardia_PvE_28119Creator = new(ActionFactory.Create28119);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28119\"><strong>Kardia</strong></see> <i>PvE</i> (SGE) [28119] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Kardia_PvE_28119 => _Kardia_PvE_28119Creator.Value;\n private readonly Lazy<IBaseAction> _FamilyOuting_PvECreator = new(ActionFactory.Create28302);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28302\"><strong>Family Outing</strong></see> <i>PvE</i> (All Classes) [28302] [Mount]\r\n /// <para>Temporarily summons your paissa's eight brats (and counting).</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction FamilyOuting_PvE => _FamilyOuting_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LeveilleurDosisIii_PvECreator = new(ActionFactory.Create28439);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/28439\"><strong>Leveilleur Dosis III</strong></see> <i>PvE</i> (All Classes) [28439] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 70</para>\n /// <para>Duration: 30s</para>\r\n /// </summary>\r\n public IBaseAction LeveilleurDosisIii_PvE => _LeveilleurDosisIii_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvPCreator = new(ActionFactory.Create29054);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29054\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29054] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP => _Guard_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _StandardissueElixir_PvPCreator = new(ActionFactory.Create29055);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29055\"><strong>Standard-issue Elixir</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29055] [Ability]\r\n /// <para>Restores your HP and MP to maximum.</para>\n /// <para>Casting will be interrupted when damage is taken.</para>\r\n /// </summary>\r\n public IBaseAction StandardissueElixir_PvP => _StandardissueElixir_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Purify_PvPCreator = new(ActionFactory.Create29056);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29056\"><strong>Purify</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29056] [Ability]\r\n /// <para>Removes Stun, Heavy, Bind, Silence, Half-asleep, Sleep, and Deep Freeze.</para>\n /// <para>Additional Effect: Grants Resilience</para>\n /// <para>Resilience Effect: Nullifies status afflictions that can be removed by Purify</para>\n /// <para>Duration: 5s</para>\n /// <para>Can be used even when under the effect of certain status afflictions.</para>\r\n /// </summary>\r\n public IBaseAction Purify_PvP => _Purify_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Sprint_PvPCreator = new(ActionFactory.Create29057);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29057\"><strong>Sprint</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29057] [Ability]\r\n /// <para>Increases movement speed by 50%.</para>\n /// <para>Effect ends upon reuse or execution of another action.</para>\r\n /// </summary>\r\n public IBaseAction Sprint_PvP => _Sprint_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Seize_PvE_29155Creator = new(ActionFactory.Create29155);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29155\"><strong>Seize</strong></see> <i>PvE</i> (All Classes) [29155] [Special]\r\n /// <para>Snare a happy bunny in your net with a single swift motion.</para>\r\n /// </summary>\r\n public IBaseAction Seize_PvE_29155 => _Seize_PvE_29155Creator.Value;\n private readonly Lazy<IBaseAction> _DosisIii_PvPCreator = new(ActionFactory.Create29256);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29256\"><strong>Dosis III</strong></see> <i>PvP</i> (SGE) [29256] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 4,000.</para>\n /// <para>Additional Effect: Restores HP to targets under the effect of Kardion granted by you</para>\n /// <para>Cure Potency: 2,000</para>\r\n /// </summary>\r\n public IBaseAction DosisIii_PvP => _DosisIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _EukrasianDosisIii_PvPCreator = new(ActionFactory.Create29257);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29257\"><strong>Eukrasian Dosis III</strong></see> <i>PvP</i> (SGE) [29257] [Spell]\r\n /// <para>Deals unaspected damage over time.</para>\n /// <para>Potency: 4,000</para>\n /// <para>Duration: 15s</para>\n /// <para>Additional Effect: Grants Eukrasian Diagnosis to targets under the effect of Kardion granted by you</para>\n /// <para>Eukrasian Diagnosis Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 8,000 potency</para>\n /// <para>Duration: 15s</para>\n /// <para>Grants Addersting when barrier is completely absorbed.</para>\n /// <para>Duration: 10s</para>\n /// <para></para>\n /// <para>※Toxikon changes to Toxikon II while under the effect of Addersting.</para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction EukrasianDosisIii_PvP => _EukrasianDosisIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Eukrasia_PvPCreator = new(ActionFactory.Create29258);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29258\"><strong>Eukrasia</strong></see> <i>PvP</i> (SGE) [29258] [Spell]\r\n /// <para>Upgrades Dosis III to Eukrasian Dosis III.</para>\n /// <para>Duration: 10s</para>\n /// <para>Effect expires upon executing Eukrasian Dosis III.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Eukrasia_PvP => _Eukrasia_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _PhlegmaIii_PvPCreator = new(ActionFactory.Create29259);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29259\"><strong>Phlegma III</strong></see> <i>PvP</i> (SGE) [29259] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 10,000 to target and all enemies nearby it.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction PhlegmaIii_PvP => _PhlegmaIii_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Pneuma_PvPCreator = new(ActionFactory.Create29260);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29260\"><strong>Pneuma</strong></see> <i>PvP</i> (SGE) [29260] [Spell]\r\n /// <para>Deals unaspected damage with a potency of 12,000 to all enemies in a straight line before you.</para>\n /// <para>Additional Effect: Grants Haima and 4 stacks of Haimatinon to self and all party members within 20 yalms</para>\n /// <para>Haima Effect: Erects a magicked barrier which nullifies damage equivalent to a heal of 3,000 potency</para>\n /// <para>Duration: 10s</para>\n /// <para>When the barrier is completely absorbed, a stack of Haimatinon is consumed and a new barrier is applied.</para>\n /// <para>When the effect duration expires, a healing effect is then applied.</para>\n /// <para>Cure Potency: 3,000 per remaining stack of Haimatinon</para>\n /// <para>This action does not share a recast timer with any other actions.</para>\r\n /// </summary>\r\n public IBaseAction Pneuma_PvP => _Pneuma_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Icarus_PvPCreator = new(ActionFactory.Create29261);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29261\"><strong>Icarus</strong></see> <i>PvP</i> (SGE) [29261] [Ability]\r\n /// <para>Rush to a targeted enemy's or party member's location.</para>\n /// <para>Maximum Charges: 2</para>\n /// <para>Unable to cast if bound.</para>\r\n /// </summary>\r\n public IBaseAction Icarus_PvP => _Icarus_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Toxikon_PvPCreator = new(ActionFactory.Create29262);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29262\"><strong>Toxikon</strong></see> <i>PvP</i> (SGE) [29262] [Ability]\r\n /// <para>Deals unaspected damage with a potency of 2,000 to target and all enemies nearby it.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 6s</para>\n /// <para>Maximum Charges: 2</para>\n /// <para></para>\n /// <para>※Action changes to Toxikon II while under the effect of Addersting.</para>\r\n /// </summary>\r\n public IBaseAction Toxikon_PvP => _Toxikon_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ToxikonIi_PvPCreator = new(ActionFactory.Create29263);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29263\"><strong>Toxikon II</strong></see> <i>PvP</i> (SGE) [29263] [Ability]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 8,000 for the first enemy, and 2,000 for all remaining enemies.</para>\n /// <para>Additional Effect: Increases target's damage taken by 10%</para>\n /// <para>Duration: 6s</para>\n /// <para>Can only be executed while under the effect of Addersting.</para>\n /// <para></para>\n /// <para>※This action cannot be assigned to a hotbar.</para>\r\n /// </summary>\r\n public IBaseAction ToxikonIi_PvP => _ToxikonIi_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Kardia_PvPCreator = new(ActionFactory.Create29264);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29264\"><strong>Kardia</strong></see> <i>PvP</i> (SGE) [29264] [Ability]\r\n /// <para>Grants self the effect of Kardia and a selected party member or self the effect of Kardion, granting the additional effects of Dosis III and Eukrasian Dosis III when these spells are cast.</para>\r\n /// </summary>\r\n public IBaseAction Kardia_PvP => _Kardia_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mesotes_PvPCreator = new(ActionFactory.Create29266);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29266\"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29266] [Limit Break]\r\n /// <para>Erects a magicked barrier at a select location, granting party members the effect of Mesotes and afflicting enemies with the effect of Lype when standing inside.</para>\n /// <para>Duration: 15s</para>\n /// <para>Mesotes Effect: Negates all damage from enemies who are not under the effect of Lype</para>\n /// <para>Duration: 5s</para>\n /// <para>Lype Effect: Damage over time</para>\n /// <para>Potency: 8,000</para>\n /// <para>Duration: 5s</para>\n /// <para>The barrier can be relocated once before its effect expires, but the effect duration will not be reset.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 120s</para>\r\n /// </summary>\r\n public IBaseAction Mesotes_PvP => _Mesotes_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _Mesotes_PvP_29267Creator = new(ActionFactory.Create29267);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29267\"><strong>Mesotes</strong></see> <i>PvP</i> (SGE) [29267] [Limit Break]\r\n /// <para>Erects a magicked barrier at a select location, granting party members the effect of Mesotes and afflicting enemies with the effect of Lype when standing inside.</para>\n /// <para>Duration: 15s</para>\n /// <para>Mesotes Effect: Negates all damage from enemies who are not under the effect of Lype</para>\n /// <para>Duration: 5s</para>\n /// <para>Lype Effect: Damage over time</para>\n /// <para>Potency: 8,000</para>\n /// <para>Duration: 5s</para>\n /// <para>The barrier can be relocated once before its effect expires, but the effect duration will not be reset.</para>\n /// <para>Can only be executed when the limit gauge is full.</para>\n /// <para>Gauge Charge Time: 120s</para>\r\n /// </summary>\r\n public IBaseAction Mesotes_PvP_29267 => _Mesotes_PvP_29267Creator.Value;\n private readonly Lazy<IBaseAction> _MedicalKit_PvE_29363Creator = new(ActionFactory.Create29363);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29363\"><strong>Medical Kit</strong></see> <i>PvE</i> (All Classes) [29363] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MedicalKit_PvE_29363 => _MedicalKit_PvE_29363Creator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvECreator = new(ActionFactory.Create29382);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29382\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29382] [Event]\r\n /// <para>Throw a handful of red gulal.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE => _RedGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvECreator = new(ActionFactory.Create29383);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29383\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29383] [Event]\r\n /// <para>Throw a handful of yellow gulal.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE => _YellowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvECreator = new(ActionFactory.Create29384);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29384\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29384] [Event]\r\n /// <para>Throw a handful of blue gulal.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE => _BlueGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RedGulal_PvE_29385Creator = new(ActionFactory.Create29385);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29385\"><strong>Red Gulal</strong></see> <i>PvE</i> (All Classes) [29385] [Mount]\r\n /// <para>Invoke a prayer for health by flinging a hearty handful of vibrant red powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RedGulal_PvE_29385 => _RedGulal_PvE_29385Creator.Value;\n private readonly Lazy<IBaseAction> _YellowGulal_PvE_29386Creator = new(ActionFactory.Create29386);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29386\"><strong>Yellow Gulal</strong></see> <i>PvE</i> (All Classes) [29386] [Mount]\r\n /// <para>Invoke a prayer for plenty by lobbing a generous fistful of joyous yellow powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction YellowGulal_PvE_29386 => _YellowGulal_PvE_29386Creator.Value;\n private readonly Lazy<IBaseAction> _BlueGulal_PvE_29387Creator = new(ActionFactory.Create29387);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29387\"><strong>Blue Gulal</strong></see> <i>PvE</i> (All Classes) [29387] [Mount]\r\n /// <para>Invoke a prayer for tranquility by sweeping forth an open palm of serene blue powder.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction BlueGulal_PvE_29387 => _BlueGulal_PvE_29387Creator.Value;\n private readonly Lazy<IBaseAction> _RainbowGulal_PvECreator = new(ActionFactory.Create29388);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29388\"><strong>Rainbow Gulal</strong></see> <i>PvE</i> (All Classes) [29388] [Mount]\r\n /// <para>Channel the enlightened spirit of a hurtling hippo by unleashing a dazzling display of multicolored brilliance.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainbowGulal_PvE => _RainbowGulal_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bark_PvECreator = new(ActionFactory.Create29463);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29463\"><strong>Bark</strong></see> <i>PvE</i> (All Classes) [29463] [Mount]\r\n /// <para>Permits your megashiba to bark to its heart's content.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Bark_PvE => _Bark_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Wag_PvECreator = new(ActionFactory.Create29464);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29464\"><strong>Wag</strong></see> <i>PvE</i> (All Classes) [29464] [Mount]\r\n /// <para>Inspires a joyful display of tail-waggery.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Wag_PvE => _Wag_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Whimper_PvECreator = new(ActionFactory.Create29465);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29465\"><strong>Whimper</strong></see> <i>PvE</i> (All Classes) [29465] [Mount]\r\n /// <para>Inspires the sort of sulking to which man can only aspire.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Whimper_PvE => _Whimper_PvECreator.Value;\n private readonly Lazy<IBaseAction> _IsleReturn_PvECreator = new(ActionFactory.Create29573);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29573\"><strong>Isle Return</strong></see> <i>PvE</i> (All Classes) [29573] [System]\r\n /// <para>Instantly return to this sanctuary's cozy cabin.</para>\r\n /// </summary>\r\n public IBaseAction IsleReturn_PvE => _IsleReturn_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Recuperate_PvPCreator = new(ActionFactory.Create29711);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29711\"><strong>Recuperate</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29711] [Ability]\r\n /// <para>Restores own HP.</para>\n /// <para>Cure Potency: 15,000</para>\r\n /// </summary>\r\n public IBaseAction Recuperate_PvP => _Recuperate_PvPCreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvECreator = new(ActionFactory.Create29718);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29718\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29718] [Event]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE => _ElectricFlux_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ElectricFlux_PvE_29719Creator = new(ActionFactory.Create29719);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29719\"><strong>Electric Flux</strong></see> <i>PvE</i> (All Classes) [29719] [Mount]\r\n /// <para>Unleashes an energetic blast of lightning.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction ElectricFlux_PvE_29719 => _ElectricFlux_PvE_29719Creator.Value;\n private readonly Lazy<IBaseAction> _PresentMirage_PvECreator = new(ActionFactory.Create29720);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29720\"><strong>Present Mirage</strong></see> <i>PvE</i> (All Classes) [29720] [Mount]\r\n /// <para>Weave a miraculous illusion of seasonal whimsy.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction PresentMirage_PvE => _PresentMirage_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantUltimatum_PvECreator = new(ActionFactory.Create29730);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29730\"><strong>Variant Ultimatum</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29730] [Ability]\r\n /// <para>Provoke nearby enemies, placing yourself at the top of their enmity list while gaining additional enmity.</para>\n /// <para>Additional Effect: Stun</para>\n /// <para>Duration: 4s</para>\n /// <para>Additional Effect: Significantly increases enmity generation</para>\n /// <para>Duration: 60s</para>\r\n /// </summary>\r\n public IBaseAction VariantUltimatum_PvE => _VariantUltimatum_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvECreator = new(ActionFactory.Create29732);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29732\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [29732] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,040</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE => _VariantSpiritDart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvECreator = new(ActionFactory.Create29733);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29733\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [29733] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 21,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE => _VariantRampart_PvECreator.Value;\n private readonly Lazy<IBaseAction> _VariantRaiseIi_PvECreator = new(ActionFactory.Create29734);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29734\"><strong>Variant Raise II</strong></see> <i>PvE</i> (Any Disciple of War or Magic (excluding limited jobs)) [29734] [Spell]\r\n /// <para>Resurrects target to a weakened state. Resurrection restrictions do not apply.</para>\r\n /// </summary>\r\n public IBaseAction VariantRaiseIi_PvE => _VariantRaiseIi_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Guard_PvP_29735Creator = new(ActionFactory.Create29735);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/29735\"><strong>Guard</strong></see> <i>PvP</i> (Jobs of the Disciples of War or Magic) [29735] [Ability]\r\n /// <para>Reduces damage taken by 90% and grants immunity to Stun, Heavy, Bind, Silence, Half-asleep, Sleep, Deep Freeze, and knockback and draw-in effects.</para>\n /// <para>Duration: 5s</para>\n /// <para>Movement speed is reduced by 50% for the duration of this effect.</para>\n /// <para>Effect ends upon reuse, using another action, or when the effect duration expires.</para>\r\n /// </summary>\r\n public IBaseAction Guard_PvP_29735 => _Guard_PvP_29735Creator.Value;\n private readonly Lazy<IBaseAction> _UmbrellaDance_PvECreator = new(ActionFactory.Create30868);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30868\"><strong>Umbrella Dance</strong></see> <i>PvE</i> (All Classes) [30868] []\r\n /// <para>Dance to and fro with your umbrella, ella, ella.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction UmbrellaDance_PvE => _UmbrellaDance_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RainCheck_PvECreator = new(ActionFactory.Create30869);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/30869\"><strong>Rain Check</strong></see> <i>PvE</i> (All Classes) [30869] []\r\n /// <para>Put out your hand and check for rain.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction RainCheck_PvE => _RainCheck_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvECreator = new(ActionFactory.Create31116);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31116\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31116] [Event]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE => _Hopstep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Hopstep_PvE_31117Creator = new(ActionFactory.Create31117);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31117\"><strong>Hop-step</strong></see> <i>PvE</i> (All Classes) [31117] [Mount]\r\n /// <para>Emits a cheerful beat to inspire happy hopping.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction Hopstep_PvE_31117 => _Hopstep_PvE_31117Creator.Value;\n private readonly Lazy<IBaseAction> _IsleSprint_PvECreator = new(ActionFactory.Create31314);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31314\"><strong>Isle Sprint</strong></see> <i>PvE</i> (All Classes) [31314] [System]\r\n /// <para>Movement speed is increased.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction IsleSprint_PvE => _IsleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlySmash_PvECreator = new(ActionFactory.Create31393);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31393\"><strong>Gentlemanly Smash</strong></see> <i>PvE</i> (All Classes) [31393] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlySmash_PvE => _GentlemanlySmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _GentlemanlyThrust_PvECreator = new(ActionFactory.Create31394);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31394\"><strong>Gentlemanly Thrust</strong></see> <i>PvE</i> (All Classes) [31394] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction GentlemanlyThrust_PvE => _GentlemanlyThrust_PvECreator.Value;\n private readonly Lazy<IBaseAction> _RageOfTheGentleman_PvECreator = new(ActionFactory.Create31395);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31395\"><strong>Rage of the Gentleman</strong></see> <i>PvE</i> (All Classes) [31395] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction RageOfTheGentleman_PvE => _RageOfTheGentleman_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ManderdoubleLariat_PvECreator = new(ActionFactory.Create31396);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31396\"><strong>Manderdouble Lariat</strong></see> <i>PvE</i> (All Classes) [31396] [Ability]\r\n /// <para>Delivers a gentlemanly attack with a potency of 1,600 to all nearby enemies.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction ManderdoubleLariat_PvE => _ManderdoubleLariat_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleDropkick_PvECreator = new(ActionFactory.Create31397);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31397\"><strong>Manderville Dropkick</strong></see> <i>PvE</i> (All Classes) [31397] [Ability]\r\n /// <para>Leap towards your target, delivering a gentlemanly attack with a potency of 900 to all enemies in your path.</para>\n /// <para>Can only be executed while under the effect of Gloves Off. Effect fades upon execution.</para>\r\n /// </summary>\r\n public IBaseAction MandervilleDropkick_PvE => _MandervilleDropkick_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleSprint_PvECreator = new(ActionFactory.Create31398);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31398\"><strong>Manderville Sprint</strong></see> <i>PvE</i> (All Classes) [31398] [Ability]\r\n /// <para>Movement speed is increased in a gentlemanly fashion.</para>\n /// <para>Duration: 15s</para>\r\n /// </summary>\r\n public IBaseAction MandervilleSprint_PvE => _MandervilleSprint_PvECreator.Value;\n private readonly Lazy<IBaseAction> _LimitBreak_PvECreator = new(ActionFactory.Create31399);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31399\"><strong>Limit Break</strong></see> <i>PvE</i> (All Classes) [31399] [Weaponskill]\r\n /// <para>Execute a powerful gentlemanly technique upon your target.</para>\r\n /// </summary>\r\n public IBaseAction LimitBreak_PvE => _LimitBreak_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Frighten_PvECreator = new(ActionFactory.Create31472);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31472\"><strong>Frighten</strong></see> <i>PvE</i> (All Classes) [31472] [Special]\r\n /// <para>Emerge from the shadows, feigning great rancor.</para>\r\n /// </summary>\r\n public IBaseAction Frighten_PvE => _Frighten_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Engravement_PvECreator = new(ActionFactory.Create31785);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31785\"><strong>Engravement</strong></see> <i>PvE</i> (All Classes) [31785] [Ability]\r\n /// <para>Delivers a jumping attack with a potency of 150.</para>\r\n /// </summary>\r\n public IBaseAction Engravement_PvE => _Engravement_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Slice_PvECreator = new(ActionFactory.Create31786);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31786\"><strong>Slice</strong></see> <i>PvE</i> (All Classes) [31786] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction Slice_PvE => _Slice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WaxingSlice_PvECreator = new(ActionFactory.Create31787);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31787\"><strong>Waxing Slice</strong></see> <i>PvE</i> (All Classes) [31787] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction WaxingSlice_PvE => _WaxingSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _InfernalSlice_PvECreator = new(ActionFactory.Create31788);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31788\"><strong>Infernal Slice</strong></see> <i>PvE</i> (All Classes) [31788] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction InfernalSlice_PvE => _InfernalSlice_PvECreator.Value;\n private readonly Lazy<IBaseAction> _SpinningScythe_PvECreator = new(ActionFactory.Create31789);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31789\"><strong>Spinning Scythe</strong></see> <i>PvE</i> (All Classes) [31789] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction SpinningScythe_PvE => _SpinningScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _NightmareScythe_PvECreator = new(ActionFactory.Create31790);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31790\"><strong>Nightmare Scythe</strong></see> <i>PvE</i> (All Classes) [31790] [Weaponskill]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction NightmareScythe_PvE => _NightmareScythe_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MarkOfTheHarvest_PvECreator = new(ActionFactory.Create31792);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31792\"><strong>Mark of the Harvest</strong></see> <i>PvE</i> (All Classes) [31792] [Weaponskill]\r\n /// <para>Delivers an attack with a potency of 100 to all nearby enemies.</para>\n /// <para>Additional Effect: Afflicts target with Mark of the Harvest, increasing damage you deal target by 10%</para>\n /// <para>Duration: 30s</para>\n /// <para>For targets already afflicted, extends Mark of the Harvest duration by 30s to a maximum of 60s.</para>\r\n /// </summary>\r\n public IBaseAction MarkOfTheHarvest_PvE => _MarkOfTheHarvest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _ArcaneCrest_PvECreator = new(ActionFactory.Create31793);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31793\"><strong>Arcane Crest</strong></see> <i>PvE</i> (All Classes) [31793] [Ability]\r\n /// <para>Grants Crest of Time Borrowed to self, creating a barrier that absorbs damage equivalent to 10% of your maximum HP.</para>\n /// <para>Duration: 5s</para>\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction ArcaneCrest_PvE => _ArcaneCrest_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Communio_PvECreator = new(ActionFactory.Create31794);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31794\"><strong>Communio</strong></see> <i>PvE</i> (All Classes) [31794] [Spell]\r\n /// <para>Deals unaspected damage to target and all enemies nearby it with a potency of 1,100 for the first enemy, and 60% less for all remaining enemies.</para>\r\n /// </summary>\r\n public IBaseAction Communio_PvE => _Communio_PvECreator.Value;\n private readonly Lazy<IBaseAction> _MandervilleStep_PvECreator = new(ActionFactory.Create31929);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/31929\"><strong>Manderville Step</strong></see> <i>PvE</i> (All Classes) [31929] [Ability]\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction MandervilleStep_PvE => _MandervilleStep_PvECreator.Value;\n private readonly Lazy<IBaseAction> _DemicloneGenerator_PvECreator = new(ActionFactory.Create32542);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32542\"><strong>Demiclone Generator</strong></see> <i>PvE</i> (All Classes) [32542] []\r\n /// <para></para>\r\n /// </summary>\r\n public IBaseAction DemicloneGenerator_PvE => _DemicloneGenerator_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Rotosmash_PvECreator = new(ActionFactory.Create32781);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32781\"><strong>Rotosmash</strong></see> <i>PvE</i> (All Classes) [32781] [Special]\r\n /// <para>Deals damage to target.</para>\r\n /// </summary>\r\n public IBaseAction Rotosmash_PvE => _Rotosmash_PvECreator.Value;\n private readonly Lazy<IBaseAction> _WreckingBall_PvECreator = new(ActionFactory.Create32782);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/32782\"><strong>Wrecking Ball</strong></see> <i>PvE</i> (All Classes) [32782] [Special]\r\n /// <para>Deals damage to nearby enemies while increasing damage taken.</para>\r\n /// </summary>\r\n public IBaseAction WreckingBall_PvE => _WreckingBall_PvECreator.Value;\n private readonly Lazy<IBaseAction> _Bloodbath_PvECreator = new(ActionFactory.Create33013);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33013\"><strong>Bloodbath</strong></see> <i>PvE</i> (All Classes) [33013] [Ability]\r\n /// <para>Converts a portion of physical damage dealt into HP.</para>\n /// <para>Duration: 20s</para>\r\n /// </summary>\r\n public IBaseAction Bloodbath_PvE => _Bloodbath_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvECreator = new(ActionFactory.Create33268);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33268\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33268] [Event]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE => _EggSurprise_PvECreator.Value;\n private readonly Lazy<IBaseAction> _EggSurprise_PvE_33269Creator = new(ActionFactory.Create33269);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33269\"><strong>Egg Surprise</strong></see> <i>PvE</i> (All Classes) [33269] [Mount]\r\n /// <para>Dazzles ladies, seneschals, and fellow goobbues alike with egg-related arts.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction EggSurprise_PvE_33269 => _EggSurprise_PvE_33269Creator.Value;\n private readonly Lazy<IBaseAction> _VariantSpiritDart_PvE_33863Creator = new(ActionFactory.Create33863);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33863\"><strong>Variant Spirit Dart</strong></see> <i>PvE</i> (GLA MRD CNJ PLD WAR WHM SCH DRK AST GNB SGE) [33863] [Ability]\r\n /// <para>Deals damage over time to target and all enemies nearby it.</para>\n /// <para>Potency: 2,460</para>\n /// <para>Duration: 30s</para>\n /// <para>This action is not affected by attributes or enhancing effects.</para>\r\n /// </summary>\r\n public IBaseAction VariantSpiritDart_PvE_33863 => _VariantSpiritDart_PvE_33863Creator.Value;\n private readonly Lazy<IBaseAction> _VariantRampart_PvE_33864Creator = new(ActionFactory.Create33864);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/33864\"><strong>Variant Rampart</strong></see> <i>PvE</i> (PGL LNC ARC ROG CNJ THM ACN MNK DRG BRD WHM BLM SMN SCH NIN MCH AST SAM RDM DNC RPR SGE) [33864] [Ability]\r\n /// <para>Reduces damage taken by 20%.</para>\n /// <para>Duration: 60s</para>\n /// <para>Additional Effect: Creates a barrier around self that absorbs damage equivalent to a heal of 25,000 potency</para>\n /// <para>Duration: 8s</para>\r\n /// </summary>\r\n public IBaseAction VariantRampart_PvE_33864 => _VariantRampart_PvE_33864Creator.Value;\n private readonly Lazy<IBaseAction> _AFlameReborn_PvECreator = new(ActionFactory.Create34738);\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/34738\"><strong>A Flame Reborn</strong></see> <i>PvE</i> (All Classes) [34738] [Mount]\r\n /// <para>Summons celebratory flames in honor of a realm that rose from the ashes.</para>\n /// <para>※Has no effect in battle.</para>\r\n /// </summary>\r\n public IBaseAction AFlameReborn_PvE => _AFlameReborn_PvECreator.Value;\r\n#endregion\r\n\r\n#region Traits\r\n private readonly Lazy<IBaseTrait> _MaimAndMendTraitCreator = new(() => new BaseTrait(368));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50368\"><strong>Maim and Mend</strong></see> (SGE) [368]\r\n /// <para>Increases base action damage and HP restoration by 10%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendTrait => _MaimAndMendTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _MaimAndMendIiTraitCreator = new(() => new BaseTrait(369));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50369\"><strong>Maim and Mend II</strong></see> (SGE) [369]\r\n /// <para>Increases base action damage and HP restoration by 30%.</para>\r\n /// </summary>\r\n public IBaseTrait MaimAndMendIiTrait => _MaimAndMendIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AddersgallTraitCreator = new(() => new BaseTrait(370));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50370\"><strong>Addersgall</strong></see> (SGE) [370]\r\n /// <para>Grants 1 stack of Addersgall automatically every twenty seconds.</para>\n /// <para>Maximum Stacks: 3</para>\n /// <para>Can be charged outside of combat.</para>\r\n /// </summary>\r\n public IBaseTrait AddersgallTrait => _AddersgallTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SomanouticOathTraitCreator = new(() => new BaseTrait(371));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50371\"><strong>Somanoutic Oath</strong></see> (SGE) [371]\r\n /// <para>Increases the potency of Dosis to 250, Phlegma to 330, and Eukrasian Dosis to 35.</para>\r\n /// </summary>\r\n public IBaseTrait SomanouticOathTrait => _SomanouticOathTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _SomanouticOathIiTraitCreator = new(() => new BaseTrait(372));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50372\"><strong>Somanoutic Oath II</strong></see> (SGE) [372]\r\n /// <para>Increases the potency of Dosis to 300, Phlegma to 400, and Eukrasian Dosis to 40.</para>\r\n /// </summary>\r\n public IBaseTrait SomanouticOathIiTrait => _SomanouticOathIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _AdderstingTraitCreator = new(() => new BaseTrait(373));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50373\"><strong>Addersting</strong></see> (SGE) [373]\r\n /// <para>Grants 1 stack of Addersting when the barrier granted by Eukrasian Diagnosis to any party member or the barrier granted by Eukrasian Prognosis to self is completely absorbed.</para>\n /// <para>Maximum Stacks: 3</para>\r\n /// </summary>\r\n public IBaseTrait AdderstingTrait => _AdderstingTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _OffensiveMagicMasteryTraitCreator = new(() => new BaseTrait(374));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50374\"><strong>Offensive Magic Mastery</strong></see> (SGE) [374]\r\n /// <para>Upgrades Dosis to Dosis II, Phlegma to Phlegma II, and Eukrasian Dosis to Eukrasian Dosis II. Also increases the potency of Toxikon to 300.</para>\r\n /// </summary>\r\n public IBaseTrait OffensiveMagicMasteryTrait => _OffensiveMagicMasteryTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedKeracholeTraitCreator = new(() => new BaseTrait(375));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50375\"><strong>Enhanced Kerachole</strong></see> (SGE) [375]\r\n /// <para>Adds an additional effect to Kerachole that grants healing over time.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedKeracholeTrait => _EnhancedKeracholeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _OffensiveMagicMasteryIiTraitCreator = new(() => new BaseTrait(376));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50376\"><strong>Offensive Magic Mastery II</strong></see> (SGE) [376]\r\n /// <para>Upgrades Dosis II to Dosis III, Phlegma II to Phlegma III, Eukrasian Dosis II to Eukrasian Dosis III, Dyskrasia to Dyskrasia II, and Toxikon to Toxikon II.</para>\r\n /// </summary>\r\n public IBaseTrait OffensiveMagicMasteryIiTrait => _OffensiveMagicMasteryIiTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedHealingMagicTraitCreator = new(() => new BaseTrait(377));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50377\"><strong>Enhanced Healing Magic</strong></see> (SGE) [377]\r\n /// <para>Increases the healing potency of Diagnosis to 450 and Kardia to 170. Also increases the strength of barriers granted by Eukrasian Diagnosis to 180% the amount of HP restored, and Eukrasian Prognosis to 320% the amount of HP restored.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedHealingMagicTrait => _EnhancedHealingMagicTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _EnhancedZoeTraitCreator = new(() => new BaseTrait(378));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50378\"><strong>Enhanced Zoe</strong></see> (SGE) [378]\r\n /// <para>Reduces Zoe recast time to 90 seconds.</para>\r\n /// </summary>\r\n public IBaseTrait EnhancedZoeTrait => _EnhancedZoeTraitCreator.Value;\n private readonly Lazy<IBaseTrait> _PhysisMasteryTraitCreator = new(() => new BaseTrait(510));\r\n /// <summary>\r\n /// <see href=\"https://garlandtools.org/db/#action/50510\"><strong>Physis Mastery</strong></see> (SGE) [510]\r\n /// <para>Upgrades Physis to Physis II.</para>\r\n /// </summary>\r\n public IBaseTrait PhysisMasteryTrait => _PhysisMasteryTraitCreator.Value;\r\n#endregion\r\n}" +} + \ No newline at end of file diff --git a/RotationSolver.SourceGenerators/RotationSolver.SourceGenerators.csproj b/RotationSolver.SourceGenerators/RotationSolver.SourceGenerators.csproj index 4cfddd4e2..a773de625 100644 --- a/RotationSolver.SourceGenerators/RotationSolver.SourceGenerators.csproj +++ b/RotationSolver.SourceGenerators/RotationSolver.SourceGenerators.csproj @@ -7,6 +7,7 @@ + diff --git a/RotationSolver.SourceGenerators/StaticCodeGenerator.cs b/RotationSolver.SourceGenerators/StaticCodeGenerator.cs index a41aeb2a9..9cb75dced 100644 --- a/RotationSolver.SourceGenerators/StaticCodeGenerator.cs +++ b/RotationSolver.SourceGenerators/StaticCodeGenerator.cs @@ -1,5 +1,6 @@ using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; +using Newtonsoft.Json; using System.Collections.Immutable; namespace RotationSolver.SourceGenerators; @@ -15,15 +16,17 @@ public void Initialize(IncrementalGeneratorInitializationContext context) var compilation = context.CompilationProvider.Combine(provider.Collect()); - context.RegisterSourceOutput(compilation, (spc, source) => Execute(spc, source.Left, source.Right)); + context.RegisterSourceOutput(compilation, (spc, source) => Execute(spc)); } - private static void Execute(SourceProductionContext context, Compilation compilation, ImmutableArray typeList) + private static void Execute(SourceProductionContext context) { GenerateStatus(context); - GenerateAction(context); + GenerateActionID(context); GenerateContentType(context); GenerateActionCate(context); + GenerateActionFactory(context); + GenerateRotations(context); } private static void GenerateStatus(SourceProductionContext context) @@ -89,7 +92,7 @@ public enum ActionCate : byte context.AddSource("ActionCate.g.cs", code); } - private static void GenerateAction(SourceProductionContext context) + private static void GenerateActionID(SourceProductionContext context) { var code = $$""" namespace RotationSolver.Basic.Data; @@ -109,4 +112,26 @@ public enum ActionID : uint context.AddSource("ActionID.g.cs", code); } + + private static void GenerateActionFactory(SourceProductionContext context) + { + var code = $$""" + namespace RotationSolver.Basic.Actions; + + internal static partial class ActionFactory + { + {{Properties.Resources.Action.Table()}} + } + """; + + context.AddSource("ActionFactory.g.cs", code); + } + + private static void GenerateRotations(SourceProductionContext context) + { + foreach (var pair in JsonConvert.DeserializeObject>(Properties.Resources.Rotation)) + { + context.AddSource($"{pair.Key}.g.cs", pair.Value); + } + } }